Searched refs:to_ (Results 1 – 5 of 5) sorted by relevance
27 int32_t to_; variable34 return lhs.to_ < rhs.to_;38 return lhs.from_ == rhs.from_ && lhs.to_ == rhs.to_;
226 int dex_pc = pc2dex.to_; in WriteCompilationUnit()
36 HEdge(HBasicBlock* from, HBasicBlock* to) : from_(from->GetBlockId()), to_(to->GetBlockId()) { in HEdge()37 DCHECK_NE(to_, kInvalidBlockId); in HEdge()40 HEdge(uint32_t from, uint32_t to) : from_(from), to_(to) { in HEdge()41 DCHECK_NE(to_, kInvalidBlockId); in HEdge()44 HEdge() : from_(kInvalidBlockId), to_(kInvalidBlockId) {} in HEdge()47 uint32_t GetTo() const { return to_; } in GetTo()50 return this->from_ == other.from_ && this->to_ == other.to_;58 bool IsValid() const { return from_ != kInvalidBlockId && to_ != kInvalidBlockId; } in IsValid()64 uint32_t to_; variable
33 stream << "(" << from_ << "->" << to_ << ")"; in Dump()
843 Edge(const RegType& from_, const RegType& to_) : from(from_), to(to_) {} in TEST_F()