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()
54 if (map.Exists(Base::Debuggable)) { in ReadCompilerOptions()
57 if (map.Exists(Base::Baseline)) { in ReadCompilerOptions()
63 if (map.Exists(Base::DumpInitFailures)) { in ReadCompilerOptions()
69 if (map.Exists(Base::DumpCFGAppend)) { in ReadCompilerOptions()
72 if (map.Exists(Base::RegisterAllocationStrategy)) { in ReadCompilerOptions()
79 if (map.Exists(Base::CountHotnessInCompiledCode)) { in ReadCompilerOptions()
84 if (map.Exists(Base::CheckProfiledMethods)) { in ReadCompilerOptions()
89 if (map.Exists(Base::DumpTimings)) { in ReadCompilerOptions()
93 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.cc601 if (args.Exists(M::Help)) { in DoParse()
604 } else if (args.Exists(M::ShowVersion)) { in DoParse()
610 } else if (args.Exists(M::BootClassPath)) { in DoParse()
615 if (args.Exists(M::UseJitCompilation) && *args.Get(M::UseJitCompilation)) { in DoParse()
662 bool low_memory_mode_ = args.Exists(M::LowMemoryMode); in DoParse()
697 if (!args.Exists(M::CompilerCallbacksPtr) && !args.Exists(M::Image)) { in DoParse()
Druntime.cc1196 if (runtime_options.Exists(Opt::UseStderrLogger)) { in Init()
1285 is_zygote_ = runtime_options.Exists(Opt::Zygote); in Init()
1286 is_primary_zygote_ = runtime_options.Exists(Opt::PrimaryZygote); in Init()
1287 is_explicit_gc_disabled_ = runtime_options.Exists(Opt::DisableExplicitGC); in Init()
1336 no_sig_chain_ = runtime_options.Exists(Opt::NoSigChain); in Init()
1337 force_native_bridge_ = runtime_options.Exists(Opt::ForceNativeBridge); in Init()
1349 is_low_memory_mode_ = runtime_options.Exists(Opt::LowMemoryMode); in Init()
1364 if (is_low_memory_mode_ && !runtime_options.Exists(Opt::ForegroundHeapGrowthMultiplier)) { in Init()
1400 runtime_options.Exists(Opt::LowMemoryMode), in Init()
1403 runtime_options.Exists(Opt::IgnoreMaxFootprint), in Init()
[all …]
/art/compiler/debug/
Delf_symtab_writer.h104 if (!debug_info.dex_files.empty() && builder->GetDex()->Exists()) { in WriteDebugSymbols()
/art/dex2oat/
Ddex2oat.cc1253 if (map.Exists(key)) { in AssignIfExists()
1261 if (map.Exists(key)) { in AssignIfExists()
1273 if (map.Exists(key)) { in AssignTrueIfExists()
1282 if (map.Exists(key)) { in AssignIfExists()
1356 parser_options->requested_specific_compiler = args.Exists(M::Backend); in ParseArgs()
1366 if (args.Exists(M::InvocationFile)) { in ParseArgs()
1381 if (args.Exists(M::ForceDeterminism)) { in ParseArgs()
1386 if (args.Exists(M::Base)) { in ParseArgs()
1389 if (args.Exists(M::TargetInstructionSetVariant)) { in ParseArgs()
1392 if (args.Exists(M::TargetInstructionSetFeatures)) { in ParseArgs()
[all …]
/art/runtime/jit/
Djit.cc101 options.Exists(RuntimeArgumentMap::DumpJITInfoOnShutdown); in CreateFromRuntimeArguments()
131 if (options.Exists(RuntimeArgumentMap::JITCompileThreshold)) { in CreateFromRuntimeArguments()
136 if (options.Exists(RuntimeArgumentMap::JITWarmupThreshold)) { in CreateFromRuntimeArguments()
141 if (options.Exists(RuntimeArgumentMap::JITOsrThreshold)) { in CreateFromRuntimeArguments()
168 if (options.Exists(RuntimeArgumentMap::JITPriorityThreadWeight)) { in CreateFromRuntimeArguments()
182 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.cc497 force_copy_(runtime_options.Exists(RuntimeArgumentMap::JniOptsForceCopy)), in JavaVMExt()
498 tracing_enabled_(runtime_options.Exists(RuntimeArgumentMap::JniTrace) in JavaVMExt()
518 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