Lines Matching defs:Regex
90 llvm::Regex Regex;
105 NameMatcher(const llvm::StringRef Regex)
106 : Regex(Regex), Mode(determineMatchMode(Regex)) {}
111 return Regex.match(ND.getQualifiedNameAsString());
113 return Regex.match("::" + ND.getQualifiedNameAsString());
116 return Regex.match(II->getName());
122 MatchMode determineMatchMode(llvm::StringRef Regex) {
123 if (Regex.starts_with(":") || Regex.starts_with("^:")) {
126 return Regex.contains(":") ? MatchMode::MatchQualified
182 std::vector<llvm::Regex> NameMatchers;