Searched refs:type_ (Results 1 - 25 of 41) sorted by relevance

12

/art/runtime/mirror/
H A Demulated_stack_frame.h60 return GetFieldObject<MethodType>(OFFSET_OF_OBJECT_MEMBER(EmulatedStackFrame, type_));
91 return MemberOffset(OFFSETOF_MEMBER(EmulatedStackFrame, type_));
105 HeapReference<mirror::MethodType> type_; member in class:art::mirror::EmulatedStackFrame
H A Dfield.h77 return GetFieldObject<mirror::Class>(OFFSET_OF_OBJECT_MEMBER(Field, type_));
105 HeapReference<mirror::Class> type_; member in class:art::mirror::Field
H A Dfield-inl.h88 SetFieldObject<kTransactionActive>(OFFSET_OF_OBJECT_MEMBER(Field, type_), type);
/art/tools/veridex/
H A Dflow_analysis.h50 type_(nullptr) {}
52 : source_(source), value_(0), reference_(reference), type_(type) {}
58 : source_(source), value_(value), reference_(reference), type_(type) {}
62 const VeriClass* GetType() const { return type_; }
80 if (type_ == VeriClass::class_) {
102 const VeriClass* type_; member in class:art::RegisterValue
/art/runtime/
H A Dhidden_api.cc82 type_ = kField; member in namespace:art::hiddenapi
93 type_ = kMethod;
97 if (type_ == kField) {
100 DCHECK_EQ(type_, kMethod);
137 LOG(WARNING) << "Accessing hidden " << (type_ == kField ? "field " : "method ")
H A Dgc_root.h59 // Only used by hprof. thread_id_ and type_ are only used by hprof.
64 : type_(type), thread_id_(thread_id) {
70 return type_;
76 os << "Type=" << type_ << " thread_id=" << thread_id_;
81 const RootType type_; member in class:art::RootInfo
H A Dhidden_api.h130 MemberType type_; member in class:art::hiddenapi::detail::MemberSignature
H A Doat_file.h213 return type_;
255 const OatClassType type_; member in class:art::OatFile::FINAL
H A Doat_file.cc1863 : oat_file_(oat_file), status_(status), type_(type),
1865 switch (type_) {
1885 LOG(FATAL) << "Invalid OatClassType " << type_;
1902 CHECK_EQ(kOatClassNoneCompiled, type_);
1907 CHECK_EQ(kOatClassAllCompiled, type_);
1910 CHECK_EQ(kOatClassSomeCompiled, type_);
/art/compiler/linker/arm/
H A Drelative_patcher_arm_base.h52 : type_(type), custom_value1_(custom_value1), custom_value2_(custom_value2) { }
55 return type_;
67 ThunkType type_; member in class:art::linker::ArmBaseRelativePatcher::ThunkKey
/art/openjdkjvmti/
H A Dti_method.cc631 : found_(false), jslot_(slot), pc_(pc), descriptor_(out_descriptor), type_(out_type) {
633 *type_ = art::Primitive::kPrimVoid;
647 *type_ = art::Primitive::GetType(entry.descriptor_[0]);
657 art::Primitive::Type* type_; member in struct:openjdkjvmti::CommonLocalVariableClosure::GetLocalVariableInfoContext
688 type_(type),
693 if (result_ == OK && type_ == art::Primitive::kPrimNot) {
712 return type_ == art::Primitive::kPrimInt ? OK : ERR(TYPE_MISMATCH);
717 return type_ == slot_type ? OK : ERR(TYPE_MISMATCH);
726 switch (type_) {
743 type_
771 art::Primitive::Type type_; member in class:openjdkjvmti::GetLocalVariableClosure
905 art::Primitive::Type type_; member in class:openjdkjvmti::SetLocalVariableClosure
[all...]
/art/runtime/gc/space/
H A Dregion_space.h296 state_(RegionState::kRegionStateAllocated), type_(RegionType::kRegionTypeToSpace),
306 type_ = RegionType::kRegionTypeNone;
322 return type_;
393 return type_ == RegionType::kRegionTypeFromSpace;
397 return type_ == RegionType::kRegionTypeToSpace;
401 return type_ == RegionType::kRegionTypeUnevacFromSpace;
405 return type_ == RegionType::kRegionTypeNone;
413 type_ = RegionType::kRegionTypeFromSpace;
423 type_ = RegionType::kRegionTypeUnevacFromSpace;
431 type_
499 RegionType type_; // The region type (see RegionType). member in class:art::gc::space::FINAL::Region
[all...]
H A Dregion_space.cc568 << " type=" << type_
594 type_ = RegionType::kRegionTypeNone;
631 type_ = RegionType::kRegionTypeToSpace;
/art/compiler/optimizing/
H A Dinduction_var_analysis.cc239 type_(DataType::Type::kVoid),
323 type_ = scc_[0]->GetType();
431 type_));
492 induction = CreateInduction(kLinear, kNop, induction, initial, /*fetch*/ nullptr, type_);
534 type_);
541 type_);
578 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type_);
590 return CreateInduction(b->induction_class, b->operation, new_a, new_b, b->fetch, type_);
600 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type_);
620 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type_);
[all...]
H A Dssa_liveness_analysis.h616 return type_;
658 LiveInterval* new_interval = new (allocator_) LiveInterval(allocator_, type_);
790 return type_ == DataType::Type::kFloat32 || type_ == DataType::Type::kFloat64;
849 allocator_, type_, defined_by_, false, kNoRegister, is_temp, true);
991 type_(type),
1109 const DataType::Type type_; member in class:art::LiveInterval
/art/dexlayout/
H A Ddex_writer.h44 : type_(type), size_(size), offset_(offset) { }
51 uint32_t type_ = 0u; member in struct:art::MapItem
H A Ddex_ir.h700 : class_(klass), type_(type), name_(name) { size_ = kFieldIdItemSize; }
706 const TypeId* Type() const { return type_; }
713 const TypeId* type_; member in class:art::dex_ir::FieldId
785 explicit EncodedValue(uint8_t type) : type_(type) { }
787 int8_t Type() const { return type_; }
827 uint8_t type_; member in class:art::dex_ir::EncodedValue
871 : type_(type), elements_(elements) { }
873 TypeId* GetType() const { return type_; }
877 TypeId* type_; member in class:art::dex_ir::EncodedAnnotation
H A Ddex_ir_builder.cc115 switch (item->type_) {
/art/runtime/dex/
H A Ddex_file_annotations.cc42 uint8_t type_; member in struct:art::DexFile::AnnotationValue
414 annotation_value->type_ = value_type;
612 switch (new_annotation_value.type_) {
844 if (annotation_value.type_ != expected_type) {
1409 if (annotation_value.type_ != DexFile::kDexAnnotationMethod) {
1468 if (annotation_value.type_ != DexFile::kDexAnnotationNull &&
1469 annotation_value.type_ != DexFile::kDexAnnotationString) {
1501 if (annotation_value.type_ != DexFile::kDexAnnotationInt) {
1554 if (annotation_value.type_ != DexFile::kDexAnnotationString) {
1591 switch (type_) {
[all...]
/art/libdexfile/dex/
H A Ddex_file.cc191 if (map_item.type_ == kDexTypeMethodHandleItem) {
194 } else if (map_item.type_ == kDexTypeCallSiteIdItem) {
728 type_(kByte) {
743 type_ = static_cast<ValueType>(value_type & kEncodedValueTypeMask);
744 switch (type_) {
784 UNIMPLEMENTED(FATAL) << ": type " << type_;
H A Ddex_file_tracking_registrar.cc261 if (map_item.type_ == DexFile::kDexTypeStringDataItem) {
/art/test/ti-stress/
H A Dstress.cc304 type_(nullptr),
309 jvmtienv_->Deallocate(reinterpret_cast<unsigned char*>(type_));
317 declaring_class_, field_, &name_, &type_, &generic_) == JVMTI_ERROR_NONE);
333 return type_;
346 char* type_; member in class:art::ScopedFieldInfo
/art/dex2oat/linker/
H A Doat_writer.cc141 : type_(kZipEntry), source_(zip_entry) {
146 : type_(kRawFile), source_(raw_file) {
151 : type_(kRawData), source_(dex_file) {
155 Type GetType() const { return type_; }
156 bool IsZipEntry() const { return type_ == kZipEntry; }
157 bool IsRawFile() const { return type_ == kRawFile; }
158 bool IsRawData() const { return type_ == kRawData; }
179 type_ = kNone;
184 Type type_; member in class:art::linker::OatWriter::DexFileSource
202 type_
[all...]
/art/compiler/utils/mips64/
H A Dassembler_mips64.cc2333 type_ = (offset_size <= branch_info_[short_type].offset_size) ? short_type : long_type;
2346 type_ = initial_type;
2359 type_ = (offset_size_needed <= kOffset23) ? kCondBranch : kLongCondBranch;
2367 type_ = kBareCall;
2371 type_ = (condition_ == kUncond) ? kBareUncondBranch : kBareCondBranch;
2395 type_ = kR2BareCondBranch;
2398 old_type_ = type_;
2544 return type_;
2572 return branch_info_[type_].length;
2596 switch (type_) {
[all...]
/art/compiler/utils/mips/
H A Dassembler_mips.cc2894 type_ = (offset_size <= branch_info_[short_type].offset_size) ? short_type : long_type;
2904 type_ = kR6Label;
2908 type_ = kR6Literal;
2921 type_ = (offset_size_needed <= kOffset23) ? kR6CondBranch : kR6LongCondBranch;
2929 type_ = kR6BareCall;
2933 type_ = (condition_ == kUncond) ? kR6BareUncondBranch : kR6BareCondBranch;
2945 type_ = kLabel;
2949 type_ = kLiteral;
2965 type_ = kBareCall;
2969 type_
[all...]

Completed in 6423 milliseconds

12