/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,
|
/external/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/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/ |
transaction.cc | 61 bool is_volatile) { 65 object_log.Log32BitsValue(field_offset, value, is_volatile); 69 bool is_volatile) { 73 object_log.Log64BitsValue(field_offset, value, is_volatile); 77 mirror::Object* value, bool is_volatile) { 81 object_log.LogReferenceValue(field_offset, value, is_volatile); 226 void Transaction::ObjectLog::Log32BitsValue(MemberOffset offset, uint32_t value, bool is_volatile) { 231 field_value.is_volatile = is_volatile; 237 void Transaction::ObjectLog::Log64BitsValue(MemberOffset offset, uint64_t value, bool is_volatile) { [all...] |
transaction.h | 46 bool is_volatile) 49 bool is_volatile) 52 mirror::Object* value, bool is_volatile) 86 void Log32BitsValue(MemberOffset offset, uint32_t value, bool is_volatile); 87 void Log64BitsValue(MemberOffset offset, uint64_t value, bool is_volatile); 88 void LogReferenceValue(MemberOffset offset, mirror::Object* obj, bool is_volatile); 107 bool is_volatile; member in struct:art::Transaction::ObjectLog::FieldValue
|
/art/compiler/dex/ |
mir_field_info.cc | 64 bool is_volatile = compiler_driver->IsFieldVolatile(resolved_field); local 69 (is_volatile ? kFlagIsVolatile : 0u) | 111 bool is_volatile = compiler_driver->IsFieldVolatile(resolved_field) ? 1u : 0u; local 118 (is_volatile ? kFlagIsVolatile : 0u) |
|
dex_to_dex_compiler.cc | 212 bool is_volatile; local 214 &field_offset, &is_volatile); 215 if (fast_path && !is_volatile && IsUint(16, field_offset.Int32Value())) {
|
/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/mips/ |
utility_mips.cc | 553 OpSize size, VolatileKind is_volatile) { 554 if (UNLIKELY(is_volatile == kVolatile && (size == k64 || size == kDouble))) { 566 if (UNLIKELY(is_volatile == kVolatile)) { 656 OpSize size, VolatileKind is_volatile) { 657 if (is_volatile == kVolatile) { 663 if (UNLIKELY(is_volatile == kVolatile && (size == k64 || size == kDouble))) { 674 if (UNLIKELY(is_volatile == kVolatile)) {
|
codegen_mips.h | 36 OpSize size, VolatileKind is_volatile) OVERRIDE; 42 OpSize size, VolatileKind is_volatile) OVERRIDE; 84 RegisterClass RegClassForFieldLoadStore(OpSize size, bool is_volatile) OVERRIDE;
|
/art/compiler/dex/quick/arm/ |
codegen_arm.h | 36 OpSize size, VolatileKind is_volatile) OVERRIDE; 42 OpSize size, VolatileKind is_volatile) OVERRIDE; 84 RegisterClass RegClassForFieldLoadStore(OpSize size, bool is_volatile) OVERRIDE;
|
/art/compiler/dex/quick/arm64/ |
codegen_arm64.h | 76 OpSize size, VolatileKind is_volatile) OVERRIDE; 78 VolatileKind is_volatile) OVERRIDE; 86 VolatileKind is_volatile) OVERRIDE; 87 LIR* StoreRefDisp(RegStorage r_base, int displacement, RegStorage r_src, VolatileKind is_volatile) 137 RegisterClass RegClassForFieldLoadStore(OpSize size, bool is_volatile) OVERRIDE;
|
/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>
|