Home
last modified time | relevance | path

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

/external/llvm/lib/Support/
DRegex.cpp175 static const char RegexMetachars[] = "()^$|*+?.[]\\{}"; variable
181 return Str.find_first_of(RegexMetachars) == StringRef::npos; in isLiteralERE()
187 if (strchr(RegexMetachars, String[i])) in escape()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DRegex.cpp187 static const char RegexMetachars[] = "()^$|*+?.[]\\{}"; variable
193 return Str.find_first_of(RegexMetachars) == StringRef::npos; in isLiteralERE()
199 if (strchr(RegexMetachars, String[i])) in escape()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DRegex.cpp206 static const char RegexMetachars[] = "()^$|*+?.[]\\{}"; variable
212 return Str.find_first_of(RegexMetachars) == StringRef::npos; in isLiteralERE()
218 if (strchr(RegexMetachars, String[i])) in escape()
/external/llvm-project/llvm/lib/Support/
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()
/external/llvm-project/llvm/utils/TableGen/
DCodeGenSchedule.cpp97 static const char RegexMetachars[] = "()^$|*+?.[]\\{}"; in apply() local
98 auto FirstMeta = Original.find_first_of(RegexMetachars); in apply()