/art/runtime/ |
D | experimental_flags.h | 28 kNone = 0x0000, enumerator 33 constexpr ExperimentalFlags(decltype(kNone) t) // NOLINT [runtime/explicit] in ExperimentalFlags() 36 constexpr operator decltype(kNone)() const { in decltype() 37 return static_cast<decltype(kNone)>(value_); in decltype() 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)& b) const { in decltype() [all …]
|
D | hidden_api.cc | 46 case kNone: in operator <<() 147 case kNone: in GetEnumValueForLog() 161 if (access_method == kLinking || access_method == kNone) { in LogAccessToEventLog() 229 if (access_method != kNone) { in GetMemberActionImpl() 254 if (access_method != kNone) { in GetMemberActionImpl()
|
D | jdwp_provider.h | 28 kNone, enumerator
|
D | intrinsics_enum.h | 26 kNone, enumerator
|
D | check_reference_map_visitor.h | 82 case DexRegisterLocation::Kind::kNone: in CheckOptimizedMethod()
|
D | stack_map.h | 102 kNone = static_cast<uint8_t>(-1), enumerator 125 case Kind::kNone: in IsShortLocationKind() 150 case Kind::kNone: in ConvertToSurfaceKind() 157 DexRegisterLocation() : kind_(Kind::kNone), value_(0) {} in DexRegisterLocation() 162 return DexRegisterLocation(Kind::kNone, 0); in None() 266 return DexRegisterLocation::Kind::kNone; in GetLocationInternalKind() 327 case DexRegisterLocation::Kind::kNone: in ComputeCompressedKind() 351 case DexRegisterLocation::Kind::kNone: in CanBeEncodedAsShortLocation() 419 DCHECK_NE(kind, static_cast<uint8_t>(DexRegisterLocation::Kind::kNone)); in ExtractKindFromShortLocation()
|
D | runtime_options.def | 47 RUNTIME_OPTIONS_KEY (JdwpProvider, JdwpProvider, JdwpProvider::kNone) 128 RUNTIME_OPTIONS_KEY (ExperimentalFlags, Experimental, ExperimentalFlags::kNone) // -Xexperime…
|
D | oat_file_assistant.h | 509 const InstructionSet isa_ = InstructionSet::kNone;
|
D | hidden_api.h | 56 kNone, // internal test that does not correspond to an actual access by app enumerator
|
/art/runtime/arch/ |
D | instruction_set.cc | 36 case InstructionSet::kNone: in InstructionSetAbort() 59 case InstructionSet::kNone: in GetInstructionSetString() 83 return InstructionSet::kNone; in GetInstructionSetFromString() 106 return InstructionSet::kNone; in GetInstructionSetFromELF() 125 case InstructionSet::kNone: in GetInstructionSetAlignment() 193 case InstructionSet::kNone: in GetStackOverflowReservedBytes()
|
D | instruction_set.h | 29 kNone, enumerator 54 static constexpr InstructionSet kRuntimeISA = InstructionSet::kNone; 114 case InstructionSet::kNone: in GetInstructionSetPointerSize() 137 case InstructionSet::kNone: in GetInstructionSetInstructionAlignment() 154 case InstructionSet::kNone: in IsValidInstructionSet() 175 case InstructionSet::kNone: in Is64BitInstructionSet() 202 case InstructionSet::kNone: in GetBytesPerGprSpillLocation() 225 case InstructionSet::kNone: in GetBytesPerFprSpillLocation()
|
D | instruction_set_test.cc | 32 EXPECT_EQ(InstructionSet::kNone, GetInstructionSetFromString("none")); in TEST() 33 EXPECT_EQ(InstructionSet::kNone, GetInstructionSetFromString("random-string")); in TEST() 44 EXPECT_STREQ("none", GetInstructionSetString(InstructionSet::kNone)); in TEST()
|
D | instruction_set_features.cc | 50 case InstructionSet::kNone: in FromVariant() 81 case InstructionSet::kNone: in FromBitmap() 106 case InstructionSet::kNone: in FromCppDefines() 130 case InstructionSet::kNone: in FromCpuInfo() 153 case InstructionSet::kNone: in FromHwcap() 176 case InstructionSet::kNone: in FromAssembly()
|
/art/compiler/optimizing/ |
D | intrinsics.cc | 46 case Intrinsics::kNone: in INTRINSICS_LIST() 62 case Intrinsics::kNone: in NeedsEnvironmentOrCache() 78 case Intrinsics::kNone: in GetSideEffects() 94 case Intrinsics::kNone: in GetExceptions() 204 case Intrinsics::kNone: in operator <<()
|
D | prepare_for_register_allocation.cc | 122 HInvokeStaticOrDirect::ClinitCheckRequirement::kNone); in VisitClinitCheck() 223 invoke->RemoveExplicitClinitCheck(HInvokeStaticOrDirect::ClinitCheckRequirement::kNone); in VisitInvokeStaticOrDirect()
|
D | intrinsics.h | 67 case Intrinsics::kNone: in Dispatch() 328 if (invoke->GetIntrinsic() != Intrinsics::kNone) { in IsCallFreeIntrinsic()
|
/art/runtime/entrypoints/quick/ |
D | callee_save_frame.h | 85 case InstructionSet::kNone: in GetCalleeSaveFrameSize() 109 case InstructionSet::kNone: in GetConstExprPointerSize()
|
/art/cmdline/ |
D | cmdline.h | 152 if (instruction_set_ == InstructionSet::kNone) { in Parse() 223 InstructionSet instruction_set_ = InstructionSet::kNone; 236 if (instruction_set_ == InstructionSet::kNone) { in ParseCheckBootImage() 267 if (GetInstructionSetFromString(parent_dir_name.c_str()) != InstructionSet::kNone) { in ParseCheckBootImage()
|
D | cmdline_parser_test.cc | 374 EXPECT_SINGLE_PARSE_DEFAULT_VALUE(JdwpProvider::kNone, "", M::JdwpProvider); in TEST_F() 390 EXPECT_SINGLE_PARSE_VALUE(JdwpProvider::kNone, opt_args, M::JdwpProvider); in TEST_F() 504 EXPECT_SINGLE_PARSE_DEFAULT_VALUE(ExperimentalFlags::kNone, in TEST_F() 509 EXPECT_SINGLE_PARSE_VALUE(ExperimentalFlags::kNone, in TEST_F() 516 EXPECT_SINGLE_PARSE_VALUE(verifier::VerifyMode::kNone, "-Xverify:none", M::Verify); in TEST_F()
|
/art/test/115-native-bridge/ |
D | nativebridge.cc | 251 kNone, enumerator 261 SignalHandlerTestStatus() : state_(TestStatus::kNone) { in SignalHandlerTestStatus() 269 Set(TestStatus::kNone); in Reset() 274 case TestStatus::kNone: in Set() 279 AssertState(TestStatus::kNone); in Set() 329 if (gSignalTestStatus.Get() != TestStatus::kNone) { in trampoline_Java_Main_testSignalHandlerNotReturn() 586 if (gSignalTestStatus.Get() == TestStatus::kNone) { in nb_signalhandler()
|
/art/runtime/verifier/ |
D | verifier_enums.h | 27 kNone, // Everything is assumed verified. enumerator
|
/art/compiler/driver/ |
D | compiled_method_storage_test.cc | 34 /* instruction_set_ */ InstructionSet::kNone, in TEST() 91 &driver, InstructionSet::kNone, c, 0u, 0u, 0u, s, v, f, p)); in TEST()
|
/art/tools/veridex/ |
D | flow_analysis.h | 39 kNone enumerator 47 RegisterValue() : source_(RegisterSource::kNone), in RegisterValue()
|
/art/compiler/debug/ |
D | elf_debug_loc_writer.h | 49 case InstructionSet::kNone: in GetDwarfCoreReg() 70 case InstructionSet::kNone: in GetDwarfFpReg() 249 } else if (kind == Kind::kNone) { in WriteDebugLocEntry()
|
/art/runtime/gc/space/ |
D | image_space_fs.h | 92 CHECK_NE(isa, InstructionSet::kNone); in PruneDalvikCache()
|