Home
last modified time | relevance | path

Searched refs:is_pointer (Results 1 – 25 of 31) sorted by relevance

12

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A Dtype_traits.h36 !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 DBinaryStreamWriter.h136 static_assert(!std::is_pointer<T>::value, in writeObject()
H A DGenericDomTree.h230 static_assert(std::is_pointer<typename GraphTraits<NodeT *>::NodeRef>::value,
235 static_assert(std::is_pointer<ParentPtr>::value,
H A DGraphWriter.h77 static_assert(std::is_pointer<NodeRef>::value,
H A DFormatProviders.h53 : public std::integral_constant<bool, std::is_pointer<T>::value &&
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/Interp/
H A DSource.h59 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 Dgmock-internal-utils_test.cc542 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 DJITSymbol.h51 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 Dgtest-message.h113 StreamHelper(typename internal::is_pointer<T>::type(), value);
H A Dgtest-printers.h518 : !is_pointer<T>::value in PrintTo()
H A Dgtest.h1526 typename EnableIf<!is_pointer<T2>::value>::type* = 0) {
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/orc/
H A Dexecutor_address.h55 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 DExecutorAddress.h52 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 Dpointer_traits.h179 template <class _Pointer, class = _EnableIf<!is_pointer<_Pointer>::value> >
H A Dunique_ptr.h153 !is_pointer<_Deleter>::value>::type;
368 !is_pointer<_Deleter>::value>::type;
/freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/
H A DSBType.i881is_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 DRegionIterator.h61 static_assert(std::is_pointer<NodeRef>::value,
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp843 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 Dpropagate_const144 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 Dgtest-port.h2359 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 DHashing.h351 std::is_pointer<T>::value) &&
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DDIE.h401 std::is_pointer<T>::value, in construct()
/freebsd-13.1/contrib/googletest/googlemock/include/gmock/
H A Dgmock-actions.h663 GTEST_COMPILE_ASSERT_(internal::is_pointer<Result>::value,
H A Dgmock-matchers.h743 (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 Dtype_traits39 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 ||

12