Lines Matching refs:CheckOptions
45 Options(CheckName, Context->getOptions().CheckOptions, Context) { in ClangTidyCheck()
74 StringRef CheckName, const ClangTidyOptions::OptionMap &CheckOptions, in OptionsView() argument
76 : NamePrefix(CheckName.str() + "."), CheckOptions(CheckOptions), in OptionsView()
81 const auto &Iter = CheckOptions.find(NamePrefix + LocalName.str()); in get()
82 if (Iter != CheckOptions.end()) in get()
103 auto Iter = findPriorityOption(CheckOptions, NamePrefix, LocalName); in getLocalOrGlobal()
104 if (Iter != CheckOptions.end()) in getLocalOrGlobal()
144 auto Iter = findPriorityOption(CheckOptions, NamePrefix, LocalName); in getLocalOrGlobal()
145 if (Iter != CheckOptions.end()) in getLocalOrGlobal()
183 ? findPriorityOption(CheckOptions, NamePrefix, LocalName) in getEnumInt()
184 : CheckOptions.find((NamePrefix + LocalName).str()); in getEnumInt()
185 if (Iter == CheckOptions.end()) in getEnumInt()