| /openbsd-src/gnu/llvm/libcxx/include/__type_traits/ |
| H A D | is_pointer.h | 25 struct _LIBCPP_TEMPLATE_VIS is_pointer : _BoolConstant<__is_pointer(_Tp)> { }; struct 45 template <class _Tp> struct _LIBCPP_TEMPLATE_VIS is_pointer 50 inline constexpr bool is_pointer_v = is_pointer<_Tp>::value;
|
| H A D | is_scalar.h | 46 is_pointer<_Tp>::value ||
|
| /openbsd-src/gnu/gcc/libstdc++-v3/include/ext/pb_ds/detail/ |
| H A D | type_utils.hpp | 63 using std::tr1::is_pointer; 87 value = is_const<T>::value && is_pointer<T>::value 106 || is_pointer<typename remove_const<T>::type>::value
|
| /openbsd-src/gnu/llvm/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 | 130 static_assert(!std::is_pointer<T>::value, in writeObject()
|
| H A D | GenericDomTree.h | 230 static_assert(std::is_pointer<ParentPtr>::value, 245 static_assert(std::is_pointer<typename GraphTraits<NodeT *>::NodeRef>::value, 251 static_assert(std::is_pointer<ParentPtr>::value,
|
| H A D | FormatProviders.h | 53 : public std::integral_constant<bool, std::is_pointer<T>::value &&
|
| H A D | GraphWriter.h | 76 static_assert(std::is_pointer<NodeRef>::value,
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/ |
| H A D | gengtype-lex.l | 67 int is_pointer = 0; variable 84 is_pointer = 1; 88 if (is_pointer)
|
| /openbsd-src/gnu/gcc/gcc/ |
| H A D | gengtype-lex.l | 70 int is_pointer = 0; variable 87 is_pointer = 1; 92 if (is_pointer)
|
| H A D | gengtype-lex.c | 1998 int is_pointer = 0; variable 2015 is_pointer = 1; 2020 if (is_pointer)
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/clang/lib/AST/Interp/ |
| H A D | Source.h | 50 template <typename T> std::enable_if_t<!std::is_pointer<T>::value, T> read() { in read()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/LogicalView/Core/ |
| H A D | LVSupport.h | 35 using TypeIsValid = std::bool_constant<std::is_pointer<T>::value>; 174 static_assert(std::is_pointer<ValueType>::value,
|
| /openbsd-src/gnu/gcc/libstdc++-v3/include/tr1/ |
| H A D | type_traits_fwd.h | 65 struct is_pointer;
|
| H A D | type_traits | 149 struct is_pointer 151 _DEFINE_SPEC(1, is_pointer, _Tp*, true) 177 || is_pointer<_Tp>::value 222 || is_pointer<_Tp>::value
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/orc/ |
| H A D | executor_address.h | 83 std::enable_if_t<std::is_pointer<T>::value, T>
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/Shared/ |
| H A D | ExecutorAddress.h | 88 std::enable_if_t<std::is_pointer<T>::value, T>
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/ |
| H A D | RegionIterator.h | 61 static_assert(std::is_pointer<NodeRef>::value,
|
| /openbsd-src/gnu/llvm/lldb/bindings/interface/ |
| H A D | SBType.i | 908 …is_pointer = property(IsPointerType, None, doc='''A read only property that returns a boolean valu…
|
| /openbsd-src/gnu/llvm/libcxx/include/ |
| H A D | type_traits | 39 template <class T> struct is_pointer; 255 = is_pointer<T>::value; // C++17 491 #include <__type_traits/is_pointer.h>
|
| /openbsd-src/gnu/llvm/libcxx/include/__memory/ |
| H A D | unique_ptr.h | 156 !is_pointer<_Deleter>::value>::type; 346 !is_pointer<_Deleter>::value>::type;
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ADT/ |
| H A D | IntervalTree.h | 245 std::is_pointer<T>::value>;
|
| /openbsd-src/gnu/llvm/lldb/source/Core/ |
| H A D | FormatEntity.cpp | 835 bool is_pointer = (type_info_flags & eTypeIsPointer) != 0; in DumpValue() local 838 if ((is_array || is_pointer) && (!is_array_range) && in DumpValue() 865 } else if (is_pointer) // if pointer, value is the address stored in DumpValue() 900 if (!is_array && !is_pointer) in DumpValue()
|
| /openbsd-src/gnu/llvm/libcxx/include/experimental/ |
| H A D | propagate_const | 148 static_assert(!(is_pointer<_Tp>::value && is_function<__remove_pointer_t<_Tp> >::value), 150 …static_assert(!(is_pointer<_Tp>::value && is_same<__remove_cv_t<__remove_pointer_t<_Tp> >, void>::…
|