Home
last modified time | relevance | path

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

/art/dex2oat/
Ddex2oat_options.h58 struct Dex2oatArgumentMap : CompilerOptionsMap<Dex2oatArgumentMap, Dex2oatArgumentMapKey> { struct
60 using CompilerOptionsMap<Dex2oatArgumentMap, Dex2oatArgumentMapKey>::CompilerOptionsMap;
62 static std::unique_ptr<Dex2oatArgumentMap> Parse(int argc,
75 extern template struct CompilerOptionsMap<Dex2oatArgumentMap, Dex2oatArgumentMapKey>;
Ddex2oat_options.cc39 #define COMPILER_OPTIONS_MAP_TYPE Dex2oatArgumentMap
46 const Dex2oatArgumentMap::Key<Type> Dex2oatArgumentMap::Name {__VA_ARGS__};
52 using M = Dex2oatArgumentMap;
53 using Parser = CmdlineParser<Dex2oatArgumentMap, Dex2oatArgumentMap::Key>;
259 AddCompilerOptionsArgumentParserOptions<Dex2oatArgumentMap>(*parser_builder); in CreateArgumentParser()
266 std::unique_ptr<Dex2oatArgumentMap> Dex2oatArgumentMap::Parse(int argc, in Parse()
276 return std::make_unique<Dex2oatArgumentMap>(parser.ReleaseArgumentsMap()); in Parse()
Ddex2oat.cc1058 void AssignIfExists(Dex2oatArgumentMap& map, in AssignIfExists()
1059 const Dex2oatArgumentMap::Key<T>& key, in AssignIfExists()
1065 void AssignIfExists(Dex2oatArgumentMap& map, in AssignIfExists()
1066 const Dex2oatArgumentMap::Key<std::string>& key, in AssignIfExists()
1073 void AssignIfExists(Dex2oatArgumentMap& map, in AssignIfExists()
1074 const Dex2oatArgumentMap::Key<std::vector<std::string>>& key, in AssignIfExists()
1085 void AssignTrueIfExists(Dex2oatArgumentMap& map, in AssignTrueIfExists()
1086 const Dex2oatArgumentMap::Key<T>& key, in AssignTrueIfExists()
1105 using M = Dex2oatArgumentMap; in ParseArgs()