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

/art/runtime/
H A Dstack_map.h48 class DexRegisterLocation { class in namespace:art
102 "art::DexRegisterLocation::Kind has a size different from one byte.");
150 DexRegisterLocation() : kind_(Kind::kNone), value_(0) {} function in class:art::DexRegisterLocation::Kind
152 DexRegisterLocation(Kind kind, int32_t value) : kind_(kind), value_(value) {} function in class:art::DexRegisterLocation::Kind
154 static DexRegisterLocation None() {
155 return DexRegisterLocation(Kind::kNone, 0);
170 bool operator==(DexRegisterLocation other) const {
174 bool operator!=(DexRegisterLocation other) const {
185 std::ostream& operator<<(std::ostream& stream, const DexRegisterLocation::Kind& kind);
191 * [DexRegisterLocation
[all...]

Completed in 41 milliseconds