/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/ |
H A D | type_utils.hpp | 58 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 D | type_utils.hpp | 58 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 D | unique_ptr.h | 91 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 D | type_traits | 170 /// 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 D | type_traits | 168 /// 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 D | gmock-more-actions.h | 110 GTEST_COMPILE_ASSERT_(std::is_reference<argk_type>::value, in ACTION_TEMPLATE()
|
H A D | gmock-actions.h | 545 !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 D | eh_arm.cc | 42 bool is_reference __attribute__((__unused__)), in __cxa_type_match() argument
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/libsupc++/ |
H A D | eh_arm.cc | 42 bool is_reference __attribute__((__unused__)), in __cxa_type_match() argument
|
/netbsd-src/external/apache2/llvm/dist/clang/bindings/python/tests/cindex/ |
H A D | test_cursor_kind.py | 31 self.assertTrue(CursorKind.TYPE_REF.is_reference())
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
H A D | quoted_string.h | 51 static_assert(is_reference<_String>::value in _GLIBCXX_VISIBILITY()
|
H A D | stl_pair.h | 481 __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 D | unique_ptr.h | 375 __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 D | quoted_string.h | 51 static_assert(is_reference<_String>::value in _GLIBCXX_VISIBILITY()
|
H A D | unique_ptr.h | 337 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 D | cvt.c | 1242 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 D | ErrorOr.h | 59 static constexpr bool isRef = std::is_reference<T>::value;
|
H A D | raw_ostream.h | 395 std::enable_if_t<!std::is_reference<OStream>::value &&
|
/netbsd-src/external/gpl3/gcc/dist/gcc/cp/ |
H A D | cvt.cc | 1249 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 D | type_traits | 50 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 D | tuple | 204 {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 D | any | 642 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 D | FunctionExtras.h | 94 static_assert(!std::is_reference<T>::value,
|
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/ |
H A D | unwind-arm-common.inc | 73 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 D | unwind-arm-common.inc | 69 bool is_reference, void **matched_object); 913 bool is_reference = (data[0] & uint32_highbit) != 0; 930 is_reference,
|