Lines Matching refs:PL
307 PresumedLoc PL = SM.getPresumedLoc(loc); in printSourceLocation() local
309 OS << llvm::sys::path::filename(PL.getFilename()); in printSourceLocation()
310 OS << ":" << PL.getLine() << ":" in printSourceLocation()
311 << PL.getColumn(); in printSourceLocation()
319 PresumedLoc PL = SM.getPresumedLoc(range.getBegin()); in printSourceRange() local
321 OS << llvm::sys::path::filename(PL.getFilename()); in printSourceRange()
322 OS << " [" << PL.getLine() << ":" in printSourceRange()
323 << PL.getColumn(); in printSourceRange()
327 PL = SM.getPresumedLoc(end); in printSourceRange()
329 unsigned endCol = PL.getColumn() - 1; in printSourceRange()
332 OS << PL.getLine() << ":" << endCol << "]"; in printSourceRange()