Home
last modified time | relevance | path

Searched refs:MatchMode (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/utils/
H A DMatchers.h74 enum class MatchMode { enum
85 MatchMode Mode;
93 case MatchMode::MatchQualified: in match()
95 case MatchMode::MatchFullyQualified: in match()
103 MatchMode determineMatchMode(llvm::StringRef Regex) { in determineMatchMode()
105 return MatchMode::MatchFullyQualified; in determineMatchMode()
107 return Regex.contains(":") ? MatchMode::MatchQualified in determineMatchMode()
108 : MatchMode::MatchUnqualified; in determineMatchMode()
/llvm-project-15.0.7/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h776 AncestorMatchMode MatchMode) {
784 Matcher, Builder, MatchMode);
809 AncestorMatchMode MatchMode) = 0;
/llvm-project-15.0.7/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp681 AncestorMatchMode MatchMode) override { in matchesAncestorOf() argument
686 if (MatchMode == AncestorMatchMode::AMM_ParentOnly) in matchesAncestorOf()