Searched refs:is_null_pointer (Results 1 – 25 of 40) sorted by relevance
12
/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.cat/ |
D | is_null_pointer.pass.cpp | 23 static_assert( std::is_null_pointer<T>::value, ""); in test_is_null_pointer() 24 static_assert( std::is_null_pointer<const T>::value, ""); in test_is_null_pointer() 25 static_assert( std::is_null_pointer<volatile T>::value, ""); in test_is_null_pointer() 26 static_assert( std::is_null_pointer<const volatile T>::value, ""); in test_is_null_pointer() 38 static_assert(!std::is_null_pointer<T>::value, ""); in test_is_not_null_pointer() 39 static_assert(!std::is_null_pointer<const T>::value, ""); in test_is_not_null_pointer() 40 static_assert(!std::is_null_pointer<volatile T>::value, ""); in test_is_not_null_pointer() 41 static_assert(!std::is_null_pointer<const volatile T>::value, ""); in test_is_not_null_pointer()
|
D | nullptr.pass.cpp | 24 static_assert( std::is_null_pointer<T>::value, ""); in test_nullptr_imp() 55 static_assert(!std::is_null_pointer<incomplete_type>::value, ""); in main()
|
D | lvalue_ref.pass.cpp | 23 static_assert(!std::is_null_pointer<T>::value, ""); in test_lvalue_ref()
|
D | rvalue_ref.pass.cpp | 24 static_assert(!std::is_null_pointer<T>::value, ""); in test_rvalue_ref()
|
D | floating_point.pass.cpp | 22 static_assert(!std::is_null_pointer<T>::value, ""); in test_floating_point_imp()
|
D | pointer.pass.cpp | 23 static_assert(!std::is_null_pointer<T>::value, ""); in test_pointer_imp()
|
D | union.pass.cpp | 22 static_assert(!std::is_null_pointer<T>::value, ""); in test_union_imp()
|
D | class.pass.cpp | 22 static_assert(!std::is_null_pointer<T>::value, ""); in test_class_imp()
|
D | enum.pass.cpp | 22 static_assert(!std::is_null_pointer<T>::value, ""); in test_enum_imp()
|
D | void.pass.cpp | 22 static_assert(!std::is_null_pointer<T>::value, ""); in test_void_imp()
|
D | member_object_pointer.pass.cpp | 22 static_assert(!std::is_null_pointer<T>::value, ""); in test_member_object_pointer_imp()
|
D | array.pass.cpp | 22 static_assert(!std::is_null_pointer<T>::value, ""); in test_array_imp()
|
/external/llvm-project/libcxx/test/std/utilities/meta/meta.unary/meta.unary.cat/ |
D | is_null_pointer.pass.cpp | 22 static_assert( std::is_null_pointer<T>::value, ""); in test_is_null_pointer() 23 static_assert( std::is_null_pointer<const T>::value, ""); in test_is_null_pointer() 24 static_assert( std::is_null_pointer<volatile T>::value, ""); in test_is_null_pointer() 25 static_assert( std::is_null_pointer<const volatile T>::value, ""); in test_is_null_pointer() 37 static_assert(!std::is_null_pointer<T>::value, ""); in test_is_not_null_pointer() 38 static_assert(!std::is_null_pointer<const T>::value, ""); in test_is_not_null_pointer() 39 static_assert(!std::is_null_pointer<volatile T>::value, ""); in test_is_not_null_pointer() 40 static_assert(!std::is_null_pointer<const volatile T>::value, ""); in test_is_not_null_pointer()
|
D | nullptr.pass.cpp | 25 static_assert( std::is_null_pointer<T>::value, ""); in test_nullptr_imp() 56 static_assert(!std::is_null_pointer<incomplete_type>::value, ""); in main()
|
D | rvalue_ref.pass.cpp | 21 static_assert(!std::is_null_pointer<T>::value, ""); in test_rvalue_ref()
|
D | lvalue_ref.pass.cpp | 22 static_assert(!std::is_null_pointer<T>::value, ""); in test_lvalue_ref()
|
D | union.pass.cpp | 21 static_assert(!std::is_null_pointer<T>::value, ""); in test_union_imp()
|
D | void.pass.cpp | 21 static_assert(!std::is_null_pointer<T>::value, ""); in test_void_imp()
|
D | pointer.pass.cpp | 22 static_assert(!std::is_null_pointer<T>::value, ""); in test_pointer_imp()
|
D | class.pass.cpp | 21 static_assert(!std::is_null_pointer<T>::value, ""); in test_class_imp()
|
D | enum.pass.cpp | 21 static_assert(!std::is_null_pointer<T>::value, ""); in test_enum_imp()
|
D | member_object_pointer.pass.cpp | 21 static_assert(!std::is_null_pointer<T>::value, ""); in test_member_object_pointer_imp()
|
D | floating_point.pass.cpp | 21 static_assert(!std::is_null_pointer<T>::value, ""); in test_floating_point_imp()
|
D | array.pass.cpp | 21 static_assert(!std::is_null_pointer<T>::value, ""); in test_array_imp()
|
/external/pigweed/pw_tokenizer/public/pw_tokenizer/internal/ |
D | argument_types.h | 97 } else if constexpr (!std::is_null_pointer<ArgType>() && in VarargsType() 112 bool kIsString = !std::is_null_pointer<T>() &&
|
12