Lines Matching refs:PL
309 PresumedLoc PL = SM.getPresumedLoc(loc); in printSourceLocation() local
311 OS << llvm::sys::path::filename(PL.getFilename()); in printSourceLocation()
312 OS << ":" << PL.getLine() << ":" in printSourceLocation()
313 << PL.getColumn(); in printSourceLocation()
321 PresumedLoc PL = SM.getPresumedLoc(range.getBegin()); in printSourceRange() local
323 OS << llvm::sys::path::filename(PL.getFilename()); in printSourceRange()
324 OS << " [" << PL.getLine() << ":" in printSourceRange()
325 << PL.getColumn(); in printSourceRange()
329 PL = SM.getPresumedLoc(end); in printSourceRange()
331 unsigned endCol = PL.getColumn() - 1; in printSourceRange()
334 OS << PL.getLine() << ":" << endCol << "]"; in printSourceRange()