Searched refs:flag_string (Results  1 – 2 of 2) sorted by relevance
| /device/google/cuttlefish/host/commands/cvd/selector/ | 
| D | arguments_lexer.cpp | 97 bool ArgumentsLexer::Registered(const std::string& flag_string,  in Registered()  argument99   return Included(flag_string, flag_patterns.value_patterns,  in Registered()
 118     auto [flag_string, value] = CF_EXPECT(Separate(token));  in Process()
 120     if (Contains(flag_patterns_.value_patterns, flag_string)) {  in Process()
 182   return FlagValuePair{.flag_string = first_token, .value = second_token};  in Separate()
 197     const auto [flag_string, value] = CF_EXPECT(Separate(arg));  in Preprocess()
 199     if (Contains(flag_patterns_.bool_patterns, flag_string)) {  in Preprocess()
 202                 "The value for the boolean flag " << flag_string << ", "  in Preprocess()
 205         new_args.emplace_back(flag_string);  in Preprocess()
 208       auto base_pos = flag_string.find_first_not_of('-');  in Preprocess()
 [all …]
 
 | 
| D | arguments_lexer.h | 156     std::string flag_string;  member162   static bool Registered(const std::string& flag_string,
 164   bool Registered(const std::string& flag_string) const {  in Registered()  argument
 165     return Registered(flag_string, flag_patterns_);  in Registered()
 
 |