• Home
  • Raw
  • Download

Lines Matching refs:PLoc

674     FullSourceLoc Loc, PresumedLoc PLoc, DiagnosticsEngine::Level Level,  in emitDiagnosticMessage()  argument
681 emitDiagnosticLoc(Loc, PLoc, Level, Ranges); in emitDiagnosticMessage()
805 void TextDiagnostic::emitDiagnosticLoc(FullSourceLoc Loc, PresumedLoc PLoc, in emitDiagnosticLoc() argument
808 if (PLoc.isInvalid()) { in emitDiagnosticLoc()
820 unsigned LineNo = PLoc.getLine(); in emitDiagnosticLoc()
828 emitFilename(PLoc.getFilename(), Loc.getManager()); in emitDiagnosticLoc()
840 if (unsigned ColNo = PLoc.getColumn()) { in emitDiagnosticLoc()
909 void TextDiagnostic::emitIncludeLocation(FullSourceLoc Loc, PresumedLoc PLoc) { in emitIncludeLocation() argument
910 if (DiagOpts->ShowLocation && PLoc.isValid()) in emitIncludeLocation()
911 OS << "In file included from " << PLoc.getFilename() << ':' in emitIncludeLocation()
912 << PLoc.getLine() << ":\n"; in emitIncludeLocation()
917 void TextDiagnostic::emitImportLocation(FullSourceLoc Loc, PresumedLoc PLoc, in emitImportLocation() argument
919 if (DiagOpts->ShowLocation && PLoc.isValid()) in emitImportLocation()
921 << PLoc.getFilename() << ':' << PLoc.getLine() << ":\n"; in emitImportLocation()
927 PresumedLoc PLoc, in emitBuildingModuleLocation() argument
929 if (DiagOpts->ShowLocation && PLoc.isValid()) in emitBuildingModuleLocation()
931 << PLoc.getFilename() << ':' << PLoc.getLine() << ":\n"; in emitBuildingModuleLocation()
1352 PresumedLoc PLoc = SM.getPresumedLoc(BLoc); in emitParseableFixits() local
1353 if (PLoc.isInvalid()) in emitParseableFixits()
1357 OS.write_escaped(PLoc.getFilename()); in emitParseableFixits()