Home
last modified time | relevance | path

Searched refs:Exists (Results 1 – 13 of 13) sorted by relevance

/art/compiler/driver/
Dcompiler_options_map-inl.h36 if (map.Exists(Base::CompilerFilter)) { in ReadCompilerOptions()
53 if (map.Exists(Base::Debuggable)) { in ReadCompilerOptions()
56 if (map.Exists(Base::Baseline)) { in ReadCompilerOptions()
62 if (map.Exists(Base::DumpInitFailures)) { in ReadCompilerOptions()
68 if (map.Exists(Base::DumpCFGAppend)) { in ReadCompilerOptions()
71 if (map.Exists(Base::RegisterAllocationStrategy)) { in ReadCompilerOptions()
78 if (map.Exists(Base::CountHotnessInCompiledCode)) { in ReadCompilerOptions()
83 if (map.Exists(Base::CheckProfiledMethods)) { in ReadCompilerOptions()
88 if (map.Exists(Base::DumpTimings)) { in ReadCompilerOptions()
92 if (map.Exists(Base::DumpPassTimings)) { in ReadCompilerOptions()
[all …]
/art/libartbase/base/
Dvariant_map_test.cc53 EXPECT_FALSE(fm.Exists(FruitMap::Apple)); in TEST()
55 EXPECT_FALSE(fm.Exists(FruitMap::Orange)); in TEST()
60 EXPECT_TRUE(fm.Exists(FruitMap::Apple)); in TEST()
65 EXPECT_TRUE(fm.Exists(FruitMap::Apple)); in TEST()
74 EXPECT_FALSE(fm.Exists(FruitMap::Apple)); in TEST()
78 EXPECT_FALSE(fm.Exists(FruitMap::Orange)); in TEST()
Dvariant_map.h243 if (Exists(key)) { in AssignIfExists()
278 bool Exists(const TKey<TValue>& key) const { in Exists() function
/art/runtime/
Dparsed_options_test.cc85 #define EXPECT_PARSED_EXISTS(actual_key) EXPECT_TRUE(map.Exists(actual_key)) in TEST_F()
130 EXPECT_TRUE(map.Exists(Opt::GcOption)); in TEST_F()
147 EXPECT_TRUE(map.Exists(Opt::GcOption)); in TEST_F()
Dparsed_options.cc566 if (args.Exists(M::Help)) { in DoParse()
569 } else if (args.Exists(M::ShowVersion)) { in DoParse()
575 } else if (args.Exists(M::BootClassPath)) { in DoParse()
580 if (args.Exists(M::UseJitCompilation) && *args.Get(M::UseJitCompilation)) { in DoParse()
627 bool low_memory_mode_ = args.Exists(M::LowMemoryMode); in DoParse()
662 if (!args.Exists(M::CompilerCallbacksPtr) && !args.Exists(M::Image)) { in DoParse()
Druntime.cc1197 if (runtime_options.Exists(Opt::UseStderrLogger)) { in Init()
1286 is_zygote_ = runtime_options.Exists(Opt::Zygote); in Init()
1287 is_primary_zygote_ = runtime_options.Exists(Opt::PrimaryZygote); in Init()
1288 is_explicit_gc_disabled_ = runtime_options.Exists(Opt::DisableExplicitGC); in Init()
1318 allow_dex_file_fallback_ = !runtime_options.Exists(Opt::NoDexFileFallback); in Init()
1338 no_sig_chain_ = runtime_options.Exists(Opt::NoSigChain); in Init()
1339 force_native_bridge_ = runtime_options.Exists(Opt::ForceNativeBridge); in Init()
1351 is_low_memory_mode_ = runtime_options.Exists(Opt::LowMemoryMode); in Init()
1366 if (is_low_memory_mode_ && !runtime_options.Exists(Opt::ForegroundHeapGrowthMultiplier)) { in Init()
1402 runtime_options.Exists(Opt::LowMemoryMode), in Init()
[all …]
/art/compiler/debug/
Delf_symtab_writer.h104 if (!debug_info.dex_files.empty() && builder->GetDex()->Exists()) { in WriteDebugSymbols()
/art/dex2oat/
Ddex2oat.cc1240 if (map.Exists(key)) { in AssignIfExists()
1248 if (map.Exists(key)) { in AssignIfExists()
1260 if (map.Exists(key)) { in AssignTrueIfExists()
1269 if (map.Exists(key)) { in AssignIfExists()
1341 parser_options->requested_specific_compiler = args.Exists(M::Backend); in ParseArgs()
1351 if (args.Exists(M::InvocationFile)) { in ParseArgs()
1366 if (args.Exists(M::ForceDeterminism)) { in ParseArgs()
1370 if (args.Exists(M::Base)) { in ParseArgs()
1373 if (args.Exists(M::TargetInstructionSetVariant)) { in ParseArgs()
1376 if (args.Exists(M::TargetInstructionSetFeatures)) { in ParseArgs()
[all …]
/art/runtime/jit/
Djit.cc100 options.Exists(RuntimeArgumentMap::DumpJITInfoOnShutdown); in CreateFromRuntimeArguments()
130 if (options.Exists(RuntimeArgumentMap::JITCompileThreshold)) { in CreateFromRuntimeArguments()
135 if (options.Exists(RuntimeArgumentMap::JITWarmupThreshold)) { in CreateFromRuntimeArguments()
140 if (options.Exists(RuntimeArgumentMap::JITOsrThreshold)) { in CreateFromRuntimeArguments()
167 if (options.Exists(RuntimeArgumentMap::JITPriorityThreadWeight)) { in CreateFromRuntimeArguments()
181 if (options.Exists(RuntimeArgumentMap::JITInvokeTransitionWeight)) { in CreateFromRuntimeArguments()
/art/dex2oat/linker/
Delf_writer_quick.cc257 builder_->GetDex()->Exists() ? builder_->GetDex()->GetAddress() : 0, in PrepareDebugInfo()
/art/runtime/jni/
Djava_vm_ext.cc495 force_copy_(runtime_options.Exists(RuntimeArgumentMap::JniOptsForceCopy)), in JavaVMExt()
496 tracing_enabled_(runtime_options.Exists(RuntimeArgumentMap::JniTrace) in JavaVMExt()
516 SetCheckJniEnabled(runtime_options.Exists(RuntimeArgumentMap::CheckJni)); in JavaVMExt()
/art/cmdline/
Dcmdline_parser_test.cc168 #define EXPECT_KEY_EXISTS(map, key) EXPECT_TRUE((map).Exists(key))
/art/libelffile/elf/
Delf_builder.h192 bool Exists() const { in Exists() function