Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/libcxx/include/__memory/
H A Dunique_ptr.h94 static_assert(!is_reference<_Deleter>::value, "incorrect specialization");
167 (is_reference<_Dp>::value && is_same<_Dp, _UDel>::value) ||
168 (!is_reference<_Dp>::value && is_convertible<_UDel, _Dp>::value)
203 static_assert(!is_reference<deleter_type>::value,
390 (is_reference<_Dp>::value && is_same<_Dp, _UDel>::value) ||
391 (!is_reference<_Dp>::value && is_convertible<_UDel, _Dp>::value)
436 static_assert(!is_reference<deleter_type>::value,
445 static_assert(!is_reference<deleter_type>::value,
/freebsd-13.1/contrib/googletest/googlemock/test/
H A Dgmock-internal-utils_test.cc536 TEST(TypeTraitsTest, is_reference) { in TEST() argument
537 EXPECT_FALSE(is_reference<int>::value); in TEST()
538 EXPECT_FALSE(is_reference<char*>::value); in TEST()
539 EXPECT_TRUE(is_reference<const int&>::value); in TEST()
/freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/
H A DSBType.i882is_reference = property(IsReferenceType, None, doc='''A read only property that returns a boolean …
883is_reference = property(IsReferenceType, None, doc='''A read only property that returns a boolean …
/freebsd-13.1/contrib/googletest/googlemock/include/gmock/
H A Dgmock-actions.h585 !is_reference<Result>::value,
612 GTEST_COMPILE_ASSERT_(!is_reference<Result>::value,
697 GTEST_COMPILE_ASSERT_(internal::is_reference<Result>::value,
746 internal::is_reference<Result>::value,
H A Dgmock-more-actions.h193 GTEST_COMPILE_ASSERT_(internal::is_reference<argk_type>::value, in ACTION_TEMPLATE()
H A Dgmock-matchers.h821 internal::is_reference<T>::value || !internal::is_reference<U>::value, in Cast()
/freebsd-13.1/contrib/googletest/googlemock/include/gmock/internal/
H A Dgmock-internal-utils.h371 template <typename T> struct is_reference : public false_type {};
372 template <typename T> struct is_reference<T&> : public true_type {};
/freebsd-13.1/contrib/llvm-project/libcxx/include/__iterator/
H A Dmove_iterator.h46 is_reference<__reference>::value,
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DErrorOr.h59 static constexpr bool isRef = std::is_reference<T>::value;
H A Draw_ostream.h404 std::enable_if_t<!std::is_reference<OStream>::value &&
H A DError.h476 static constexpr bool isRef = std::is_reference<T>::value;
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DFunctionExtras.h94 static_assert(!std::is_reference<T>::value,
/freebsd-13.1/contrib/llvm-project/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)> { };
944 = is_reference<_Tp>::value;
1011 !(is_reference<_Tp>::value || is_const<const _Tp>::value)
1134 !is_reference<_Tp>::value &&
3063 static_assert(is_reference<_To>::value, "Wrong specialization");
3075 static_assert(is_reference<_To>::value, "Wrong specialization");
3423 is_reference<_Tp>::value> {};
[all …]
H A Dtuple209 {static_assert(!is_reference<_Hp>::value,
216 {static_assert(!is_reference<_Hp>::value,
223 {static_assert(!is_reference<_Hp>::value,
230 {static_assert(!is_reference<_Hp>::value,
258 {static_assert(!is_reference<_Hp>::value,
265 {static_assert(!is_reference<_Hp>::value,
H A Dany643 static_assert(!is_reference<_ValueType>::value,
665 static_assert(!is_reference<_ValueType>::value,
H A Doptional286 template <class _Tp, bool = is_reference<_Tp>::value>
H A D__hash_table138 static_assert(!is_reference<_Tp>::value && !is_const<_Tp>::value, "");
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/orc/
H A Derror.h191 static constexpr bool IsRef = std::is_reference<T>::value;
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionDeclMap.cpp1571 bool is_reference = pt.IsReferenceType(); in AddOneVariable() local
1574 if (is_reference) in AddOneVariable()
1593 if (is_reference) in AddOneVariable()
/freebsd-13.1/contrib/llvm-project/libcxx/include/experimental/
H A Dpropagate_const142 static_assert(!is_reference<_Tp>::value,