Home
last modified time | relevance | path

Searched refs:RegExStr (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheck.cpp791 RegExStr = "(\n$)"; in parsePattern()
810 RegExStr += '^'; in parsePattern()
812 RegExStr += " *"; in parsePattern()
839 RegExStr += '('; in parsePattern()
846 RegExStr += ')'; in parsePattern()
890 size_t SubstInsertIdx = RegExStr.size(); in parsePattern()
978 RegExStr += '('; in parsePattern()
1009 RegExStr += ')'; in parsePattern()
1044 RegExStr += Regex::escape(PatternStr.substr(0, FixedMatchEnd)); in parsePattern()
1050 RegExStr += " *"; in parsePattern()
[all …]
H A DFileCheckImpl.h338 /// Class representing a substitution to perform in the RegExStr string.
353 // Index in RegExStr of where to do the substitution.
366 /// \returns the index where the substitution is to be performed in RegExStr.
574 std::string RegExStr;
577 /// an expression in the RegExStr regex at match time. For example, in the in convertToErrorCode()
579 /// RegExStr will contain "foobaz" and we'll get two entries in this vector
585 /// their parenthesis group in RegExStr capturing their last definition. in reportedOrSuccess()
588 /// RegExStr will be "foo(.*)baz(\1<quux value>(.*))" where <quux value> is in reportedOrSuccess()
600 /// number of the parenthesis group in RegExStr to capture that value. variable
606 /// Number of the parenthesis group in RegExStr tha
[all...]
/freebsd/contrib/llvm-project/llvm/tools/llvm-extract/
H A Dllvm-extract.cpp238 StringRef RegExStr = ExtractRegExpFuncs[i]; in main() local
239 Regex RegEx(RegExStr); in main()