Lines Matching defs:KeyValue
64 static void mapping(IO &IO, ClangTidyOptions::StringPair &KeyValue) {
65 IO.mapRequired("key", KeyValue.first);
66 IO.mapRequired("value", KeyValue.second);
74 for (const auto &KeyValue : OptionMap)
75 Options.emplace_back(std::string(KeyValue.getKey()), KeyValue.getValue().Value);
79 for (const auto &KeyValue : Options)
80 Map[KeyValue.first] = ClangTidyOptions::ClangTidyValue(KeyValue.second);
246 for (const auto &KeyValue : Other.CheckOptions) {
248 KeyValue.getKey(),
249 ClangTidyValue(KeyValue.getValue().Value,
250 KeyValue.getValue().Priority + Order));