Searched refs:is_lvalue_reference (Results 1 – 11 of 11) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/__type_traits/ |
H A D | is_reference.h | 24 struct _LIBCPP_TEMPLATE_VIS is_lvalue_reference : _BoolConstant<__is_lvalue_reference(_Tp)> {}; struct 44 struct _LIBCPP_TEMPLATE_VIS is_lvalue_reference : public false_type {}; 46 struct _LIBCPP_TEMPLATE_VIS is_lvalue_reference<_Tp&> : public true_type {}; 65 inline constexpr bool is_lvalue_reference_v = is_lvalue_reference<_Tp>::value;
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | SemaBase.h | 88 typename = std::enable_if_t<!std::is_lvalue_reference<T>::value>> 168 typename = std::enable_if_t<!std::is_lvalue_reference<T>::value>>
|
/freebsd/contrib/llvm-project/libcxx/include/__utility/ |
H A D | forward.h | 32 static_assert(!is_lvalue_reference<_Tp>::value, "cannot forward an rvalue as an lvalue"); in forward()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | PartialDiagnostic.h | 68 typename = std::enable_if_t<!std::is_lvalue_reference<T>::value>>
|
/freebsd/contrib/googletest/googlemock/include/gmock/ |
H A D | gmock-function-mocker.h | 58 typename std::conditional<std::is_lvalue_reference<Pattern>::value, 60 typename std::conditional<std::is_lvalue_reference<Pattern>::value, T&,
|
H A D | gmock-actions.h | 1702 static_assert(std::is_lvalue_reference<argk_type>::value,
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | type_traits.cppm |
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | type_traits | 40 template <class T> struct is_lvalue_reference; 257 = is_lvalue_reference<T>::value; // C++17
|
H A D | optional | 404 … (is_lvalue_reference<_Up>::value && is_convertible<_UpPtr, _TpPtr>::value) || 407 return (is_lvalue_reference<_Tp>::value && _CheckLValueArg::value) || 408 (is_rvalue_reference<_Tp>::value && !is_lvalue_reference<_Up>::value &&
|
/freebsd/contrib/llvm-project/libcxx/include/__memory/ |
H A D | shared_ptr.h | 624 __enable_if_t<!is_lvalue_reference<_Dp>::value && __compatible_with<_Yp, _Tp>::value && 645 __enable_if_t<is_lvalue_reference<_Dp>::value && __compatible_with<_Yp, _Tp>::value &&
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/ |
H A D | StdSymbolMap.inc | 1678 SYMBOL(is_lvalue_reference, std::, <type_traits>)
|