Home
last modified time | relevance | path

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 Dis_function.pass.cpp30 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 Dast-dump-template-json-win32-mangler-crash.cpp44 _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 Dis_function.h30 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 Ddecay.h32 cpp::conditional_t<cpp::is_function_v<U>, cpp::add_pointer_t<U>,
/llvm-project/libcxx/include/__type_traits/
H A Dis_function.h26 _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 Dcopy_move_trivial.pass.cpp86 requires (std::is_pointer_v<T> && !std::is_function_v<std::remove_pointer_t<T>>)
/llvm-project/libcxx/modules/std/
H A Dtype_traits.inc216 using std::is_function_v;
/llvm-project/libcxx/include/
H A Dtype_traits273 template <class T> inline constexpr bool is_function_v
/llvm-project/libcxx/include/__expected/
H A Dexpected.h450 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 DSTLExtras.h209 bool = std::is_function_v<std::remove_pointer_t<remove_cvref_t<T>>>>
/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp921 static_assert(std::is_function_v<std::remove_pointer_t<Printer>>, in printStateTraitWithLocationContextJson()
/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdSymbolMap.inc1687 SYMBOL(is_function_v, std::, <type_traits>)