Home
last modified time | relevance | path

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

123

/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/
H A Dtype_utils.hpp58 using std::tr1::is_reference;
90 value = is_const<T>::value && is_reference<T>::value
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/
H A Dtype_utils.hpp58 using std::tr1::is_reference;
90 value = is_const<T>::value && is_reference<T>::value
/netbsd-src/external/apache2/llvm/dist/libcxx/include/__memory/
H A Dunique_ptr.h91 static_assert(!is_reference<_Deleter>::value, "incorrect specialization");
164 (is_reference<_Dp>::value && is_same<_Dp, _UDel>::value) ||
165 (!is_reference<_Dp>::value && is_convertible<_UDel, _Dp>::value)
200 static_assert(!is_reference<deleter_type>::value,
387 (is_reference<_Dp>::value && is_same<_Dp, _UDel>::value) ||
388 (!is_reference<_Dp>::value && is_convertible<_UDel, _Dp>::value)
433 static_assert(!is_reference<deleter_type>::value,
442 static_assert(!is_reference<deleter_type>::value,
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr1/
H A Dtype_traits170 /// is_reference
172 struct is_reference;
271 || is_reference<_Tp>::value
495 struct is_reference
499 struct is_reference<_Tp&>
652 || is_reference<_Tp>::value)>
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/
H A Dtype_traits168 /// is_reference
170 struct is_reference;
269 || is_reference<_Tp>::value
493 struct is_reference
497 struct is_reference<_Tp&>
650 || is_reference<_Tp>::value)>
/netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/
H A Dgmock-more-actions.h110 GTEST_COMPILE_ASSERT_(std::is_reference<argk_type>::value, in ACTION_TEMPLATE()
H A Dgmock-actions.h545 !std::is_reference<Result>::value,
574 GTEST_COMPILE_ASSERT_(!std::is_reference<Result>::value,
653 GTEST_COMPILE_ASSERT_(std::is_reference<Result>::value,
700 std::is_reference<Result>::value,
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/
H A Deh_arm.cc42 bool is_reference __attribute__((__unused__)), in __cxa_type_match() argument
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/libsupc++/
H A Deh_arm.cc42 bool is_reference __attribute__((__unused__)), in __cxa_type_match() argument
/netbsd-src/external/apache2/llvm/dist/clang/bindings/python/tests/cindex/
H A Dtest_cursor_kind.py31 self.assertTrue(CursorKind.TYPE_REF.is_reference())
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dquoted_string.h51 static_assert(is_reference<_String>::value in _GLIBCXX_VISIBILITY()
H A Dstl_pair.h481 __enable_if_t<__and_<__not_<is_reference<_U1>>, in _GLIBCXX_VISIBILITY()
493 __enable_if_t<__and_<__not_<is_reference<_U1>>, in _GLIBCXX_VISIBILITY()
506 __not_<is_reference<_U2>>, in _GLIBCXX_VISIBILITY()
518 __not_<is_reference<_U2>>, in _GLIBCXX_VISIBILITY()
H A Dunique_ptr.h375 __conditional_t<is_reference<_Dp>::value, in _GLIBCXX_VISIBILITY()
660 __conditional_t<is_reference<_Dp>::value, in _GLIBCXX_VISIBILITY()
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dquoted_string.h51 static_assert(is_reference<_String>::value in _GLIBCXX_VISIBILITY()
H A Dunique_ptr.h337 typename conditional<is_reference<_Dp>::value, in _GLIBCXX_VISIBILITY()
600 typename conditional<is_reference<_Dp>::value, in _GLIBCXX_VISIBILITY()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/cp/
H A Dcvt.c1242 int is_reference = TYPE_REF_P (TREE_TYPE (TREE_OPERAND (expr, 0))); in convert_to_void() local
1291 else if (is_volatile && is_reference) in convert_to_void()
1377 if (is_reference || !is_volatile || !is_complete || TREE_ADDRESSABLE (type)) in convert_to_void()
1389 && !is_reference) in convert_to_void()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DErrorOr.h59 static constexpr bool isRef = std::is_reference<T>::value;
H A Draw_ostream.h395 std::enable_if_t<!std::is_reference<OStream>::value &&
/netbsd-src/external/gpl3/gcc/dist/gcc/cp/
H A Dcvt.cc1249 int is_reference = TYPE_REF_P (TREE_TYPE (TREE_OPERAND (expr, 0))); in convert_to_void() local
1298 else if (is_volatile && is_reference) in convert_to_void()
1384 if (is_reference || !is_volatile || !is_complete || TREE_ADDRESSABLE (type)) in convert_to_void()
1396 && !is_reference) in convert_to_void()
/netbsd-src/external/apache2/llvm/dist/libcxx/include/
H A Dtype_traits50 template <class T> struct is_reference;
275 = is_reference<T>::value; // C++17
903 // is_reference
916 struct _LIBCPP_TEMPLATE_VIS is_reference : _BoolConstant<__is_reference(_Tp)> { };
937 template <class _Tp> struct _LIBCPP_TEMPLATE_VIS is_reference : public false_type {};
938 template <class _Tp> struct _LIBCPP_TEMPLATE_VIS is_reference<_Tp&> : public true_type {};
939 template <class _Tp> struct _LIBCPP_TEMPLATE_VIS is_reference<_Tp&&> : public true_type {};
944 = is_reference<_Tp>::value;
1011 !(is_reference<_Tp>::value || is_const<const _Tp>::value)
1134 !is_reference<_Tp>::value &&
[all …]
H A Dtuple204 {static_assert(!is_reference<_Hp>::value,
211 {static_assert(!is_reference<_Hp>::value,
218 {static_assert(!is_reference<_Hp>::value,
225 {static_assert(!is_reference<_Hp>::value,
253 {static_assert(!is_reference<_Hp>::value,
260 {static_assert(!is_reference<_Hp>::value,
H A Dany642 static_assert(!is_reference<_ValueType>::value,
664 static_assert(!is_reference<_ValueType>::value,
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DFunctionExtras.h94 static_assert(!std::is_reference<T>::value,
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/
H A Dunwind-arm-common.inc73 bool is_reference, void **matched_object);
917 bool is_reference = (data[0] & uint32_highbit) != 0;
934 is_reference,
/netbsd-src/external/gpl3/gcc/dist/libgcc/
H A Dunwind-arm-common.inc69 bool is_reference, void **matched_object);
913 bool is_reference = (data[0] & uint32_highbit) != 0;
930 is_reference,

123