Searched refs:RegexMetachars (Results 1 – 5 of 5) sorted by relevance
175 static const char RegexMetachars[] = "()^$|*+?.[]\\{}"; variable181 return Str.find_first_of(RegexMetachars) == StringRef::npos; in isLiteralERE()187 if (strchr(RegexMetachars, String[i])) in escape()
187 static const char RegexMetachars[] = "()^$|*+?.[]\\{}"; variable193 return Str.find_first_of(RegexMetachars) == StringRef::npos; in isLiteralERE()199 if (strchr(RegexMetachars, String[i])) in escape()
206 static const char RegexMetachars[] = "()^$|*+?.[]\\{}"; variable212 return Str.find_first_of(RegexMetachars) == StringRef::npos; in isLiteralERE()218 if (strchr(RegexMetachars, String[i])) in escape()
210 static const char RegexMetachars[] = "()^$|*+?.[]\\{}"; variable216 return Str.find_first_of(RegexMetachars) == StringRef::npos; in isLiteralERE()222 if (strchr(RegexMetachars, String[i])) in escape()
97 static const char RegexMetachars[] = "()^$|*+?.[]\\{}"; in apply() local98 auto FirstMeta = Original.find_first_of(RegexMetachars); in apply()