Searched refs:is_reference (Results 1 - 25 of 42) sorted by relevance

12

/openbsd-current/gnu/llvm/libcxx/include/__type_traits/
H A Dis_function.h15 #include <__type_traits/is_reference.h>
32 : public integral_constant<bool, !(is_reference<_Tp>::value || is_const<const _Tp>::value)> {};
H A Dis_reference.h32 struct _LIBCPP_TEMPLATE_VIS is_reference : _BoolConstant<__is_reference(_Tp)> { }; struct in inherits:_BoolConstant
51 template <class _Tp> struct _LIBCPP_TEMPLATE_VIS is_reference : public false_type {};
52 template <class _Tp> struct _LIBCPP_TEMPLATE_VIS is_reference<_Tp&> : public true_type {};
53 template <class _Tp> struct _LIBCPP_TEMPLATE_VIS is_reference<_Tp&&> : public true_type {};
57 inline constexpr bool is_reference_v = is_reference<_Tp>::value;
H A Dis_nothrow_constructible.h15 #include <__type_traits/is_reference.h>
58 : __libcpp_is_nothrow_constructible<is_constructible<_Tp, _Args...>::value, is_reference<_Tp>::value, _Tp, _Args...>
64 : __libcpp_is_nothrow_constructible<is_constructible<_Tp>::value, is_reference<_Tp>::value, _Tp>
H A Dis_nothrow_destructible.h15 #include <__type_traits/is_reference.h>
71 is_reference<_Tp>::value> {};
H A Dis_destructible.h15 #include <__type_traits/is_reference.h>
76 struct __destructible_false<_Tp, false> : public __destructible_imp<_Tp, is_reference<_Tp>::value> {};
H A Dcommon_reference.h17 #include <__type_traits/is_reference.h>
/openbsd-current/gnu/llvm/libcxx/include/__concepts/
H A Dassignable.h15 #include <__type_traits/is_reference.h>
/openbsd-current/gnu/llvm/libcxx/include/__utility/
H A Dforward.h14 #include <__type_traits/is_reference.h>
H A Dforward_like.h16 #include <__type_traits/is_reference.h>
/openbsd-current/gnu/gcc/libstdc++-v3/include/ext/pb_ds/detail/
H A Dtype_utils.hpp64 using std::tr1::is_reference;
96 value = is_const<T>::value && is_reference<T>::value
/openbsd-current/gnu/gcc/libstdc++-v3/libsupc++/
H A Deh_arm.cc46 bool is_reference __attribute__((__unused__)),
/openbsd-current/gnu/llvm/libcxx/include/__tuple_dir/
H A Dapply_cv.h14 #include <__type_traits/is_reference.h>
/openbsd-current/gnu/llvm/libcxx/include/__memory/
H A Dconcepts.h20 #include <__type_traits/is_reference.h>
H A Dunique_ptr.h33 #include <__type_traits/is_reference.h>
97 static_assert(!is_reference<_Deleter>::value, "incorrect specialization");
170 (is_reference<_Dp>::value && is_same<_Dp, _UDel>::value) ||
171 (!is_reference<_Dp>::value && is_convertible<_UDel, _Dp>::value)
201 static_assert(!is_reference<deleter_type>::value,
368 (is_reference<_Dp>::value && is_same<_Dp, _UDel>::value) ||
369 (!is_reference<_Dp>::value && is_convertible<_UDel, _Dp>::value)
412 static_assert(!is_reference<deleter_type>::value,
419 static_assert(!is_reference<deleter_type>::value,
/openbsd-current/gnu/llvm/clang/bindings/python/tests/cindex/
H A Dtest_cursor_kind.py31 self.assertTrue(CursorKind.TYPE_REF.is_reference())
46 group = [n for n in ('is_declaration', 'is_reference', 'is_expression',
/openbsd-current/gnu/llvm/libcxx/include/__algorithm/
H A Diterator_operations.h25 #include <__type_traits/is_reference.h>
115 is_reference<__deref_t<_Iter> >::value,
129 !is_reference<__deref_t<_Iter> >::value,
/openbsd-current/gnu/llvm/libcxx/include/__iterator/
H A Diter_move.h16 #include <__type_traits/is_reference.h>
H A Dmove_iterator.h32 #include <__type_traits/is_reference.h>
92 is_reference<__reference>::value,
/openbsd-current/gnu/llvm/libcxx/include/__ranges/
H A Ddata.h22 #include <__type_traits/is_reference.h>
H A Dconcepts.h28 #include <__type_traits/is_reference.h>
H A Daccess.h19 #include <__type_traits/is_reference.h>
/openbsd-current/gnu/gcc/libstdc++-v3/include/tr1/
H A Dtype_traits_fwd.h68 struct is_reference;
/openbsd-current/gnu/llvm/lldb/bindings/interface/
H A DSBType.i909 is_reference = property(IsReferenceType, None, doc='''A read only property that returns a boolean value that indicates if this type is a reference type.''')
910 is_reference = property(IsReferenceType, None, doc='''A read only property that returns a boolean value that indicates if this type is a function type.''')
/openbsd-current/gnu/llvm/llvm/include/llvm/Support/
H A DErrorOr.h59 static constexpr bool isRef = std::is_reference<T>::value;
/openbsd-current/gnu/gcc/gcc/cp/
H A Dcvt.c864 int is_reference = TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0)))
875 else if (is_volatile && (is_reference || TREE_ADDRESSABLE (type)))
879 if (is_reference || !is_volatile || !is_complete || TREE_ADDRESSABLE (type))
862 int is_reference = TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0))) local

Completed in 237 milliseconds

12