Lines Matching refs:LineString
314 std::string &LineString);
1625 std::string &LineString) { in ConvertSourceLocationToLineDirective() argument
1627 LineString += "\n#line "; in ConvertSourceLocationToLineDirective()
1629 LineString += utostr(PLoc.getLine()); in ConvertSourceLocationToLineDirective()
1630 LineString += " \""; in ConvertSourceLocationToLineDirective()
1631 LineString += Lexer::Stringify(PLoc.getFilename()); in ConvertSourceLocationToLineDirective()
1632 LineString += "\"\n"; in ConvertSourceLocationToLineDirective()
3062 std::string LineString("\n#line "); in RewriteLineDirective() local
3064 LineString += utostr(PLoc.getLine()); in RewriteLineDirective()
3065 LineString += " \""; in RewriteLineDirective()
3066 LineString += Lexer::Stringify(PLoc.getFilename()); in RewriteLineDirective()
3068 LineString += "\""; in RewriteLineDirective()
3069 else LineString += "\"\n"; in RewriteLineDirective()
3081 InsertText(Location, LineString); in RewriteLineDirective()