Searched defs:OptionValueMap (Results 1 – 2 of 2) sorted by relevance
74 struct OptionValueMap { struct75 std::multimap<OptionName, OptionValue> values;77 bool PullBoolValue(const OptionName& name) { return PullValue(name).has_value(); } in PullBoolValue()82 if (auto option_value = PullValue(name); option_value) {95 if (auto option_value = PullValue(name); option_value) {105 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
193 TEST(command, OptionValueMap) { in TEST() argument