Searched refs:kNone (Results 1 - 25 of 55) sorted by relevance

123

/art/runtime/
H A Dexperimental_flags.h28 kNone = 0x0000, enumerator in enum:art::ExperimentalFlags::__anon101
33 constexpr ExperimentalFlags(decltype(kNone) t) // NOLINT, implicit
36 constexpr operator decltype(kNone)() const {
37 return static_cast<decltype(kNone)>(value_);
41 return value_ != kNone;
44 constexpr ExperimentalFlags operator|(const decltype(kNone)& b) const {
45 return static_cast<decltype(kNone)>(value_ | static_cast<uint32_t>(b));
48 return static_cast<decltype(kNone)>(value_ | b.value_);
52 return static_cast<decltype(kNone)>(value_ & b.value_);
54 constexpr ExperimentalFlags operator&(const decltype(kNone)
[all...]
H A Dcheck_reference_map_visitor.h78 case DexRegisterLocation::Kind::kNone:
H A Doat_file_assistant.h430 const InstructionSet isa_ = kNone;
H A Dstack_map.h74 * - kNone: the register has no location, meaning it has not been set.
100 kNone = static_cast<uint8_t>(-1), member in class:art::DexRegisterLocation::Kind
123 case Kind::kNone:
148 case Kind::kNone:
155 DexRegisterLocation() : kind_(Kind::kNone), value_(0) {}
160 return DexRegisterLocation(Kind::kNone, 0);
264 return DexRegisterLocation::Kind::kNone;
325 case DexRegisterLocation::Kind::kNone:
349 case DexRegisterLocation::Kind::kNone:
376 // mapped to a DexRegisterLocation::Kind::kNone locatio
[all...]
H A Druntime_options.def122 RUNTIME_OPTIONS_KEY (ExperimentalFlags, Experimental, ExperimentalFlags::kNone) // -Xexperimental:{...}
/art/compiler/
H A Dintrinsics_enum.h26 kNone, member in class:art::Intrinsics
H A Dcompiler.h49 kNone = 0x0, enumerator in enum:art::Compiler::JniOptimizationFlags
/art/runtime/arch/
H A Dinstruction_set.cc36 case kNone:
61 case kNone:
86 return kNone;
109 return kNone;
128 case kNone:
129 LOG(FATAL) << "ISA kNone does not have alignment.";
197 case kNone:
198 LOG(FATAL) << "kNone has no stack overflow size";
H A Dinstruction_set_test.cc32 EXPECT_EQ(kNone, GetInstructionSetFromString("none"));
33 EXPECT_EQ(kNone, GetInstructionSetFromString("random-string"));
44 EXPECT_STREQ("none", GetInstructionSetString(kNone));
H A Dinstruction_set.h29 kNone, enumerator in enum:art::InstructionSet
53 static constexpr InstructionSet kRuntimeISA = kNone;
88 // Note: Returns kNone when the string cannot be parsed to a known value.
138 case kNone:
/art/runtime/verifier/
H A Dverifier_enums.h27 kNone, // Everything is assumed verified. member in class:art::verifier::VerifyMode
/art/runtime/entrypoints/quick/
H A Dcallee_save_frame.h85 isa == kNone ? (LOG(FATAL) << "kNone has no frame size", 0) :
98 isa == kNone ? (LOG(FATAL) << "kNone has no pointer size", PointerSize::k32) :
/art/compiler/optimizing/
H A Dintrinsics.cc36 case Intrinsics::kNone:
52 case Intrinsics::kNone:
68 case Intrinsics::kNone:
84 case Intrinsics::kNone:
167 case Intrinsics::kNone:
H A Dintrinsics.h59 case Intrinsics::kNone:
281 if (invoke->GetIntrinsic() != Intrinsics::kNone) {
H A Dprepare_for_register_allocation.cc118 HInvokeStaticOrDirect::ClinitCheckRequirement::kNone);
179 invoke->RemoveExplicitClinitCheck(HInvokeStaticOrDirect::ClinitCheckRequirement::kNone);
H A Dloop_optimization.h65 kNone = 0, // no restrictions enumerator in enum:art::HLoopOptimization::VectorRestrictions
/art/compiler/driver/
H A Dcompiled_method_storage_test.cc33 /* instruction_set_ */ kNone,
93 &driver, kNone, c, 0u, 0u, 0u, s, v, f, p));
/art/test/115-native-bridge/
H A Dnativebridge.cc231 // "kNone" is the default status except testSignalHandlerNotReturn,
234 kNone, member in class:TestStatus
244 SignalHandlerTestStatus() : state_(TestStatus::kNone) {
252 Set(TestStatus::kNone);
257 case TestStatus::kNone:
262 AssertState(TestStatus::kNone);
312 if (gSignalTestStatus.Get() != TestStatus::kNone) {
569 if (gSignalTestStatus.Get() == TestStatus::kNone) {
/art/compiler/debug/
H A Delf_debug_loc_writer.h49 case kNone:
70 case kNone:
248 } else if (kind == Kind::kNone) {
H A Delf_debug_line_writer.h81 case kNone:
/art/runtime/gc/space/
H A Dimage_space_fs.h91 CHECK_NE(isa, kNone);
/art/cmdline/
H A Dcmdline.h149 if (instruction_set_ == kNone) {
260 if (GetInstructionSetFromString(parent_dir_name.c_str()) != kNone) {
H A Dcmdline_parser_test.cc504 EXPECT_SINGLE_PARSE_DEFAULT_VALUE(ExperimentalFlags::kNone,
509 EXPECT_SINGLE_PARSE_VALUE(ExperimentalFlags::kNone,
516 EXPECT_SINGLE_PARSE_VALUE(verifier::VerifyMode::kNone, "-Xverify:none", M::Verify);
/art/dexoptanalyzer/
H A Ddexoptanalyzer.cc153 if (isa_ == kNone) {
/art/runtime/native/
H A Ddalvik_system_ZygoteHooks.cc315 if (isa != kNone && isa != kRuntimeISA) {

Completed in 401 milliseconds

123