Lines Matching refs:LineString
313 std::string &LineString);
1624 std::string &LineString) { in ConvertSourceLocationToLineDirective() argument
1626 LineString += "\n#line "; in ConvertSourceLocationToLineDirective()
1628 LineString += utostr(PLoc.getLine()); in ConvertSourceLocationToLineDirective()
1629 LineString += " \""; in ConvertSourceLocationToLineDirective()
1630 LineString += Lexer::Stringify(PLoc.getFilename()); in ConvertSourceLocationToLineDirective()
1631 LineString += "\"\n"; in ConvertSourceLocationToLineDirective()
3061 std::string LineString("\n#line "); in RewriteLineDirective() local
3063 LineString += utostr(PLoc.getLine()); in RewriteLineDirective()
3064 LineString += " \""; in RewriteLineDirective()
3065 LineString += Lexer::Stringify(PLoc.getFilename()); in RewriteLineDirective()
3067 LineString += "\""; in RewriteLineDirective()
3068 else LineString += "\"\n"; in RewriteLineDirective()
3080 InsertText(Location, LineString); in RewriteLineDirective()