Home
last modified time | relevance | path

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

/external/webrtc/webrtc/tools/
Dsimple_command_line_parser_unittest.cc73 TEST_F(CommandLineParserTest, GetCommandLineFlagName) { in TEST_F() argument
74 EXPECT_EQ("foo", parser_->GetCommandLineFlagName("--foo")); in TEST_F()
75 EXPECT_EQ("foo-foo", parser_->GetCommandLineFlagName("--foo-foo")); in TEST_F()
76 EXPECT_EQ("bar", parser_->GetCommandLineFlagName("--bar=1")); in TEST_F()
Dsimple_command_line_parser.h83 std::string GetCommandLineFlagName(std::string flag);
91 FRIEND_TEST_ALL_PREFIXES(CommandLineParserTest, GetCommandLineFlagName);
Dsimple_command_line_parser.cc55 std::string CommandLineParser::GetCommandLineFlagName(std::string flag) { in GetCommandLineFlagName() function in webrtc::test::CommandLineParser
94 std::string flag_name = GetCommandLineFlagName(*iter); in ProcessFlags()