Home
last modified time | relevance | path

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

/art/compiler/debug/
Dsrc_map_elem.h27 int32_t to_; variable
34 return lhs.to_ < rhs.to_;
38 return lhs.from_ == rhs.from_ && lhs.to_ == rhs.to_;
Delf_debug_line_writer.h224 int dex_pc = pc2dex.to_; in WriteCompilationUnit()
/art/compiler/optimizing/
Dsuperblock_cloner.h37 HEdge(HBasicBlock* from, HBasicBlock* to) : from_(from->GetBlockId()), to_(to->GetBlockId()) { in HEdge()
38 DCHECK_NE(to_, kInvalidBlockId); in HEdge()
41 HEdge(uint32_t from, uint32_t to) : from_(from), to_(to) { in HEdge()
42 DCHECK_NE(to_, kInvalidBlockId); in HEdge()
45 HEdge() : from_(kInvalidBlockId), to_(kInvalidBlockId) {} in HEdge()
48 uint32_t GetTo() const { return to_; } in GetTo()
51 return this->from_ == other.from_ && this->to_ == other.to_;
59 bool IsValid() const { return from_ != kInvalidBlockId && to_ != kInvalidBlockId; } in IsValid()
65 uint32_t to_; variable
Dsuperblock_cloner.cc33 stream << "(" << from_ << "->" << to_ << ")"; in Dump()
/art/runtime/verifier/
Dreg_type_test.cc857 Edge(const RegType& from_, const RegType& to_) : from(from_), to(to_) {} in TEST_F()