Home
last modified time | relevance | path

Searched refs:AssignIfExists (Results 1 – 3 of 3) sorted by relevance

/art/compiler/driver/
Dcompiler_options_map-inl.h46 map.AssignIfExists(Base::HugeMethodMaxThreshold, &options->huge_method_threshold_); in ReadCompilerOptions()
47 map.AssignIfExists(Base::LargeMethodMaxThreshold, &options->large_method_threshold_); in ReadCompilerOptions()
48 map.AssignIfExists(Base::NumDexMethodsThreshold, &options->num_dex_methods_threshold_); in ReadCompilerOptions()
49 map.AssignIfExists(Base::InlineMaxCodeUnitsThreshold, &options->inline_max_code_units_); in ReadCompilerOptions()
50 map.AssignIfExists(Base::GenerateDebugInfo, &options->generate_debug_info_); in ReadCompilerOptions()
51 map.AssignIfExists(Base::GenerateMiniDebugInfo, &options->generate_mini_debug_info_); in ReadCompilerOptions()
52 map.AssignIfExists(Base::GenerateBuildID, &options->generate_build_id_); in ReadCompilerOptions()
59 map.AssignIfExists(Base::TopKProfileThreshold, &options->top_k_profile_threshold_); in ReadCompilerOptions()
60 map.AssignIfExists(Base::AbortOnHardVerifierFailure, &options->abort_on_hard_verifier_failure_); in ReadCompilerOptions()
61 map.AssignIfExists(Base::AbortOnSoftVerifierFailure, &options->abort_on_soft_verifier_failure_); in ReadCompilerOptions()
[all …]
/art/dex2oat/
Ddex2oat.cc1230 void AssignIfExists(Dex2oatArgumentMap& map, in AssignIfExists() function in art::Dex2Oat
1233 map.AssignIfExists(key, out); in AssignIfExists()
1237 void AssignIfExists(Dex2oatArgumentMap& map, in AssignIfExists() function in art::Dex2Oat
1245 void AssignIfExists(Dex2oatArgumentMap& map, in AssignIfExists() function in art::Dex2Oat
1265 void AssignIfExists(Dex2oatArgumentMap& map, in AssignIfExists() function in art::Dex2Oat
1298 AssignIfExists(args, M::CompactDexLevel, &compact_dex_level_); in ParseArgs()
1299 AssignIfExists(args, M::DexFiles, &dex_filenames_); in ParseArgs()
1300 AssignIfExists(args, M::DexLocations, &dex_locations_); in ParseArgs()
1301 AssignIfExists(args, M::OatFile, &oat_filenames_); in ParseArgs()
1302 AssignIfExists(args, M::OatSymbols, &parser_options->oat_symbols); in ParseArgs()
[all …]
/art/libartbase/base/
Dvariant_map.h241 void AssignIfExists(const TKey<T>& key, U* out) { in AssignIfExists() function