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

/art/runtime/verifier/
H A Dverify_mode.h27 kNone, // Everything is assumed verified. member in class:art::verifier::VerifyMode
/art/runtime/
H A Dexperimental_flags.h28 kNone = 0x0000, enumerator in enum:art::ExperimentalFlags::__anon94
33 constexpr ExperimentalFlags(decltype(kNone) t) : value_(static_cast<uint32_t>(t)) {}
35 constexpr operator decltype(kNone)() const {
36 return static_cast<decltype(kNone)>(value_);
40 return value_ != kNone;
43 constexpr ExperimentalFlags operator|(const decltype(kNone)& b) const {
44 return static_cast<decltype(kNone)>(value_ | static_cast<uint32_t>(b));
47 return static_cast<decltype(kNone)>(value_ | b.value_);
51 return static_cast<decltype(kNone)>(value_ & b.value_);
53 constexpr ExperimentalFlags operator&(const decltype(kNone)
[all...]
H A Dstack_map.h69 * - kNone: the register has no location, meaning it has not been set.
95 kNone = static_cast<uint8_t>(-1), member in class:art::DexRegisterLocation::Kind
118 case Kind::kNone:
143 case Kind::kNone:
150 DexRegisterLocation() : kind_(Kind::kNone), value_(0) {}
155 return DexRegisterLocation(Kind::kNone, 0);
259 return DexRegisterLocation::Kind::kNone;
320 case DexRegisterLocation::Kind::kNone:
344 case DexRegisterLocation::Kind::kNone:
370 // mapped to a DexRegisterLocation::Kind::kNone locatio
[all...]
/art/compiler/
H A Doat_writer.cc132 type_ = kNone;
138 kNone, enumerator in enum:art::OatWriter::DexFileSource::Type
/art/runtime/arch/
H A Dinstruction_set.h28 kNone, enumerator in enum:art::InstructionSet
52 static constexpr InstructionSet kRuntimeISA = kNone;
80 // Note: Returns kNone when the string cannot be parsed to a known value.
101 case kNone:
102 LOG(FATAL) << "ISA kNone does not have pointer size.";
120 case kNone:
141 case kNone:
142 LOG(FATAL) << "ISA kNone does not have bit width.";
170 case kNone:
171 LOG(FATAL) << "ISA kNone doe
[all...]
/art/compiler/optimizing/
H A Dnodes.h3666 kNone, member in class:art::HTryBoundary::HClassTableGet::ComparisonBias::Intrinsics
3733 return intrinsic_ != Intrinsics::kNone && intrinsic_ == other->AsInvoke()->intrinsic_;
3744 bool IsIntrinsic() const { return intrinsic_ != Intrinsics::kNone; }
3776 intrinsic_(Intrinsics::kNone),
3833 kNone, // Class already initialized. member in class:art::HTryBoundary::HClassTableGet::ComparisonBias::HInvokeStaticOrDirect::ClinitCheckRequirement

Completed in 236 milliseconds