Lines Matching refs:CommandLineOptions
43 CommandLineOptions opts = in TEST()
44 CommandLineOptions("test").OptionalFlag("--foo", "", &foo).OptionalFlag("--bar", "", &bar); in TEST()
61 CommandLineOptions opts = CommandLineOptions("test") in TEST()
75 CommandLineOptions opts = CommandLineOptions("test").MandatoryOption("--foo", "", &foo); in TEST()
83 CommandLineOptions opts = CommandLineOptions("test").MandatoryOption("--foo", "", &args); in TEST()
94 CommandLineOptions opts = CommandLineOptions("test") in TEST()
119 CommandLineOptions opts = CommandLineOptions("test") in TEST()
168 CommandLineOptions opts = CommandLineOptions("test") in TEST()
191 std::unique_ptr<std::vector<std::string>> v = CommandLineOptions::ConvertArgvToVector(3, argv); in TEST()
202 std::unique_ptr<std::vector<std::string>> v = CommandLineOptions::ConvertArgvToVector(1, argv); in TEST()
215 CommandLineOptions opts = CommandLineOptions("test") in TEST()