Home | History | Annotate | Download | only in Frontend

Lines Matching refs:PLoc

675                                       PresumedLoc PLoc,
685 emitDiagnosticLoc(Loc, PLoc, Level, Ranges, *SM);
772 void TextDiagnostic::emitDiagnosticLoc(SourceLocation Loc, PresumedLoc PLoc,
776 if (PLoc.isInvalid()) {
790 unsigned LineNo = PLoc.getLine();
798 OS << PLoc.getFilename();
807 if (unsigned ColNo = PLoc.getColumn()) {
874 PresumedLoc PLoc,
877 OS << "In file included from " << PLoc.getFilename() << ':'
878 << PLoc.getLine() << ":\n";
883 void TextDiagnostic::emitImportLocation(SourceLocation Loc, PresumedLoc PLoc,
888 << PLoc.getFilename() << ':' << PLoc.getLine() << ":\n";
894 PresumedLoc PLoc,
897 if (DiagOpts->ShowLocation && PLoc.getFilename())
899 PLoc.getFilename() << ':' << PLoc.getLine() << ":\n";
1244 PresumedLoc PLoc = SM.getPresumedLoc(BLoc);
1245 if (PLoc.isInvalid())
1249 OS.write_escaped(PLoc.getFilename());