Home
last modified time | relevance | path

Searched refs:is_reference (Results 1 – 25 of 28) sorted by relevance

12

/freebsd/contrib/llvm-project/libcxx/include/__type_traits/
H A Dis_reference.h30 struct _LIBCPP_TEMPLATE_VIS is_reference : _BoolConstant<__is_reference(_Tp)> {}; struct
54 struct _LIBCPP_TEMPLATE_VIS is_reference : public false_type {};
56 struct _LIBCPP_TEMPLATE_VIS is_reference<_Tp&> : public true_type {};
58 struct _LIBCPP_TEMPLATE_VIS is_reference<_Tp&&> : public true_type {};
62 inline constexpr bool is_reference_v = is_reference<_Tp>::value;
H A Dis_nothrow_constructible.h54 is_reference<_Tp>::value,
60 …: __libcpp_is_nothrow_constructible<is_constructible<_Tp>::value, is_reference<_Tp>::value, _Tp> {…
H A Dis_function.h32 : public integral_constant<bool, !(is_reference<_Tp>::value || is_const<const _Tp>::value)> {};
H A Dis_nothrow_destructible.h55 …ow_destructor : public integral_constant<bool, is_scalar<_Tp>::value || is_reference<_Tp>::value> {
H A Dis_destructible.h74 struct __destructible_false<_Tp, false> : public __destructible_imp<_Tp, is_reference<_Tp>::value> …
/freebsd/contrib/llvm-project/libcxx/include/__memory/
H A Dunique_ptr.h97 static_assert(!is_reference<_Deleter>::value, "incorrect specialization");
159 __enable_if_t< (is_reference<_Dp>::value && is_same<_Dp, _UDel>::value) ||
160 (!is_reference<_Dp>::value && is_convertible<_UDel, _Dp>::value) >;
184 static_assert(!is_reference<deleter_type>::value, "rvalue deleter bound to reference");
321 __enable_if_t< (is_reference<_Dp>::value && is_same<_Dp, _UDel>::value) ||
322 (!is_reference<_Dp>::value && is_convertible<_UDel, _Dp>::value) >;
359 static_assert(!is_reference<deleter_type>::value, "rvalue deleter bound to reference");
365 static_assert(!is_reference<deleter_type>::value, "rvalue deleter bound to reference");
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/
H A Diterator_operations.h111 template <class _Iter, __enable_if_t<is_reference<__deref_t<_Iter> >::value, int> = 0>
122 template <class _Iter, __enable_if_t<!is_reference<__deref_t<_Iter> >::value, int> = 0>
/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBTypeExtensions.i60is_reference = property(IsReferenceType, None, doc='''A read only property that returns a boolean …
61is_reference = property(IsReferenceType, None, doc='''A read only property that returns a boolean …
/freebsd/contrib/llvm-project/libcxx/include/
H A Dany99 #include <__type_traits/is_reference.h>
560 static_assert(!is_reference<_ValueType>::value, "_ValueType may not be a reference.");
578 static_assert(!is_reference<_ValueType>::value, "_ValueType may not be a reference.");
H A Dtype_traits50 template <class T> struct is_reference;
275 = is_reference<T>::value; // C++17
493 #include <__type_traits/is_reference.h>
H A Dtuple250 #include <__type_traits/is_reference.h>
321 …static_assert(!is_reference<_Hp>::value, "Attempted to default construct a reference element in a …
326 …static_assert(!is_reference<_Hp>::value, "Attempted to default construct a reference element in a …
332 …static_assert(!is_reference<_Hp>::value, "Attempted to default construct a reference element in a …
337 …static_assert(!is_reference<_Hp>::value, "Attempted to default construct a reference element in a …
362 …static_assert(!is_reference<_Hp>::value, "Attempted to uses-allocator construct a reference elemen…
369 …static_assert(!is_reference<_Hp>::value, "Attempted to uses-allocator construct a reference elemen…
H A Doptional211 #include <__type_traits/is_reference.h>
353 template <class _Tp, bool = is_reference<_Tp>::value>
H A D__hash_table38 #include <__type_traits/is_reference.h>
166 static_assert(!is_reference<_Tp>::value && !is_const<_Tp>::value, "");
H A Dlibcxx.imp757 { include: [ "<__type_traits/is_reference.h>", "private", "<type_traits>", "public" ] },
/freebsd/contrib/googletest/googlemock/include/gmock/
H A Dgmock-actions.h929 negation<std::is_reference<U>>, //
940 negation<std::is_reference<U>>, //
1152 static_assert(std::is_reference<Result>::value,
1194 static_assert(std::is_reference<Result>::value,
H A Dgmock-matchers.h541 static_assert(std::is_reference<T>::value || !std::is_reference<U>::value, in SafeMatcherCast()
2418 static_assert(!std::is_reference<Container>::value,
2590 static_assert(!std::is_reference<RhsContainer>::value,
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/
H A Derror.h189 static constexpr bool IsRef = std::is_reference<T>::value;
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DFunctionExtras.h101 static_assert(!std::is_reference<T>::value,
H A DSTLExtras.h1425 using type = std::conditional_t<std::is_reference<EltTy>::value, FirstTy,
/freebsd/contrib/llvm-project/libcxx/include/__iterator/
H A Dmove_iterator.h108 typedef typename conditional< is_reference<__reference>::value,
/freebsd/contrib/llvm-project/libcxx/include/experimental/
H A Dpropagate_const121 #include <__type_traits/is_reference.h>
160 …static_assert(!is_reference<_Tp>::value, "Instantiation of propagate_const with a reference type i…
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dtype_traits.inc40 using std::is_reference;
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionDeclMap.cpp1575 bool is_reference = pt.IsReferenceType(); in AddExpressionVariable() local
1578 if (is_reference) in AddExpressionVariable()
1595 if (is_reference) in AddExpressionVariable()
/freebsd/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-internal.h1122 static_assert(!std::is_reference<Element>::value,
/freebsd/lib/libc++/
H A DMakefile1236 TTR_HEADERS+= is_reference.h

12