Lines Matching refs:PL
311 PresumedLoc PL = SM.getPresumedLoc(loc); in printSourceLocation() local
313 OS << llvm::sys::path::filename(PL.getFilename()); in printSourceLocation()
314 OS << ":" << PL.getLine() << ":" in printSourceLocation()
315 << PL.getColumn(); in printSourceLocation()
323 PresumedLoc PL = SM.getPresumedLoc(range.getBegin()); in printSourceRange() local
325 OS << llvm::sys::path::filename(PL.getFilename()); in printSourceRange()
326 OS << " [" << PL.getLine() << ":" in printSourceRange()
327 << PL.getColumn(); in printSourceRange()
331 PL = SM.getPresumedLoc(end); in printSourceRange()
333 unsigned endCol = PL.getColumn() - 1; in printSourceRange()
336 OS << PL.getLine() << ":" << endCol << "]"; in printSourceRange()