Home
last modified time | relevance | path

Searched refs:RegexMetachars (Results 1 – 4 of 4) 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-7.0/llvm/lib/Support/
DRegex.cpp192 static const char RegexMetachars[] = "()^$|*+?.[]\\{}"; variable
198 return Str.find_first_of(RegexMetachars) == StringRef::npos; in isLiteralERE()
204 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-7.0/llvm/utils/TableGen/
DCodeGenSchedule.cpp98 static const char RegexMetachars[] = "()^$|*+?.[]\\{}"; in apply() local
99 auto FirstMeta = Original.find_first_of(RegexMetachars); in apply()