HomeSort by relevance Sort by last modified time
    Searched full:is_volatile (Results 1 - 25 of 70) sorted by null

1 2 3

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/
is_volatile.hpp 12 // Fixed is_pointer, is_reference, is_const, is_volatile, is_same,
49 BOOST_STATIC_CONSTANT(bool, value = ::boost::detail::cv_traits_imp<typename boost::remove_bounds<T>::type*>::is_volatile);
51 BOOST_STATIC_CONSTANT(bool, value = ::boost::detail::cv_traits_imp<T*>::is_volatile);
68 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_volatile,T,__is_volatile(T))
71 //* is a type T declared volatile - is_volatile<T>
72 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_volatile,T,::boost::detail::is_volatile_rval_filter<T>::value)
73 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_volatile,T&,false)
80 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_volatile,T& const,false)
81 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_volatile,T& volatile,false)
82 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_volatile,T& const volatile,false
    [all...]
cv_traits.hpp 10 // is_const, is_volatile, remove_const, remove_volatile, remove_cv.
19 #include <boost/type_traits/is_volatile.hpp>
intrinsics.hpp 89 # define BOOST_HAS_TRIVIAL_COPY(T) (__has_trivial_copy(T)|| ( ::boost::is_pod<T>::value && !::boost::is_volatile<T>::value))
90 # define BOOST_HAS_TRIVIAL_ASSIGN(T) (__has_trivial_assign(T) || ( ::boost::is_pod<T>::value && ! ::boost::is_const<T>::value && !::boost::is_volatile<T>::value))
130 # include <boost/type_traits/is_volatile.hpp>
145 # define BOOST_HAS_TRIVIAL_COPY(T) (__has_trivial_copy(T) && !is_reference<T>::value && !is_volatile<T>::value)
148 # define BOOST_HAS_TRIVIAL_ASSIGN(T) (__has_trivial_assign(T) && !is_volatile<T>::value)
157 # define BOOST_HAS_NOTHROW_COPY(T) (__has_nothrow_copy(T) && !is_volatile<T>::value && !is_reference<T>::value)
160 # define BOOST_HAS_NOTHROW_ASSIGN(T) (__has_nothrow_assign(T) && !is_volatile<T>::value)
192 # include <boost/type_traits/is_volatile.hpp>
203 # define BOOST_HAS_TRIVIAL_CONSTRUCTOR(T) ((__has_trivial_constructor(T) BOOST_INTEL_TT_OPTS) && ! ::boost::is_volatile<T>::value)
204 # define BOOST_HAS_TRIVIAL_COPY(T) ((__has_trivial_copy(T) BOOST_INTEL_TT_OPTS) && !is_reference<T>::value && ! ::boost::is_volatile<T>::value
    [all...]
has_trivial_copy.hpp 14 #include <boost/type_traits/is_volatile.hpp>
36 ::boost::type_traits::ice_not< ::boost::is_volatile<T>::value >::value
remove_const.hpp 14 #include <boost/type_traits/is_volatile.hpp>
53 , ::boost::is_volatile<T>::value
make_unsigned.hpp 20 #include <boost/type_traits/is_volatile.hpp>
121 is_volatile<T>,
is_lvalue_reference.hpp 12 // Fixed is_pointer, is_lvalue_reference, is_const, is_volatile, is_same,
is_member_pointer.hpp 12 // Fixed is_pointer, is_reference, is_const, is_volatile, is_same,
is_pointer.hpp 12 // Fixed is_pointer, is_reference, is_const, is_volatile, is_same,
is_same.hpp 12 // Fixed is_pointer, is_reference, is_const, is_volatile, is_same,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/
is_volatile.pass.cpp 12 // is_volatile
19 static_assert(!std::is_volatile<T>::value, "");
20 static_assert(!std::is_volatile<const T>::value, "");
21 static_assert( std::is_volatile<volatile T>::value, "");
22 static_assert( std::is_volatile<const volatile T>::value, "");
35 static_assert(!std::is_volatile<int&>::value, "");
36 static_assert(!std::is_volatile<volatile int&>::value, "");
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/detail/
cv_traits_impl.hpp 38 BOOST_STATIC_CONSTANT(bool, is_volatile = false);
46 BOOST_STATIC_CONSTANT(bool, is_volatile = false);
54 BOOST_STATIC_CONSTANT(bool, is_volatile = true);
62 BOOST_STATIC_CONSTANT(bool, is_volatile = true);
86 BOOST_STATIC_CONSTANT(bool, is_volatile = false);
  /art/runtime/mirror/
