Home | History | Annotate | Download | only in Frontend

Lines Matching refs:PLoc

676                                       PresumedLoc PLoc,
686 emitDiagnosticLoc(Loc, PLoc, Level, Ranges, *SM);
773 void TextDiagnostic::emitDiagnosticLoc(SourceLocation Loc, PresumedLoc PLoc,
777 if (PLoc.isInvalid()) {
791 unsigned LineNo = PLoc.getLine();
799 OS << PLoc.getFilename();
808 if (unsigned ColNo = PLoc.getColumn()) {
884 PresumedLoc PLoc,
886 if (DiagOpts->ShowLocation && PLoc.isValid())
887 OS << "In file included from " << PLoc.getFilename() << ':'
888 << PLoc.getLine() << ":\n";
893 void TextDiagnostic::emitImportLocation(SourceLocation Loc, PresumedLoc PLoc,
896 if (DiagOpts->ShowLocation && PLoc.isValid())
898 << PLoc.getFilename() << ':' << PLoc.getLine() << ":\n";
904 PresumedLoc PLoc,
907 if (DiagOpts->ShowLocation && PLoc.isValid())
909 << PLoc.getFilename() << ':' << PLoc.getLine() << ":\n";
1263 PresumedLoc PLoc = SM.getPresumedLoc(BLoc);
1264 if (PLoc.isInvalid())
1268 OS.write_escaped(PLoc.getFilename());