Searched defs:OptionValueMap (Results 1 – 2 of 2) sorted by relevance
73 struct OptionValueMap { struct74 std::multimap<OptionName, OptionValue> values;76 bool PullBoolValue(const OptionName& name) { return PullValue(name).has_value(); } in PullBoolValue()81 if (auto option_value = PullValue(name); option_value) {94 if (auto option_value = PullValue(name); option_value) {104 void PullStringValue(const OptionName& name, std::string* value) { in PullStringValue()111 std::optional<OptionValue> PullValue(const OptionName& name) { in PullValue()120 std::vector<std::string> PullStringValues(const OptionName& name) { in PullStringValues()144 OptionValueMap* options, argument
164 TEST(command, OptionValueMap) { in TEST() argument