Home
last modified time | relevance | path

Searched refs:is_volatile (Results 1 – 13 of 13) sorted by relevance

/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/
Dis_volatile.pass.cpp19 static_assert(!std::is_volatile<T>::value, ""); in test_is_volatile()
20 static_assert(!std::is_volatile<const T>::value, ""); in test_is_volatile()
21 static_assert( std::is_volatile<volatile T>::value, ""); in test_is_volatile()
22 static_assert( std::is_volatile<const volatile T>::value, ""); in test_is_volatile()
35 static_assert(!std::is_volatile<int&>::value, ""); in main()
36 static_assert(!std::is_volatile<volatile int&>::value, ""); in main()
/external/clang/test/SemaTemplate/
Dtemp_class_spec.cpp52 struct is_volatile { struct
57 struct is_volatile<volatile T> { struct
61 int is_volatile0[is_volatile<int>::value? -1 : 1]; argument
62 int is_volatile1[is_volatile<volatile int>::value? 1 : -1];
63 int is_volatile2[is_volatile<const volatile int>::value? 1 : -1];
64 int is_volatile3[is_volatile<volatile char[3]>::value? 1 : -1];
/external/webrtc/webrtc/modules/rtp_rtcp/source/
Drtcp_sender.h275 void SetFlag(RTCPPacketType type, bool is_volatile)
277 void SetFlags(const std::set<RTCPPacketType>& types, bool is_volatile)
286 ReportFlag(RTCPPacketType type, bool is_volatile) in ReportFlag()
287 : type(type), is_volatile(is_volatile) {} in ReportFlag()
291 const bool is_volatile; member
Drtcp_sender.cc824 if (it->is_volatile) { in SendCompoundRTCP()
1011 void RTCPSender::SetFlag(RTCPPacketType type, bool is_volatile) { in SetFlag() argument
1012 report_flags_.insert(ReportFlag(type, is_volatile)); in SetFlag()
1016 bool is_volatile) { in SetFlags() argument
1018 SetFlag(type, is_volatile); in SetFlags()
1029 if (it->is_volatile || forced) in ConsumeFlag()
1036 if (flag.is_volatile) in AllVolatileFlagsConsumed()
/external/opencv3/modules/cudev/include/opencv2/cudev/util/
Dtype_traits.hpp137 enum { is_volatile = type_traits_detail::UnVolatile<T>::value }; enumerator
/external/skia/include/private/
DSkTLogic.h103 using type = skstd::conditional_t<std::is_volatile<S>::value, skstd::add_volatile_t<D>, D>;
/external/libcxx/test/std/experimental/utilities/meta/meta.type.synop/
Dmeta.unary.prop.pass.cpp55 static_assert(ex::is_volatile_v<T> == std::is_volatile<T>::value, ""); in type_properties_test()
60 static_assert(ex::is_volatile_v<T> == std::is_volatile<T>::value, ""); in type_properties_test()
/external/libcxx/include/experimental/
Dtype_traits74 = is_volatile<T>::value;
268 = is_volatile<_Tp>::value;
/external/libcxx/include/
Dtype_traits61 template <class T> struct is_volatile;
285 // is_volatile
287 template <class _Tp> struct _LIBCPP_TYPE_VIS_ONLY is_volatile : public false_type {};
288 template <class _Tp> struct _LIBCPP_TYPE_VIS_ONLY is_volatile<_Tp volatile> : public true_type {};
588 is_volatile<_Tp>::value >
917 || is_volatile<typename remove_reference<_T2>::type>::value)
1352 bool = is_volatile<typename remove_reference<_Tp>::type>::value>
3297 : public integral_constant<bool, !is_volatile<_Tp>::value && __is_trivially_copyable(_Tp)>
/external/llvm/test/Bindings/OCaml/
Dcore.ml1378 insist(true = is_volatile load);
1384 insist(true = is_volatile store);
/external/llvm/bindings/ocaml/llvm/
Dllvm.ml1039 external is_volatile : llvalue -> bool = "llvm_is_volatile"
Dllvm.mli1796 (** [is_volatile i] is [true] if the load or store instruction [i] is marked
1800 val is_volatile : llvalue -> bool val
/external/clang/test/SemaCXX/
Dtype-traits.cpp958 void is_volatile() in is_volatile() function