Home
last modified time | relevance | path

Searched refs:Globs (Results 1 – 6 of 6) sorted by relevance

/external/llvm-project/clang-tools-extra/clang-tidy/
DGlobList.cpp45 GlobList::GlobList(StringRef Globs) { in GlobList() argument
46 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()
DGlobList.h32 GlobList(StringRef Globs);
DClangTidyDiagnosticConsumer.cpp136 CachedGlobList(StringRef Globs) : Globs(Globs) {} in CachedGlobList() argument
145 Result = Globs.contains(S) ? Yes : No; in contains()
152 GlobList Globs; member in ClangTidyContext::CachedGlobList
/external/llvm-project/clang-tools-extra/clangd/
DQueryDriverDatabase.cpp281 llvm::Regex convertGlobsToRegex(llvm::ArrayRef<std::string> Globs) { in convertGlobsToRegex() argument
282 assert(!Globs.empty() && "Globs cannot be empty!"); in convertGlobsToRegex()
284 RegTexts.reserve(Globs.size()); in convertGlobsToRegex()
285 for (llvm::StringRef Glob : Globs) in convertGlobsToRegex()
/external/llvm-project/clang-tools-extra/docs/clang-tidy/
Dindex.rst127 prefix. Globs are processed in order of
128 appearance in the list. Globs without '-'
/external/llvm-project/clang-tools-extra/docs/
Dpp-trace.rst46 callbacks that should be traced. Globs are processed in order of appearance.