Lines Matching defs:CheckOptions
20 Options(CheckName, Context->getOptions().CheckOptions, Context) {
50 StringRef CheckName, const ClangTidyOptions::OptionMap &CheckOptions,
52 : NamePrefix((CheckName + ".").str()), CheckOptions(CheckOptions),
59 const auto &Iter = CheckOptions.find((NamePrefix + LocalName).str());
60 if (Iter != CheckOptions.end())
99 auto Iter = findPriorityOption(CheckOptions, NamePrefix, LocalName, Context);
100 if (Iter != CheckOptions.end())
132 auto Iter = findPriorityOption(CheckOptions, NamePrefix, LocalName, Context);
133 if (Iter != CheckOptions.end()) {
172 auto Iter = CheckGlobal ? findPriorityOption(CheckOptions, NamePrefix,
174 : CheckOptions.find((NamePrefix + LocalName).str());
175 if (Iter == CheckOptions.end())