Home
last modified time | relevance | path

Searched refs:WithType (Results 1 – 5 of 5) sorted by relevance

/art/dex2oat/
Ddex2oat_options.cc59 .WithType<std::vector<std::string>>().AppendValues() in AddInputMappings()
62 .WithType<std::vector<std::string>>().AppendValues() in AddInputMappings()
65 .WithType<int>() in AddInputMappings()
68 .WithType<std::string>() in AddInputMappings()
71 .WithType<std::string>() in AddInputMappings()
78 .WithType<int>() in AddGeneratedArtifactMappings()
81 .WithType<std::string>() in AddGeneratedArtifactMappings()
84 .WithType<int>() in AddGeneratedArtifactMappings()
87 .WithType<std::string>() in AddGeneratedArtifactMappings()
90 .WithType<int>() in AddGeneratedArtifactMappings()
[all …]
/art/runtime/
Dparsed_options.cc80 .WithType<std::string>() in MakeParser()
83 .WithType<ParseStringList<':'>>() // std::vector<std::string>, split by : in MakeParser()
86 .WithType<std::string>() in MakeParser()
89 .WithType<std::string>() in MakeParser()
96 .WithType<JdwpProvider>() in MakeParser()
99 .WithType<std::string>() in MakeParser()
106 .WithType<std::list<ti::AgentSpec>>().AppendValues() in MakeParser()
109 .WithType<MemoryKiB>() in MakeParser()
112 .WithType<MemoryKiB>() in MakeParser()
115 .WithType<MemoryKiB>() in MakeParser()
[all …]
/art/compiler/driver/
Dcompiler_options_map-inl.h102 .template WithType<std::string>() in AddCompilerOptionsArgumentParserOptions()
109 .template WithType<unsigned int>() in AddCompilerOptionsArgumentParserOptions()
112 .template WithType<unsigned int>() in AddCompilerOptionsArgumentParserOptions()
115 .template WithType<unsigned int>() in AddCompilerOptionsArgumentParserOptions()
118 .template WithType<unsigned int>() in AddCompilerOptionsArgumentParserOptions()
121 .template WithType<unsigned int>() in AddCompilerOptionsArgumentParserOptions()
124 .template WithType<unsigned int>() in AddCompilerOptionsArgumentParserOptions()
139 .template WithType<bool>() in AddCompilerOptionsArgumentParserOptions()
156 .template WithType<double>().WithRange(0.0, 100.0) in AddCompilerOptionsArgumentParserOptions()
167 .template WithType<std::string>() in AddCompilerOptionsArgumentParserOptions()
[all …]
/art/cmdline/
DREADME.md21 `WithType` and `IntoXX` methods.
43 .WithType<int>()
46 .WithType<double>()
87 #### WithType method (optional)
93 Everything that follows a `WithType<T>()` call is thus type checked to only take `T` values.
146 .WithType<std::vector<std::string>)()
167 set by `WithType`.
Dcmdline_parser.h290 ArgumentBuilder<TArg> WithType() { in WithType() function
395 auto&& builder = Define(ignore_name).template WithType<std::string>().IntoIgnore(); in Ignore()
400 auto&& builder = Define(ignore_name).template WithType<Unit>().IntoIgnore(); in Ignore()