Searched defs:Parse (Results 1 - 5 of 5) sorted by relevance

/art/cmdline/
H A Dcmdline_type_parser.h33 // Parse a single value for an argument definition out of the wildcard component.
37 Result Parse(const std::string& args ATTRIBUTE_UNUSED) { function in struct:art::CmdlineTypeParser
42 // Parse a value and append it into the existing value so far, for argument
45 // The value is parsed out of the wildcard component as in Parse.
H A Dcmdline.h122 kParseOk, // Parse successful. Do not set the error message.
124 kParseError, // Parse ok, but failed elsewhere. Print the set error message.
127 bool Parse(int argc, char** argv) { function in struct:art::CmdlineArgs
300 if (args_ == nullptr || !args_->Parse(argc, argv)) {
H A Dcmdline_parser.h446 CmdlineResult Parse(const std::string& argv) { function in struct:art::CmdlineParser
450 return Parse(TokenRange(std::move(tokenized)));
453 // Parse the arguments; storing results into the arguments map. Returns success value.
454 CmdlineResult Parse(const char* argv) { function in struct:art::CmdlineParser
455 return Parse(std::string(argv));
458 // Parse the arguments; storing the results into the arguments map. Returns success value.
460 CmdlineResult Parse(const std::vector<const char*>& argv) { function in struct:art::CmdlineParser
461 return Parse(TokenRange(argv.begin(), argv.end()));
464 // Parse the arguments; storing the results into the arguments map. Returns success value.
466 CmdlineResult Parse(cons function in struct:art::CmdlineParser
472 CmdlineResult Parse(const char* argv[], int argc) { function in struct:art::CmdlineParser
518 CmdlineResult Parse(TokenRange&& arguments_list) { function in struct:art::CmdlineParser
[all...]
H A Dcmdline_types.h39 // and implements either Parse or ParseAndAppend
47 // Parse argument definitions for Unit-typed arguments.
50 Result Parse(const std::string& args) { function in struct:art::CmdlineType
77 Result Parse(const std::string& options) { function in struct:art::CmdlineType
182 Result Parse(const std::string arg) { function in struct:art::CmdlineType
195 // Parse a string of the form /[0-9]+[kKmMgG]?/, which is used to specify
266 Result Parse(const std::string& str) { function in struct:art::CmdlineType
287 Result Parse(const std::string& str) { function in struct:art::CmdlineType
291 // Parse into a larger type (long long) because we can't use strtoul
350 Result Parse(cons function in struct:art::CmdlineType
366 Result Parse(const std::string& args) { function in struct:art::CmdlineType
384 Result Parse(const std::string& args) { function in struct:art::CmdlineType
436 Result Parse(const std::string& args) { function in struct:art::CmdlineType
480 Result Parse(const std::string& option) { // -Xgc: already stripped function in struct:art::CmdlineType
556 Result Parse(const std::string& substring) { function in struct:art::CmdlineType
578 Result Parse(const std::string& options) { function in struct:art::CmdlineType
[all...]
/art/runtime/
H A Dparsed_options.cc49 if (parsed->Parse(options, ignore_unrecognized, runtime_options)) {
374 bool ParsedOptions::Parse(const RuntimeOptions& options, bool ignore_unrecognized, function in class:art::ParsedOptions
405 CmdlineResult parse_result = parser->Parse(argv_list);

Completed in 129 milliseconds