Home
last modified time | relevance | path

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

/art/compiler/driver/
Dcompiler_options_map-inl.h49 map.AssignIfExists(Base::HugeMethodMaxThreshold, &options->huge_method_threshold_); in ReadCompilerOptions()
50 map.AssignIfExists(Base::LargeMethodMaxThreshold, &options->large_method_threshold_); in ReadCompilerOptions()
51 map.AssignIfExists(Base::SmallMethodMaxThreshold, &options->small_method_threshold_); in ReadCompilerOptions()
52 map.AssignIfExists(Base::TinyMethodMaxThreshold, &options->tiny_method_threshold_); in ReadCompilerOptions()
53 map.AssignIfExists(Base::NumDexMethodsThreshold, &options->num_dex_methods_threshold_); in ReadCompilerOptions()
54 map.AssignIfExists(Base::InlineMaxCodeUnitsThreshold, &options->inline_max_code_units_); in ReadCompilerOptions()
55 map.AssignIfExists(Base::GenerateDebugInfo, &options->generate_debug_info_); in ReadCompilerOptions()
56 map.AssignIfExists(Base::GenerateMiniDebugInfo, &options->generate_mini_debug_info_); in ReadCompilerOptions()
57 map.AssignIfExists(Base::GenerateBuildID, &options->generate_build_id_); in ReadCompilerOptions()
61 map.AssignIfExists(Base::TopKProfileThreshold, &options->top_k_profile_threshold_); in ReadCompilerOptions()
[all …]
/art/dex2oat/
Ddex2oat.cc1133 void AssignIfExists(Dex2oatArgumentMap& map, in AssignIfExists() function in art::FINAL
1136 map.AssignIfExists(key, out); in AssignIfExists()
1140 void AssignIfExists(Dex2oatArgumentMap& map, in AssignIfExists() function in art::FINAL
1148 void AssignIfExists(Dex2oatArgumentMap& map, in AssignIfExists() function in art::FINAL
1192 AssignIfExists(args, M::CompactDexLevel, &compact_dex_level_); in ParseArgs()
1193 AssignIfExists(args, M::DexFiles, &dex_filenames_); in ParseArgs()
1194 AssignIfExists(args, M::DexLocations, &dex_locations_); in ParseArgs()
1195 AssignIfExists(args, M::OatFiles, &oat_filenames_); in ParseArgs()
1196 AssignIfExists(args, M::OatSymbols, &parser_options->oat_symbols); in ParseArgs()
1197 AssignIfExists(args, M::ImageFilenames, &image_filenames_); in ParseArgs()
[all …]
/art/libartbase/base/
Dvariant_map.h241 void AssignIfExists(const TKey<T>& key, U* out) { in AssignIfExists() function