Home
last modified time | relevance | path

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

/art/runtime/
Dparsed_options.cc77 .WithType<std::string>() in MakeParser()
80 .WithType<ParseStringList<':'>>() // std::vector<std::string>, split by : in MakeParser()
83 .WithType<std::string>() in MakeParser()
86 .WithType<std::string>() in MakeParser()
93 .WithType<JDWP::JdwpOptions>() in MakeParser()
96 .WithType<MemoryKiB>() in MakeParser()
99 .WithType<MemoryKiB>() in MakeParser()
102 .WithType<MemoryKiB>() in MakeParser()
105 .WithType<MemoryKiB>() in MakeParser()
108 .WithType<MemoryKiB>() in MakeParser()
[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()