Home | History | Annotate | Download | only in AST

Lines Matching defs:PLoc

573   PresumedLoc PLoc = SM->getPresumedLoc(SpellingLoc);
575 if (PLoc.isInvalid()) {
580 if (strcmp(PLoc.getFilename(), LastLocFilename) != 0) {
581 OS << PLoc.getFilename() << ':' << PLoc.getLine()
582 << ':' << PLoc.getColumn();
583 LastLocFilename = PLoc.getFilename();
584 LastLocLine = PLoc.getLine();
585 } else if (PLoc.getLine() != LastLocLine) {
586 OS << "line" << ':' << PLoc.getLine()
587 << ':' << PLoc.getColumn();
588 LastLocLine = PLoc.getLine();
590 OS << "col" << ':' << PLoc.getColumn();