Home
last modified time | relevance | path

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

123456

/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.comp/
Dis_reference.pass.cpp21 static_assert( std::is_reference<T>::value, ""); in test_is_reference()
22 static_assert( std::is_reference<const T>::value, ""); in test_is_reference()
23 static_assert( std::is_reference<volatile T>::value, ""); in test_is_reference()
24 static_assert( std::is_reference<const volatile T>::value, ""); in test_is_reference()
36 static_assert(!std::is_reference<T>::value, ""); in test_is_not_reference()
37 static_assert(!std::is_reference<const T>::value, ""); in test_is_not_reference()
38 static_assert(!std::is_reference<volatile T>::value, ""); in test_is_not_reference()
39 static_assert(!std::is_reference<const volatile T>::value, ""); in test_is_not_reference()
Drvalue_ref.pass.cpp21 static_assert( std::is_reference<T>::value, ""); in test_rvalue_ref()
Dlvalue_ref.pass.cpp19 static_assert( std::is_reference<T>::value, ""); in test_lvalue_ref()
Dvoid.pass.cpp19 static_assert(!std::is_reference<T>::value, ""); in test_void_imp()
Dfloating_point.pass.cpp19 static_assert(!std::is_reference<T>::value, ""); in test_floating_point_imp()
Dmember_object_pointer.pass.cpp19 static_assert(!std::is_reference<T>::value, ""); in test_member_object_pointer_imp()
Dfunction.pass.cpp19 static_assert(!std::is_reference<T>::value, ""); in test_function_imp()
Dunion.pass.cpp19 static_assert(!std::is_reference<T>::value, ""); in test_union_imp()
Denum.pass.cpp19 static_assert(!std::is_reference<T>::value, ""); in test_enum_imp()
/external/llvm-project/libcxx/test/std/utilities/meta/meta.unary/meta.unary.comp/
Dis_reference.pass.cpp20 static_assert( std::is_reference<T>::value, ""); in test_is_reference()
21 static_assert( std::is_reference<const T>::value, ""); in test_is_reference()
22 static_assert( std::is_reference<volatile T>::value, ""); in test_is_reference()
23 static_assert( std::is_reference<const volatile T>::value, ""); in test_is_reference()
35 static_assert(!std::is_reference<T>::value, ""); in test_is_not_reference()
36 static_assert(!std::is_reference<const T>::value, ""); in test_is_not_reference()
37 static_assert(!std::is_reference<volatile T>::value, ""); in test_is_not_reference()
38 static_assert(!std::is_reference<const volatile T>::value, ""); in test_is_not_reference()
Dlvalue_ref.pass.cpp20 static_assert( std::is_reference<T>::value, ""); in test_lvalue_ref()
Drvalue_ref.pass.cpp20 static_assert( std::is_reference<T>::value, ""); in test_rvalue_ref()
Dvoid.pass.cpp20 static_assert(!std::is_reference<T>::value, ""); in test_void_imp()
Dfloating_point.pass.cpp20 static_assert(!std::is_reference<T>::value, ""); in test_floating_point_imp()
Dmember_object_pointer.pass.cpp20 static_assert(!std::is_reference<T>::value, ""); in test_member_object_pointer_imp()
Dfunction.pass.cpp20 static_assert(!std::is_reference<T>::value, ""); in test_function_imp()
Denum.pass.cpp20 static_assert(!std::is_reference<T>::value, ""); in test_enum_imp()
Dpointer.pass.cpp20 static_assert(!std::is_reference<T>::value, ""); in test_pointer_imp()
Dunion.pass.cpp20 static_assert(!std::is_reference<T>::value, ""); in test_union_imp()
/external/llvm-project/llvm/test/tools/dsymutil/X86/
Dmodules-pruning.cpp41 template <class T> struct is_reference : false_type {}; struct
42 template <class T> struct is_reference<T&> : true_type {}; struct
47 static const bool isRef = is_reference<T>::value;
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dtree_iterator.h40 !std::is_reference<NodeTy>::value,
134 !std::is_reference<NodeTy>::value,
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/
Dtree_iterator.h40 !std::is_reference<NodeTy>::value,
134 !std::is_reference<NodeTy>::value,
/external/deqp-deps/SPIRV-Tools/source/opt/
Dtree_iterator.h40 !std::is_reference<NodeTy>::value,
134 !std::is_reference<NodeTy>::value,
/external/clang/test/Analysis/Inputs/
Dsystem-header-simulator-cxx.h140 template <class _Tp> struct is_reference : public false_type {};
141 template <class _Tp> struct is_reference<_Tp&> : public true_type {};
146 template <class _Tp, bool = is_const<_Tp>::value || is_reference<_Tp>::value >
/external/libchrome/base/memory/
Draw_scoped_refptr_mismatch_checker.h36 static_assert(!std::is_reference<T>::value,

123456