Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DRegex.cpp210 static const char RegexMetachars[] = "()^$|*+?.[]\\{}"; variable
216 return Str.find_first_of(RegexMetachars) == StringRef::npos; in isLiteralERE()
222 if (strchr(RegexMetachars, String[i])) in escape()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DCodeGenSchedule.cpp97 static const char RegexMetachars[] = "()^$|*+?.[]\\{}"; in apply() local
98 auto FirstMeta = Original.find_first_of(RegexMetachars); in apply()