Lines Matching refs:LineString
314 std::string &LineString);
1620 std::string &LineString) { in ConvertSourceLocationToLineDirective() argument
1622 LineString += "\n#line "; in ConvertSourceLocationToLineDirective()
1624 LineString += utostr(PLoc.getLine()); in ConvertSourceLocationToLineDirective()
1625 LineString += " \""; in ConvertSourceLocationToLineDirective()
1626 LineString += Lexer::Stringify(PLoc.getFilename()); in ConvertSourceLocationToLineDirective()
1627 LineString += "\"\n"; in ConvertSourceLocationToLineDirective()
3055 std::string LineString("\n#line "); in RewriteLineDirective() local
3057 LineString += utostr(PLoc.getLine()); in RewriteLineDirective()
3058 LineString += " \""; in RewriteLineDirective()
3059 LineString += Lexer::Stringify(PLoc.getFilename()); in RewriteLineDirective()
3061 LineString += "\""; in RewriteLineDirective()
3062 else LineString += "\"\n"; in RewriteLineDirective()
3074 InsertText(Location, LineString); in RewriteLineDirective()