Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DRegex.cpp230 static const char RegexMetachars[] = "()^$|*+?.[]\\{}";
236 return Str.find_first_of(RegexMetachars) == StringRef::npos;
242 if (strchr(RegexMetachars, C))
207 static const char RegexMetachars[] = "()^$|*+?.[]\\{}"; global() variable
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/
H A DUtils.cpp158 static StringLiteral RegexMetachars = "()^$|+.[]\\{}"; variable
187 if (RegexMetachars.contains(C)) in createRegexFromGlob()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenSchedule.cpp98 static const char RegexMetachars[] = "()^$|*+?.[]\\{}"; in apply() local
99 auto FirstMeta = Original.find_first_of(RegexMetachars); in apply()