/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 | jdwp_provider.h | 27 kNone, enumerator 39 kUnsetDebuggable = kIsTargetBuild ? kDefaultJdwpProvider : kNone, 41 kUnsetNonDebuggable = kNone,
|
D | dex_register_location.h | 33 kNone = -1, // vreg has not been set. enumerator 44 static DexRegisterLocation None() { return DexRegisterLocation(Kind::kNone, 0); } in None() 47 bool IsLive() const { return kind_ != Kind::kNone; } in IsLive()
|
D | intrinsics_enum.h | 26 kNone, enumerator
|
D | dex_register_location.cc | 30 case Kind::kNone: in operator <<()
|
D | var_handles.cc | 91 DCHECK_EQ(match_kind, mirror::VarHandle::MatchKind::kNone); in VarHandleInvokeAccessor()
|
D | hidden_api.cc | 66 case AccessMethod::kNone: in operator <<() 283 if (access_method == AccessMethod::kLinking || access_method == AccessMethod::kNone) { in LogAccessToEventLog() 478 if (access_method != AccessMethod::kNone) { in HandleCorePlatformApiViolation() 538 if (access_method != AccessMethod::kNone) { in ShouldDenyAccessToMemberImpl()
|
/art/libartbase/arch/ |
D | instruction_set.h | 29 kNone, enumerator 48 static constexpr InstructionSet kRuntimeISA = InstructionSet::kNone; 97 case InstructionSet::kNone: in GetInstructionSetPointerSize() 116 case InstructionSet::kNone: in GetInstructionSetInstructionAlignment() 131 case InstructionSet::kNone: in IsValidInstructionSet() 150 case InstructionSet::kNone: in Is64BitInstructionSet() 173 case InstructionSet::kNone: in GetBytesPerGprSpillLocation() 192 case InstructionSet::kNone: in GetBytesPerFprSpillLocation() 230 case InstructionSet::kNone: in GetStackOverflowReservedBytes()
|
D | instruction_set.cc | 32 case InstructionSet::kNone: in InstructionSetAbort() 51 case InstructionSet::kNone: in GetInstructionSetString() 71 return InstructionSet::kNone; in GetInstructionSetFromString() 86 case InstructionSet::kNone: in GetInstructionSetAlignment()
|
D | instruction_set_test.cc | 30 EXPECT_EQ(InstructionSet::kNone, GetInstructionSetFromString("none")); in TEST() 31 EXPECT_EQ(InstructionSet::kNone, GetInstructionSetFromString("random-string")); in TEST() 40 EXPECT_STREQ("none", GetInstructionSetString(InstructionSet::kNone)); in TEST()
|
/art/compiler/optimizing/ |
D | optimization.h | 103 kNone, enumerator 104 kLast = kNone 127 OptimizationPass depends_on = OptimizationPass::kNone) {
|
D | prepare_for_register_allocation.cc | 150 HInvokeStaticOrDirect::ClinitCheckRequirement::kNone); in VisitClinitCheck() 252 invoke->RemoveExplicitClinitCheck(HInvokeStaticOrDirect::ClinitCheckRequirement::kNone); in VisitInvokeStaticOrDirect()
|
D | critical_native_abi_fixup_arm.cc | 77 HInvokeStaticOrDirect::ClinitCheckRequirement::kNone); in FixUpArguments()
|
/art/odrefresh/ |
D | odr_config.h | 61 isa_(InstructionSet::kNone), in OdrConfig() 153 case art::InstructionSet::kNone: in GetPotentialInstructionSets() 155 return std::make_pair(art::InstructionSet::kNone, art::InstructionSet::kNone); in GetPotentialInstructionSets()
|
/art/libprofile/profile/ |
D | profile_test_helper.h | 41 const ProfileSampleAnnotation& annotation = ProfileSampleAnnotation::kNone) { 50 const ProfileSampleAnnotation& annotation = ProfileSampleAnnotation::kNone) { 60 const ProfileSampleAnnotation& annotation = ProfileSampleAnnotation::kNone) { 70 const ProfileSampleAnnotation& annotation = ProfileSampleAnnotation::kNone) { 78 const ProfileSampleAnnotation& annotation = ProfileSampleAnnotation::kNone) {
|
D | profile_compilation_info.h | 280 static const ProfileSampleAnnotation kNone; variable 307 const ProfileSampleAnnotation& annotation = ProfileSampleAnnotation::kNone) { 318 const ProfileSampleAnnotation& annotation = ProfileSampleAnnotation::kNone); 347 const ProfileSampleAnnotation& annotation = ProfileSampleAnnotation::kNone) { 363 const ProfileSampleAnnotation& annotation = ProfileSampleAnnotation::kNone); 366 const ProfileSampleAnnotation& annotation = ProfileSampleAnnotation::kNone) { 371 const ProfileSampleAnnotation& annotation = ProfileSampleAnnotation::kNone) { 384 const ProfileSampleAnnotation& annotation = ProfileSampleAnnotation::kNone) { 405 const ProfileSampleAnnotation& annotation = ProfileSampleAnnotation::kNone); 417 const ProfileSampleAnnotation& annotation = ProfileSampleAnnotation::kNone) { [all …]
|
/art/cmdline/ |
D | cmdline.h | 162 if (instruction_set_ == InstructionSet::kNone) { in Parse() 247 InstructionSet instruction_set_ = InstructionSet::kNone; 262 if (instruction_set_ == InstructionSet::kNone) { in ParseCheckBootImage() 297 if (GetInstructionSetFromString(parent_dir_name.c_str()) != InstructionSet::kNone) { in ParseCheckBootImage()
|
D | cmdline_parser_test.cc | 395 EXPECT_SINGLE_PARSE_VALUE(JdwpProvider::kNone, opt_args, M::JdwpProvider); in TEST_F() 510 EXPECT_SINGLE_PARSE_DEFAULT_VALUE(ExperimentalFlags::kNone, in TEST_F() 515 EXPECT_SINGLE_PARSE_VALUE(ExperimentalFlags::kNone, in TEST_F() 522 EXPECT_SINGLE_PARSE_VALUE(verifier::VerifyMode::kNone, "-Xverify:none", M::Verify); in TEST_F()
|
/art/test/115-native-bridge/ |
D | nativebridge.cc | 252 kNone, enumerator 262 SignalHandlerTestStatus() : state_(TestStatus::kNone) { in SignalHandlerTestStatus() 270 Set(TestStatus::kNone); in Reset() 275 case TestStatus::kNone: in Set() 280 AssertState(TestStatus::kNone); in Set() 330 if (gSignalTestStatus.Get() != TestStatus::kNone) { in trampoline_Java_Main_testSignalHandlerNotReturn() 587 if (gSignalTestStatus.Get() == TestStatus::kNone) { in nb_signalhandler()
|
/art/compiler/driver/ |
D | compiler_options.cc | 54 image_type_(ImageType::kNone), in CompilerOptions() 83 check_profiled_methods_(ProfileMethodsCheck::kNone), in CompilerOptions()
|
D | compiler_options.h | 55 kNone, enumerator 80 kNone, // JIT or AOT app compilation producing only an oat file but no image. enumerator
|
/art/runtime/verifier/ |
D | verifier_enums.h | 27 kNone, // Everything is assumed verified. enumerator
|
/art/compiler/debug/ |
D | elf_debug_loc_writer.h | 45 case InstructionSet::kNone: in GetDwarfCoreReg() 62 case InstructionSet::kNone: in GetDwarfFpReg() 238 } else if (kind == Kind::kNone) { in WriteDebugLocEntry()
|
/art/tools/veridex/ |
D | flow_analysis.h | 40 kNone enumerator 48 RegisterValue() : source_(RegisterSource::kNone), in RegisterValue()
|
/art/runtime/jit/ |
D | profile_saver_test.cc | 76 ASSERT_EQ(ProfileCompilationInfo::ProfileSampleAnnotation::kNone, in TEST_F()
|