Searched refs:Globs (Results 1 – 6 of 6) sorted by relevance
45 GlobList::GlobList(StringRef Globs) { in GlobList() argument46 Items.reserve(Globs.count(',') + 1); in GlobList()49 Item.IsPositive = !ConsumeNegativeIndicator(Globs); in GlobList()50 Item.Regex = ConsumeGlob(Globs); in GlobList()52 } while (!Globs.empty()); in GlobList()
32 GlobList(StringRef Globs);
136 CachedGlobList(StringRef Globs) : Globs(Globs) {} in CachedGlobList() argument145 Result = Globs.contains(S) ? Yes : No; in contains()152 GlobList Globs; member in ClangTidyContext::CachedGlobList
281 llvm::Regex convertGlobsToRegex(llvm::ArrayRef<std::string> Globs) { in convertGlobsToRegex() argument282 assert(!Globs.empty() && "Globs cannot be empty!"); in convertGlobsToRegex()284 RegTexts.reserve(Globs.size()); in convertGlobsToRegex()285 for (llvm::StringRef Glob : Globs) in convertGlobsToRegex()
127 prefix. Globs are processed in order of128 appearance in the list. Globs without '-'
46 callbacks that should be traced. Globs are processed in order of appearance.