Home | History | Annotate | Download | only in cmdline

Lines Matching refs:parser_

135     parser_ = ParsedOptions::MakeParser(false);  // do not ignore unrecognized options
160 std::unique_ptr<RuntimeParser> parser_;
169 EXPECT_TRUE(IsResultSuccessful(parser_->Parse(argv))); \
170 EXPECT_EQ(0u, parser_->GetArgumentsMap().Size()); \
178 RuntimeArgumentMap args = parser_->ReleaseArgumentsMap(); \
184 EXPECT_TRUE(IsResultSuccessful(parser_->Parse(argv))); \
185 RuntimeArgumentMap args = parser_->ReleaseArgumentsMap(); \
203 EXPECT_TRUE(IsResultFailure(parser_->Parse(argv), failure_status));\
204 RuntimeArgumentMap args = parser_->ReleaseArgumentsMap();\
209 auto& parser = *parser_;
530 parser_.reset(new RuntimeParser(parserBuilder.Build()));
559 EXPECT_TRUE(IsResultSuccessful(parser_->Parse(
563 auto&& map = parser_->ReleaseArgumentsMap();