/art/cmdline/ |
D | cmdline_types.h | 59 Result Parse(const std::string& args) { 73 Result Parse(const std::string& option) { 99 Result Parse(const std::string& arg) { 183 Result Parse(const std::string& str) { 227 Result Parse(const std::string& str) { 236 Result Parse(const std::string& str) { 283 Result Parse(const std::string& str) { 285 CmdlineParseResult<unsigned int> res = uint_parser.Parse(str); 299 Result Parse(const std::string& args) { 317 Result Parse(const std::string& args) { [all …]
|
D | cmdline_parser.h | 446 CmdlineResult Parse(const std::string& argv) { in Parse() function 450 return Parse(TokenRange(std::move(tokenized))); in Parse() 454 CmdlineResult Parse(const char* argv) { in Parse() function 455 return Parse(std::string(argv)); in Parse() 460 CmdlineResult Parse(const std::vector<const char*>& argv) { in Parse() function 461 return Parse(TokenRange(argv.begin(), argv.end())); in Parse() 466 CmdlineResult Parse(const std::vector<std::string>& argv) { in Parse() function 467 return Parse(TokenRange(argv.begin(), argv.end())); in Parse() 472 CmdlineResult Parse(const char* argv[], int argc) { in Parse() function 473 return Parse(TokenRange(&argv[1], argc - 1)); // ignore argv[0] because it's the program name in Parse() [all …]
|
D | cmdline_type_parser.h | 37 Result Parse(const std::string& args ATTRIBUTE_UNUSED) { in Parse() function
|
D | cmdline_parser_test.cc | 169 EXPECT_TRUE(IsResultSuccessful(parser_->Parse(argv))); \ 184 EXPECT_TRUE(IsResultSuccessful(parser_->Parse(argv))); \ 203 EXPECT_TRUE(IsResultFailure(parser_->Parse(argv), failure_status));\ 215 EXPECT_TRUE(IsResultSuccessful(parser.Parse(""))); in TEST_F() 559 EXPECT_TRUE(IsResultSuccessful(parser_->Parse( in TEST_F()
|
D | cmdline.h | 133 bool Parse(int argc, char** argv) { in Parse() function 314 if (args_ == nullptr || !args_->Parse(argc, argv)) { in Main()
|
D | README.md | 183 The `Parse` method should be implemented for most types. Some types will allow appending (such as an 191 Result Parse(const std::string& str) {
|
/art/runtime/ |
D | parsed_options_test.cc | 74 bool parsed = ParsedOptions::Parse(options, false, &map); in TEST_F() 118 bool parsed = ParsedOptions::Parse(options, false, &map); in TEST_F() 137 bool parsed = ParsedOptions::Parse(options, false, &map); in TEST_F() 156 bool parsed = ParsedOptions::Parse(options, false, &map); in TEST_F()
|
D | parsed_options.h | 53 static bool Parse(const RuntimeOptions& options,
|
D | class_loader_context.h | 182 bool Parse(const std::string& spec, bool parse_checksums = false);
|
D | class_loader_context.cc | 79 if (result->Parse(spec)) { in Create() 152 bool ClassLoaderContext::Parse(const std::string& spec, bool parse_checksums) { in Parse() function in art::ClassLoaderContext 684 if (!expected_context.Parse(context_spec, verify_checksums)) { in VerifyClassLoaderContextMatch()
|
D | parsed_options.cc | 49 bool ParsedOptions::Parse(const RuntimeOptions& options, in Parse() function in art::ParsedOptions 486 CmdlineResult parse_result = parser->Parse(argv_list); in DoParse()
|
D | runtime_options.def | 36 // Parse-able keys from the command line.
|
D | class_loader_context_test.cc | 128 if (!context->Parse(context_spec, /*parse_checksums*/ true)) { in ParseContextWithChecksums()
|
D | runtime.cc | 630 bool parsed = ParsedOptions::Parse(raw_options, ignore_unrecognized, runtime_options); in ParseOptions()
|
/art/dex2oat/ |
D | dex2oat_options.h | 61 static std::unique_ptr<Dex2oatArgumentMap> Parse(int argc,
|
D | dex2oat_options.cc | 28 Result Parse(const std::string& option) { in Parse() function 270 std::unique_ptr<Dex2oatArgumentMap> Dex2oatArgumentMap::Parse(int argc, in Parse() function in art::Dex2oatArgumentMap 274 CmdlineResult parse_result = parser.Parse(argv, argc); in Parse()
|
D | dex2oat_options.def | 36 // Parse-able keys from the command line.
|
D | dex2oat.cc | 1182 std::unique_ptr<M> args_uptr = M::Parse(argc, const_cast<const char**>(argv), &error_msg); in ParseArgs()
|
/art/compiler/driver/ |
D | compiler_options.cc | 119 CmdlineResult parse_result = parser.Parse(options); in ParseCompilerOptions()
|
D | compiler_options_map.def | 36 // Parse-able keys from the command line.
|
/art/tools/ |
D | art | 126 # Parse a colon-separated list into an array (e.g. "foo.dex:bar.dex" -> (foo.dex bar.dex)) 178 # Parse -cp <CP>, -classpath <CP>, and $CLASSPATH to find the dex files.
|
/art/cmdline/detail/ |
D | cmdline_parse_argument_detail.h | 449 CmdlineParseResult<TArg> result = type_parser.Parse(argument); in ParseArgumentSingle()
|