Lines Matching refs:RegExStr
64 RegExStr = "(\n$)"; in ParsePattern()
77 RegExStr += '^'; in ParsePattern()
79 RegExStr += " *"; in ParsePattern()
104 RegExStr += '('; in ParsePattern()
109 RegExStr += ')'; in ParsePattern()
193 VariableUses.push_back(std::make_pair(Name, RegExStr.size())); in ParsePattern()
200 RegExStr += '('; in ParsePattern()
206 RegExStr += ')'; in ParsePattern()
213 RegExStr += Regex::escape(PatternStr.substr(0, FixedMatchEnd)); in ParsePattern()
219 RegExStr += " *"; in ParsePattern()
220 RegExStr += '$'; in ParsePattern()
235 RegExStr += RS.str(); in AddRegExToRegEx()
243 RegExStr += Backref; in AddBackrefToRegEx()
293 StringRef RegExToMatch = RegExStr; in Match()
296 TmpStr = RegExStr; in Match()
363 ExampleString = RegExStr; in ComputeMatchDistance()