Searched refs:to_ (Results 1 - 5 of 5) sorted by relevance

/art/compiler/debug/
H A Dsrc_map_elem.h27 int32_t to_; member in class:art::SrcMapElem
34 return lhs.to_ < rhs.to_;
38 return lhs.from_ == rhs.from_ && lhs.to_ == rhs.to_;
H A Delf_debug_line_writer.h231 int dex_pc = pc2dex.to_;
/art/compiler/optimizing/
H A Dsuperblock_cloner.h35 HEdge(HBasicBlock* from, HBasicBlock* to) : from_(from->GetBlockId()), to_(to->GetBlockId()) {
36 DCHECK_NE(to_, kInvalidBlockId);
39 HEdge(uint32_t from, uint32_t to) : from_(from), to_(to) {
40 DCHECK_NE(to_, kInvalidBlockId);
43 HEdge() : from_(kInvalidBlockId), to_(kInvalidBlockId) {}
46 uint32_t GetTo() const { return to_; }
49 return this->from_ == other.from_ && this->to_ == other.to_;
56 // has to_ block as a successor.
57 bool IsValid() const { return from_ != kInvalidBlockId && to_ !
63 uint32_t to_; member in class:art::HEdge
[all...]
H A Dsuperblock_cloner.cc32 stream << "(" << from_ << "->" << to_ << ")"; local
/art/runtime/verifier/
H A Dreg_type_test.cc843 Edge(const RegType& from_, const RegType& to_) : from(from_), to(to_) {} argument

Completed in 154 milliseconds