Home | History | Annotate | Download | only in AST

Lines Matching refs:PLoc

187   PresumedLoc PLoc = SM->getPresumedLoc(SpellingLoc);
189 if (PLoc.isInvalid()) {
194 if (strcmp(PLoc.getFilename(), LastLocFilename) != 0) {
195 OS << PLoc.getFilename() << ':' << PLoc.getLine()
196 << ':' << PLoc.getColumn();
197 LastLocFilename = PLoc.getFilename();
198 LastLocLine = PLoc.getLine();
199 } else if (PLoc.getLine() != LastLocLine) {
200 OS << "line" << ':' << PLoc.getLine()
201 << ':' << PLoc.getColumn();
202 LastLocLine = PLoc.getLine();
204 OS << "col" << ':' << PLoc.getColumn();