Home | History | Annotate | Download | only in AST

Lines Matching refs:PLoc

456   PresumedLoc PLoc = SM->getPresumedLoc(SpellingLoc);
458 if (PLoc.isInvalid()) {
463 if (strcmp(PLoc.getFilename(), LastLocFilename) != 0) {
464 OS << PLoc.getFilename() << ':' << PLoc.getLine()
465 << ':' << PLoc.getColumn();
466 LastLocFilename = PLoc.getFilename();
467 LastLocLine = PLoc.getLine();
468 } else if (PLoc.getLine() != LastLocLine) {
469 OS << "line" << ':' << PLoc.getLine()
470 << ':' << PLoc.getColumn();
471 LastLocLine = PLoc.getLine();
473 OS << "col" << ':' << PLoc.getColumn();