Home
last modified time | relevance | path

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

/art/runtime/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.h267 bool Exists(const TKey<TValue>& key) const { in Exists() function
/art/runtime/
Dparsed_options.cc427 if (args.Exists(M::Help)) { in Parse()
430 } else if (args.Exists(M::ShowVersion)) { in Parse()
433 } else if (args.Exists(M::BootClassPath)) { in Parse()
473 bool low_memory_mode_ = args.Exists(M::LowMemoryMode); in Parse()
518 if (args.Exists(M::BootClassPathLocations)) { in Parse()
533 if (!args.Exists(M::CompilerCallbacksPtr) && !args.Exists(M::Image)) { in Parse()
Dparsed_options_test.cc70 #define EXPECT_PARSED_EXISTS(actual_key) EXPECT_TRUE(map.Exists(actual_key)) in TEST_F()
111 EXPECT_TRUE(map.Exists(Opt::GcOption)); in TEST_F()
Druntime.cc811 is_zygote_ = runtime_options.Exists(Opt::Zygote); in Init()
812 is_explicit_gc_disabled_ = runtime_options.Exists(Opt::DisableExplicitGC); in Init()
837 allow_dex_file_fallback_ = !runtime_options.Exists(Opt::NoDexFileFallback); in Init()
867 runtime_options.Exists(Opt::LowMemoryMode), in Init()
870 runtime_options.Exists(Opt::IgnoreMaxFootprint), in Init()
889 dump_gc_performance_on_shutdown_ = runtime_options.Exists(Opt::DumpGCPerformanceOnShutdown); in Init()
891 if (runtime_options.Exists(Opt::JdwpOptions)) { in Init()
1008 if (!runtime_options.Exists(Opt::BootClassPathLocations)) { in Init()
1041 if (runtime_options.Exists(Opt::MethodTrace)) { in Init()
1046 trace_config_->trace_output_mode = runtime_options.Exists(Opt::MethodTraceStreaming) ? in Init()
Djava_vm_ext.cc368 force_copy_(runtime_options.Exists(RuntimeArgumentMap::JniOptsForceCopy)), in JavaVMExt()
369 tracing_enabled_(runtime_options.Exists(RuntimeArgumentMap::JniTrace) in JavaVMExt()
381 SetCheckJniEnabled(runtime_options.Exists(RuntimeArgumentMap::CheckJni)); in JavaVMExt()
/art/runtime/jit/
Djit.cc42 options.Exists(RuntimeArgumentMap::DumpJITInfoOnShutdown); in CreateFromRuntimeArguments()
/art/cmdline/
Dcmdline_parser_test.cc146 #define EXPECT_KEY_EXISTS(map, key) EXPECT_TRUE((map).Exists(key))