Searched defs:type_ (Results 1 - 8 of 8) sorted by relevance

/art/runtime/
H A Dgc_root.h50 : type_(type), thread_id_(thread_id) {
55 return type_;
61 os << "Type=" << type_ << " thread_id=" << thread_id_;
65 const RootType type_; member in class:art::RootInfo
H A Doat_file.h180 return type_;
213 OatClassType type_; member in class:art::OatFile::OatClass
H A Ddex_file.h129 uint16_t type_; member in struct:art::DexFile::MapItem
1316 ValueType type_; // Type of current encoded value. member in class:art::EncodedStaticFieldValueIterator
H A Ddebugger.cc137 AllocRecord() : type_(nullptr), byte_count_(0), thin_lock_id_(0) {}
140 return down_cast<mirror::Class*>(Thread::Current()->DecodeJObject(type_));
145 type_ = Dbg::type_cache_.Add(t);
178 jobject type_; // This is a weak global. member in class:art::AllocRecord
4166 type_(0),
4171 type_ = CHUNK_TYPE("NHSG");
4173 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
4220 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
4260 bool native = type_ == CHUNK_TYPE("NHSG");
4382 uint32_t type_; member in class:art::HeapChunkContext
[all...]
/art/compiler/utils/arm/
H A Dassembler_thumb2.h506 assembler_(assembler), type_(type), location_(location),
515 assembler_(assembler), type_(type), location_(location),
524 assembler_(assembler), type_(type), location_(location),
532 return type_ == kCompareAndBranchNonZero || type_ == kCompareAndBranchZero;
585 return type_;
601 type_ = type;
620 if (assembler_->IsForced32Bit() && (type_ == kUnconditional || type_ == kConditional)) {
629 switch (type_) {
661 Type type_; member in class:art::arm::FINAL::Branch
[all...]
H A Dassembler_arm.h34 ShifterOperand() : type_(kUnknown), rm_(kNoRegister), rs_(kNoRegister),
41 explicit ShifterOperand(Register rm) : type_(kRegister), rm_(rm), rs_(kNoRegister),
45 ShifterOperand(uint32_t rotate, uint32_t immed8) : type_(kImmediate), rm_(kNoRegister),
50 ShifterOperand(Register rm, Shift shift, uint32_t shift_imm = 0) : type_(kRegister), rm_(rm),
56 ShifterOperand(Register rm, Shift shift, Register rs) : type_(kRegister), rm_(rm),
61 bool is_valid() const { return (type_ == kImmediate) || (type_ == kRegister); }
65 return type_;
72 return type_ == kUnknown;
76 return type_
133 Type type_; member in class:art::arm::ShifterOperand
[all...]
/art/compiler/optimizing/
H A Dssa_liveness_analysis.h141 type_(type),
330 return type_;
353 LiveInterval* new_interval = new (allocator_) LiveInterval(allocator_, type_);
441 const Primitive::Type type_; member in class:art::LiveInterval
H A Dnodes.h799 explicit HExpression<N>(Primitive::Type type) : type_(type) {}
802 virtual Primitive::Type GetType() const { return type_; }
805 const Primitive::Type type_; member in class:art::HExpression
1270 type_(type),
1284 virtual Primitive::Type GetType() const { return type_; }
1285 void SetType(Primitive::Type type) { type_ = type; }
1299 Primitive::Type type_; member in class:art::HPhi

Completed in 541 milliseconds