Searched refs:is_function_v (Results 1 – 12 of 12) sorted by relevance
/llvm-project/libcxx/test/std/utilities/meta/meta.unary/meta.unary.cat/ |
H A D | is_function.pass.cpp | 30 static_assert( std::is_function_v<T>, ""); 31 static_assert( std::is_function_v<const T>, ""); 32 static_assert( std::is_function_v<volatile T>, ""); 33 static_assert( std::is_function_v<const volatile T>, ""); 44 static_assert(!std::is_function_v<T>, ""); 45 static_assert(!std::is_function_v<const T>, ""); 46 static_assert(!std::is_function_v<volatile T>, ""); 47 static_assert(!std::is_function_v<const volatile T>, "");
|
/llvm-project/clang/test/AST/ |
H A D | ast-dump-template-json-win32-mangler-crash.cpp | 44 _INLINE_VAR constexpr bool is_function_v = // only function types and reference types can't be cons… variable 48 struct is_function : bool_constant<is_function_v<_Ty>> {}; 57 static constexpr bool value = !is_function_v<_Ty1>;
|
/llvm-project/libc/src/__support/CPP/type_traits/ |
H A D | is_function.h | 30 LIBC_INLINE_VAR constexpr bool is_function_v = is_function<T>::value; 28 LIBC_INLINE_VAR constexpr bool is_function_v = is_function<T>::value; global() variable
|
H A D | decay.h | 32 cpp::conditional_t<cpp::is_function_v<U>, cpp::add_pointer_t<U>,
|
/llvm-project/libcxx/include/__type_traits/ |
H A D | is_function.h | 26 _LIBCPP_NO_SPECIALIZATIONS inline constexpr bool is_function_v = __is_function(_Tp); 38 inline constexpr bool is_function_v = is_function<_Tp>::value; global() variable
|
/llvm-project/libcxx/test/libcxx/algorithms/alg.modifying.operations/ |
H A D | copy_move_trivial.pass.cpp | 86 requires (std::is_pointer_v<T> && !std::is_function_v<std::remove_pointer_t<T>>)
|
/llvm-project/libcxx/modules/std/ |
H A D | type_traits.inc | 216 using std::is_function_v;
|
/llvm-project/libcxx/include/ |
H A D | type_traits | 273 template <class T> inline constexpr bool is_function_v
|
/llvm-project/libcxx/include/__expected/ |
H A D | expected.h | 450 static_assert(!is_reference_v<_Tp> && !is_function_v<_Tp> && !is_same_v<remove_cv_t<_Tp>, in_place_t> &&
|
/llvm-project/llvm/include/llvm/ADT/ |
H A D | STLExtras.h | 209 bool = std::is_function_v<std::remove_pointer_t<remove_cvref_t<T>>>>
|
/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | ExprEngine.cpp | 921 static_assert(std::is_function_v<std::remove_pointer_t<Printer>>, in printStateTraitWithLocationContextJson()
|
/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/ |
H A D | StdSymbolMap.inc | 1687 SYMBOL(is_function_v, std::, <type_traits>)
|