Home | History | Annotate | Download | only in Core

Lines Matching refs:checker

27 static bool isInPackage(const CheckerRegistry::CheckerInfo &checker,
29 // Does the checker's full name have the package as a prefix?
30 if (!checker.FullName.startswith(packageName))
33 // Is the package actually just the name of a specific checker?
34 if (checker.FullName.size() == packageName.size())
37 // Is the checker in the package (or a subpackage)?
38 if (checker.FullName[packageName.size()] == PackageSeparator)
61 // There is at least one checker in the package; claim the option.
65 // If the package doesn't exist, assume the option refers to a single checker.
85 // Record the presence of the checker in its packages.