Searched refs:__libcpp_is_referenceable (Results  1 – 8 of 8) sorted by relevance
| /external/cronet/buildtools/third_party/libc++/trunk/test/libcxx/utilities/meta/ | 
| D | is_referenceable.pass.cpp | 24 static_assert((!std::__libcpp_is_referenceable<void>::value), ""); 25 static_assert((std::__libcpp_is_referenceable<int>::value), ""); 26 static_assert((std::__libcpp_is_referenceable<int[3]>::value), ""); 27 static_assert((std::__libcpp_is_referenceable<int[]>::value), ""); 28 static_assert((std::__libcpp_is_referenceable<int&>::value), ""); 29 static_assert((std::__libcpp_is_referenceable<const int&>::value), ""); 30 static_assert((std::__libcpp_is_referenceable<int*>::value), ""); 31 static_assert((std::__libcpp_is_referenceable<const int*>::value), ""); 32 static_assert((std::__libcpp_is_referenceable<Foo>::value), ""); 33 static_assert((std::__libcpp_is_referenceable<const Foo>::value), ""); [all …] 
 | 
| /external/cronet/buildtools/third_party/libc++/trunk/test/std/utilities/meta/meta.trans/ | 
| D | objc_support.compile.pass.mm | 36 // __libcpp_is_referenceable 37 LIBCPP_STATIC_ASSERT(std::__libcpp_is_referenceable<id>::value, ""); 38 LIBCPP_STATIC_ASSERT(std::__libcpp_is_referenceable<id*>::value, ""); 39 LIBCPP_STATIC_ASSERT(std::__libcpp_is_referenceable<id&>::value, ""); 40 LIBCPP_STATIC_ASSERT(std::__libcpp_is_referenceable<id&&>::value, ""); 41 LIBCPP_STATIC_ASSERT(std::__libcpp_is_referenceable<I>::value, ""); 42 LIBCPP_STATIC_ASSERT(std::__libcpp_is_referenceable<I*>::value, ""); 43 LIBCPP_STATIC_ASSERT(std::__libcpp_is_referenceable<I&>::value, ""); 44 LIBCPP_STATIC_ASSERT(std::__libcpp_is_referenceable<I&&>::value, "");
  | 
| /external/cronet/buildtools/third_party/libc++/trunk/include/__type_traits/ | 
| D | is_referenceable.h | 24 struct __libcpp_is_referenceable : integral_constant<bool, __is_referenceable(_Tp)> {};  struct 34 struct __libcpp_is_referenceable
  | 
| D | is_swappable.h | 122         __libcpp_is_referenceable<_Tp>::value, 140         __libcpp_is_referenceable<_Tp>::value,
  | 
| D | add_rvalue_reference.h | 28 template <class _Tp, bool = __libcpp_is_referenceable<_Tp>::value>
  | 
| D | add_lvalue_reference.h | 28 template <class _Tp, bool = __libcpp_is_referenceable<_Tp>::value>
  | 
| D | add_pointer.h | 32           bool = __libcpp_is_referenceable<_Tp>::value || is_void<_Tp>::value>
  | 
| D | decay.h | 65   typedef _LIBCPP_NODEBUG typename __decay<_Up, __libcpp_is_referenceable<_Up>::value>::type type;
  |