Lines Matching refs:PLoc
1488 PresumedLoc PLoc = SourceMgr.getPresumedLoc(Loc); in ExpandBuiltinMacro() local
1491 OS << (PLoc.isValid()? PLoc.getLine() : 1); in ExpandBuiltinMacro()
1496 PresumedLoc PLoc = SourceMgr.getPresumedLoc(Tok.getLocation()); in ExpandBuiltinMacro() local
1500 if (II == Ident__BASE_FILE__ && PLoc.isValid()) { in ExpandBuiltinMacro()
1501 SourceLocation NextLoc = PLoc.getIncludeLoc(); in ExpandBuiltinMacro()
1503 PLoc = SourceMgr.getPresumedLoc(NextLoc); in ExpandBuiltinMacro()
1504 if (PLoc.isInvalid()) in ExpandBuiltinMacro()
1507 NextLoc = PLoc.getIncludeLoc(); in ExpandBuiltinMacro()
1513 if (PLoc.isValid()) { in ExpandBuiltinMacro()
1514 FN += PLoc.getFilename(); in ExpandBuiltinMacro()
1544 PresumedLoc PLoc = SourceMgr.getPresumedLoc(Tok.getLocation()); in ExpandBuiltinMacro() local
1545 if (PLoc.isValid()) { in ExpandBuiltinMacro()
1546 PLoc = SourceMgr.getPresumedLoc(PLoc.getIncludeLoc()); in ExpandBuiltinMacro()
1547 for (; PLoc.isValid(); ++Depth) in ExpandBuiltinMacro()
1548 PLoc = SourceMgr.getPresumedLoc(PLoc.getIncludeLoc()); in ExpandBuiltinMacro()