Home
last modified time | relevance | path

Searched refs:CmdlineType (Results 1 – 4 of 4) sorted by relevance

/art/cmdline/
Dcmdline_types.h51 struct CmdlineType : CmdlineTypeParser<T> { struct
58 struct CmdlineType<Unit> : CmdlineTypeParser<Unit> {
68 struct CmdlineType<JdwpProvider> : CmdlineTypeParser<JdwpProvider> {
96 struct CmdlineType<Memory<Divisor>> : CmdlineTypeParser<Memory<Divisor>> {
182 struct CmdlineType<double> : CmdlineTypeParser<double> {
226 struct CmdlineType<unsigned int> : CmdlineTypeParser<unsigned int> {
235 struct CmdlineType<int> : CmdlineTypeParser<int> {
282 struct CmdlineType<MillisecondsToNanoseconds> : CmdlineTypeParser<MillisecondsToNanoseconds> {
284 CmdlineType<unsigned int> uint_parser;
298 struct CmdlineType<std::string> : CmdlineTypeParser<std::string> {
[all …]
DREADME.md179 Any type can be parsed from a string by specializing the `CmdlineType` class and implementing the
190 struct CmdlineType<double> : CmdlineTypeParser<double> {
218 struct CmdlineType<std::vector<std::string>> : CmdlineTypeParser<std::vector<std::string>> {
/art/cmdline/detail/
Dcmdline_parse_argument_detail.h244 if (!using_blanks_ && !CmdlineType<TArg>::kCanParseBlankless) { in CompleteArgument()
313 using UserTypeInfo = CmdlineType<TArg>;
/art/dex2oat/
Ddex2oat_options.cc27 struct CmdlineType<InstructionSet> : CmdlineTypeParser<InstructionSet> { struct