object.h 176 T GetFieldObject(MemberOffset field_offset, bool is_volatile) const {
177 T result = reinterpret_cast<T>(GetField32(field_offset, is_volatile));
182 void SetFieldObject(MemberOffset field_offset, const Object* new_value, bool is_volatile,
185 SetField32(field_offset, reinterpret_cast<uint32_t>(new_value), is_volatile, this_is_valid);
192 uint32_t GetField32(MemberOffset field_offset, bool is_volatile) const {
196 if (UNLIKELY(is_volatile)) {
203 void SetField32(MemberOffset field_offset, uint32_t new_value, bool is_volatile,
210 if (UNLIKELY(is_volatile)) {
224 uint64_t GetField64(MemberOffset field_offset, bool is_volatile) const;
226 void SetField64(MemberOffset field_offset, uint64_t new_value, bool is_volatile);
    [all...]
object-inl.h 241 inline uint64_t Object::GetField64(MemberOffset field_offset, bool is_volatile) const {
245 if (UNLIKELY(is_volatile)) {
254 inline void Object::SetField64(MemberOffset field_offset, uint64_t new_value, bool is_volatile) {
258 if (UNLIKELY(is_volatile)) {
  /external/clang/test/SemaTemplate/
temp_class_spec.cpp 52 struct is_volatile { struct
57 struct is_volatile<volatile T> { struct
61 int is_volatile0[is_volatile<int>::value? -1 : 1];
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];
  /art/compiler/dex/quick/
gen_invoke.cc     [all...]
gen_common.cc 337 bool is_volatile; local
341 is_referrers_class, is_volatile, true);
393 if (is_volatile) {
402 if (is_volatile) {
423 bool is_volatile; local
427 is_referrers_class, is_volatile, false);
470 if (is_volatile) {
627 bool is_volatile; local
629 bool fast_path = FastInstance(field_idx, field_offset, is_volatile, false);
644 if (is_volatile) {
688 bool is_volatile; local
    [all...]
  /art/compiler/dex/
dex_to_dex_compiler.cc 218 bool is_volatile; local
220 is_volatile, is_put);
221 if (fast_path && !is_volatile && IsUint(16, field_offset)) {
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/tr1_impl/
type_traits 315 /// is_volatile
317 struct is_volatile
321 struct is_volatile<_Tp volatile>
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
type_traits 315 /// is_volatile
317 struct is_volatile
321 struct is_volatile<_Tp volatile>
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
type_traits 315 /// is_volatile
317 struct is_volatile
321 struct is_volatile<_Tp volatile>
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
type_traits 315 /// is_volatile
317 struct is_volatile
321 struct is_volatile<_Tp volatile>
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/tr1_impl/
type_traits 315 /// is_volatile
317 struct is_volatile
321 struct is_volatile<_Tp volatile>
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/tr1/
type_traits 319 /// is_volatile
321 struct is_volatile
325 struct is_volatile<_Tp volatile>
616 && !is_volatile<__rr_Tp>::value));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/tr1/
type_traits 319 /// is_volatile
321 struct is_volatile
325 struct is_volatile<_Tp volatile>
616 && !is_volatile<__rr_Tp>::value));

Completed in 337 milliseconds

1 2 3