Home
last modified time | relevance | path

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

/art/compiler/driver/
Dcompiler_options.cc119 CmdlineResult parse_result = parser.Parse(options); in ParseCompilerOptions() local
120 if (!parse_result.IsSuccess()) { in ParseCompilerOptions()
121 *error_msg = parse_result.GetMessage(); in ParseCompilerOptions()
/art/dex2oat/
Ddex2oat_options.cc274 CmdlineResult parse_result = parser.Parse(argv, argc); in Parse() local
275 if (!parse_result.IsSuccess()) { in Parse()
276 *error_msg = parse_result.GetMessage(); in Parse()
/art/runtime/
Dparsed_options.cc486 CmdlineResult parse_result = parser->Parse(argv_list); in DoParse() local
489 if (parse_result.IsError()) { in DoParse()
490 if (parse_result.GetStatus() == CmdlineResult::kUsage) { in DoParse()
491 UsageMessage(stdout, "%s\n", parse_result.GetMessage().c_str()); in DoParse()
493 } else if (parse_result.GetStatus() == CmdlineResult::kUnknown && !ignore_unrecognized) { in DoParse()
494 Usage("%s\n", parse_result.GetMessage().c_str()); in DoParse()
497 Usage("%s\n", parse_result.GetMessage().c_str()); in DoParse()