Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/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, C)) in escape()
/openbsd/gnu/llvm/llvm/utils/TableGen/
H A DCodeGenSchedule.cpp96 static const char RegexMetachars[] = "()^$|*+?.[]\\{}"; in apply() local
97 auto FirstMeta = Original.find_first_of(RegexMetachars); in apply()