Home | History | Annotate | Download | only in Core

Lines Matching refs:checker

30 static bool isInPackage(const CheckerRegistry::CheckerInfo &checker,
32 // Does the checker's full name have the package as a prefix?
33 if (!checker.FullName.startswith(packageName))
36 // Is the package actually just the name of a specific checker?
37 if (checker.FullName.size() == packageName.size())
40 // Is the checker in the package (or a subpackage)?
41 if (checker.FullName[packageName.size()] == PackageSeparator)
64 // There is at least one checker in the package; claim the option.
68 // If the package doesn't exist, assume the option refers to a single checker.
88 // Record the presence of the checker in its packages.
126 for (auto &checker : Checkers) {
127 if (checker.FullName.startswith(checkerName) &&
128 (checker.FullName.size() == pos || checker.FullName[pos] == '.')) {