Home | History | Annotate | Download | only in AST

Lines Matching refs:PLoc

579   PresumedLoc PLoc = SM->getPresumedLoc(SpellingLoc);
581 if (PLoc.isInvalid()) {
586 if (strcmp(PLoc.getFilename(), LastLocFilename) != 0) {
587 OS << PLoc.getFilename() << ':' << PLoc.getLine()
588 << ':' << PLoc.getColumn();
589 LastLocFilename = PLoc.getFilename();
590 LastLocLine = PLoc.getLine();
591 } else if (PLoc.getLine() != LastLocLine) {
592 OS << "line" << ':' << PLoc.getLine()
593 << ':' << PLoc.getColumn();
594 LastLocLine = PLoc.getLine();
596 OS << "col" << ':' << PLoc.getColumn();