Home
last modified time | relevance | path

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

/art/compiler/driver/
Dcompiler_options_map-inl.h58 map.AssignIfExists(Base::CompileArtTest, &options->compile_art_test_);
59 map.AssignIfExists(Base::HugeMethodMaxThreshold, &options->huge_method_threshold_);
60 map.AssignIfExists(Base::LargeMethodMaxThreshold, &options->large_method_threshold_);
61 map.AssignIfExists(Base::NumDexMethodsThreshold, &options->num_dex_methods_threshold_);
62 map.AssignIfExists(Base::InlineMaxCodeUnitsThreshold, &options->inline_max_code_units_);
63 map.AssignIfExists(Base::GenerateDebugInfo, &options->generate_debug_info_);
64 map.AssignIfExists(Base::GenerateMiniDebugInfo, &options->generate_mini_debug_info_);
65 map.AssignIfExists(Base::GenerateBuildID, &options->generate_build_id_);
72 map.AssignIfExists(Base::TopKProfileThreshold, &options->top_k_profile_threshold_);
73 map.AssignIfExists(Base::AbortOnHardVerifierFailure, &options->abort_on_hard_verifier_failure_);
[all …]
/art/dex2oat/
Ddex2oat.cc967 void AssignIfExists(Dex2oatArgumentMap& map, in AssignIfExists() function in art::Dex2Oat
970 map.AssignIfExists(key, out); in AssignIfExists()
974 void AssignIfExists(Dex2oatArgumentMap& map, in AssignIfExists() function in art::Dex2Oat
982 void AssignIfExists(Dex2oatArgumentMap& map, in AssignIfExists() function in art::Dex2Oat
1002 void AssignIfExists(Dex2oatArgumentMap& map, in AssignIfExists() function in art::Dex2Oat
1035 AssignIfExists(args, M::CompactDexLevel, &compact_dex_level_); in ParseArgs()
1036 AssignIfExists(args, M::DexFiles, &dex_filenames_); in ParseArgs()
1037 AssignIfExists(args, M::DexLocations, &dex_locations_); in ParseArgs()
1038 AssignIfExists(args, M::OatFile, &oat_filenames_); in ParseArgs()
1039 AssignIfExists(args, M::OatSymbols, &parser_options->oat_symbols); in ParseArgs()
[all …]
/art/libartbase/base/
Dvariant_map.h249 void AssignIfExists(const TKey<T>& key, U* out) { in AssignIfExists() function