Searched defs:value_type (Results 1 - 12 of 12) sorted by relevance

/art/compiler/utils/
H A Darena_containers.h91 typedef void value_type; typedef in class:art::ArenaAllocatorAdapter
126 typedef T value_type; typedef in class:art::ArenaAllocatorAdapter
170 new (static_cast<void*>(p)) value_type(val);
173 p->~value_type();
H A Darray_ref.h46 typedef T value_type; typedef in class:art::ArrayRef
162 value_type* data() { return array_; }
163 const value_type* data() const { return array_; }
H A Dscoped_arena_containers.h65 typedef void value_type; typedef in class:art::ScopedArenaAllocatorAdapter
104 typedef T value_type; typedef in class:art::ScopedArenaAllocatorAdapter
154 new (static_cast<void*>(p)) value_type(val);
158 p->~value_type();
/art/runtime/base/
H A Dallocator.h96 typedef typename std::allocator<T>::value_type value_type; typedef in class:art::TrackingAllocatorImpl
H A Dstringpiece.h125 typedef char value_type; typedef in class:art::StringPiece
/art/runtime/
H A Dsafe_map.h44 typedef typename ::std::map<K, V, Comparator, Allocator>::value_type value_type; typedef in class:art::SafeMap
H A Ddex_file.cc1139 byte value_type = *ptr_++; local
1140 byte value_arg = value_type >> kEncodedValueArgShift;
1142 type_ = static_cast<ValueType>(value_type & kEncodedValueTypeMask);
H A Ddex_file_verifier.cc527 uint32_t value_type = header_byte & DexFile::kDexAnnotationValueTypeMask; local
530 switch (value_type) {
634 ErrorStringPrintf("Bogus encoded_value value_type %x", value_type);
/art/compiler/optimizing/
H A Dcode_generator_arm.cc1344 Primitive::Type value_type = instruction->InputAt(2)->GetType(); local
1345 if (value_type == Primitive::kPrimNot) {
1363 Primitive::Type value_type = instruction->InputAt(2)->GetType(); local
1365 switch (value_type) {
H A Dcode_generator_x86.cc1335 Primitive::Type value_type = instruction->InputAt(2)->GetType(); local
1336 if (value_type == Primitive::kPrimNot) {
1345 if (value_type == Primitive::kPrimBoolean || value_type == Primitive::kPrimByte) {
1360 Primitive::Type value_type = instruction->InputAt(2)->GetType(); local
1362 switch (value_type) {
H A Dcode_generator_x86_64.cc1177 Primitive::Type value_type = instruction->InputAt(2)->GetType(); local
1178 if (value_type == Primitive::kPrimNot) {
1196 Primitive::Type value_type = instruction->InputAt(2)->GetType(); local
1198 switch (value_type) {
/art/runtime/verifier/
H A Dmethod_verifier.cc3518 RegType& value_type = work_line_->GetRegisterType(vregA); local
3521 value_compatible = value_type.IsIntegralTypes();
3524 value_compatible = value_type.IsFloatTypes();
3531 value_compatible = value_type.IsLongTypes() && value_type.CheckWidePair(value_type_hi);
3541 value_compatible = value_type.IsDoubleTypes() && value_type.CheckWidePair(value_type_hi);
3559 << " of type " << value_type << " but expected " << target_type << " for put";
3924 RegType& value_type = work_line_->GetRegisterType(vregA); local
3927 value_compatible = value_type
[all...]

Completed in 2326 milliseconds