Home
last modified time | relevance | path

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

/art/compiler/driver/
Dcompiler_options.cc137 CmdlineResult parse_result = parser.Parse(options); in ParseCompilerOptions() local
138 if (!parse_result.IsSuccess()) { in ParseCompilerOptions()
139 *error_msg = parse_result.GetMessage(); in ParseCompilerOptions()
/art/runtime/
Dparsed_options.cc579 CmdlineResult parse_result = parser->Parse(argv_list); in DoParse() local
582 if (parse_result.IsError()) { in DoParse()
583 if (parse_result.GetStatus() == CmdlineResult::kUsage) { in DoParse()
584 UsageMessage(stdout, "%s\n", parse_result.GetMessage().c_str()); in DoParse()
586 } else if (parse_result.GetStatus() == CmdlineResult::kUnknown && !ignore_unrecognized) { in DoParse()
587 Usage("%s\n", parse_result.GetMessage().c_str()); in DoParse()
590 Usage("%s\n", parse_result.GetMessage().c_str()); in DoParse()
/art/dex2oat/
Ddex2oat_options.cc280 CmdlineResult parse_result = parser.Parse(argv, argc); in Parse() local
281 if (!parse_result.IsSuccess()) { in Parse()
282 *error_msg = parse_result.GetMessage(); in Parse()