Home
last modified time | relevance | path

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

/art/compiler/driver/
Dcompiler_options.cc135 CmdlineResult parse_result = parser.Parse(options); in ParseCompilerOptions() local
136 if (!parse_result.IsSuccess()) { in ParseCompilerOptions()
137 *error_msg = parse_result.GetMessage(); in ParseCompilerOptions()
/art/dex2oat/
Ddex2oat_options.cc270 CmdlineResult parse_result = parser.Parse(argv, argc); in Parse() local
271 if (!parse_result.IsSuccess()) { in Parse()
272 *error_msg = parse_result.GetMessage(); in Parse()
/art/runtime/
Dparsed_options.cc512 CmdlineResult parse_result = parser->Parse(argv_list); in DoParse() local
515 if (parse_result.IsError()) { in DoParse()
516 if (parse_result.GetStatus() == CmdlineResult::kUsage) { in DoParse()
517 UsageMessage(stdout, "%s\n", parse_result.GetMessage().c_str()); in DoParse()
519 } else if (parse_result.GetStatus() == CmdlineResult::kUnknown && !ignore_unrecognized) { in DoParse()
520 Usage("%s\n", parse_result.GetMessage().c_str()); in DoParse()
523 Usage("%s\n", parse_result.GetMessage().c_str()); in DoParse()