| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | type_traits.h | 36 !std::is_pointer<UnderlyingT>::value && 48 T, std::enable_if_t<std::is_pointer<T>::value>> { 58 struct add_const_past_pointer<T, std::enable_if_t<std::is_pointer<T>::value>> { 68 std::enable_if_t<std::is_pointer<T>::value>> {
|
| H A D | BinaryStreamWriter.h | 136 static_assert(!std::is_pointer<T>::value, in writeObject()
|
| H A D | GenericDomTree.h | 230 static_assert(std::is_pointer<typename GraphTraits<NodeT *>::NodeRef>::value, 235 static_assert(std::is_pointer<ParentPtr>::value,
|
| H A D | GraphWriter.h | 77 static_assert(std::is_pointer<NodeRef>::value,
|
| H A D | FormatProviders.h | 53 : public std::integral_constant<bool, std::is_pointer<T>::value &&
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | Source.h | 59 static std::enable_if_t<!std::is_pointer<T>::value, T> 66 static std::enable_if_t<std::is_pointer<T>::value, T>
|
| /freebsd-13.1/contrib/googletest/googlemock/test/ |
| H A D | gmock-internal-utils_test.cc | 542 TEST(TypeTraitsTest, is_pointer) { in TEST() argument 543 EXPECT_FALSE(is_pointer<int>::value); in TEST() 544 EXPECT_FALSE(is_pointer<char&>::value); in TEST() 545 EXPECT_TRUE(is_pointer<const int*>::value); in TEST()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/ |
| H A D | JITSymbol.h | 51 static_assert(std::is_pointer<T>::value, "T must be a pointer type"); in jitTargetAddressToPointer() 62 static_assert(std::is_pointer<T>::value && in jitTargetAddressToFunction()
|
| /freebsd-13.1/contrib/googletest/googletest/include/gtest/ |
| H A D | gtest-message.h | 113 StreamHelper(typename internal::is_pointer<T>::type(), value);
|
| H A D | gtest-printers.h | 518 : !is_pointer<T>::value in PrintTo()
|
| H A D | gtest.h | 1526 typename EnableIf<!is_pointer<T2>::value>::type* = 0) {
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/orc/ |
| H A D | executor_address.h | 55 static_assert(std::is_pointer<T>::value, "T must be a pointer type"); in toPtr()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/ |
| H A D | ExecutorAddress.h | 52 static_assert(std::is_pointer<T>::value, "T must be a pointer type"); in toPtr()
|
| /freebsd-13.1/contrib/llvm-project/libcxx/include/__memory/ |
| H A D | pointer_traits.h | 179 template <class _Pointer, class = _EnableIf<!is_pointer<_Pointer>::value> >
|
| H A D | unique_ptr.h | 153 !is_pointer<_Deleter>::value>::type; 368 !is_pointer<_Deleter>::value>::type;
|
| /freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/ |
| H A D | SBType.i | 881 …is_pointer = property(IsPointerType, None, doc='''A read only property that returns a boolean valu…
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | RegionIterator.h | 61 static_assert(std::is_pointer<NodeRef>::value,
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Core/ |
| H A D | FormatEntity.cpp | 843 bool is_pointer = (type_info_flags & eTypeIsPointer) != 0; in DumpValue() local 846 if ((is_array || is_pointer) && (!is_array_range) && in DumpValue() 873 } else if (is_pointer) // if pointer, value is the address stored in DumpValue() 908 if (!is_array && !is_pointer) in DumpValue()
|
| /freebsd-13.1/contrib/llvm-project/libcxx/include/experimental/ |
| H A D | propagate_const | 144 static_assert(!(is_pointer<_Tp>::value && is_function<typename remove_pointer<_Tp>::type>::value), 146 …static_assert(!(is_pointer<_Tp>::value && is_same<typename remove_cv<typename remove_pointer<_Tp>:…
|
| /freebsd-13.1/contrib/googletest/googletest/include/gtest/internal/ |
| H A D | gtest-port.h | 2359 struct is_pointer : public false_type {}; 2362 struct is_pointer<T*> : public true_type {};
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | Hashing.h | 351 std::is_pointer<T>::value) &&
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | DIE.h | 401 std::is_pointer<T>::value, in construct()
|
| /freebsd-13.1/contrib/googletest/googlemock/include/gmock/ |
| H A D | gmock-actions.h | 663 GTEST_COMPILE_ASSERT_(internal::is_pointer<Result>::value,
|
| H A D | gmock-matchers.h | 743 (std::is_pointer<typename std::remove_reference<T>::type>::value != in MatchAndExplain() 744 std::is_pointer<typename std::remove_reference<U>::type>::value) || in MatchAndExplain() 2484 is_pointer<GTEST_REMOVE_CONST_(T)>::type(), 2559 is_pointer<GTEST_REMOVE_CONST_(T)>::type(),
|
| /freebsd-13.1/contrib/llvm-project/libcxx/include/ |
| H A D | type_traits | 39 template <class T> struct is_pointer; 255 = is_pointer<T>::value; // C++17 864 // is_pointer 872 struct _LIBCPP_TEMPLATE_VIS is_pointer : _BoolConstant<__is_pointer(_Tp)> { }; 892 template <class _Tp> struct _LIBCPP_TEMPLATE_VIS is_pointer 898 = is_pointer<_Tp>::value; 1133 !is_pointer<_Tp>::value && 1215 is_pointer<_Tp>::value ||
|