Lines Matching refs:PL
310 PresumedLoc PL = SM.getPresumedLoc(loc); in printSourceLocation() local
312 OS << llvm::sys::path::filename(PL.getFilename()); in printSourceLocation()
313 OS << ":" << PL.getLine() << ":" in printSourceLocation()
314 << PL.getColumn(); in printSourceLocation()
322 PresumedLoc PL = SM.getPresumedLoc(range.getBegin()); in printSourceRange() local
324 OS << llvm::sys::path::filename(PL.getFilename()); in printSourceRange()
325 OS << " [" << PL.getLine() << ":" in printSourceRange()
326 << PL.getColumn(); in printSourceRange()
330 PL = SM.getPresumedLoc(end); in printSourceRange()
332 unsigned endCol = PL.getColumn() - 1; in printSourceRange()
335 OS << PL.getLine() << ":" << endCol << "]"; in printSourceRange()