Lines Matching refs:PLoc

1362   PresumedLoc PLoc = CGF.getContext().getSourceManager().getPresumedLoc(Loc);  in getIdentStringFromSourceLocation()  local
1363 OS << ";" << PLoc.getFilename() << ";"; in getIdentStringFromSourceLocation()
1366 OS << ";" << PLoc.getLine() << ";" << PLoc.getColumn() << ";;"; in getIdentStringFromSourceLocation()
1382 PresumedLoc PLoc = CGF.getContext().getSourceManager().getPresumedLoc(Loc); in emitUpdateLocation() local
1383 const char *FileName = PLoc.getFilename(); in emitUpdateLocation()
1384 unsigned Line = PLoc.getLine(); in emitUpdateLocation()
1385 unsigned Column = PLoc.getColumn(); in emitUpdateLocation()
1608 PresumedLoc PLoc = SM.getPresumedLoc(Loc); in getTargetEntryUniqueInfo() local
1609 assert(PLoc.isValid() && "Source location is expected to be always valid."); in getTargetEntryUniqueInfo()
1612 if (auto EC = llvm::sys::fs::getUniqueID(PLoc.getFilename(), ID)) { in getTargetEntryUniqueInfo()
1613 PLoc = SM.getPresumedLoc(Loc, /*UseLineDirectives=*/false); in getTargetEntryUniqueInfo()
1614 assert(PLoc.isValid() && "Source location is expected to be always valid."); in getTargetEntryUniqueInfo()
1615 if (auto EC = llvm::sys::fs::getUniqueID(PLoc.getFilename(), ID)) in getTargetEntryUniqueInfo()
1617 << PLoc.getFilename() << EC.message(); in getTargetEntryUniqueInfo()
1622 LineNum = PLoc.getLine(); in getTargetEntryUniqueInfo()
9456 PresumedLoc PLoc = CGF.getContext().getSourceManager().getPresumedLoc(Loc); in emitMappingInformation() local
9457 return OMPBuilder.getOrCreateSrcLocStr(PLoc.getFilename(), ExprName, in emitMappingInformation()
9458 PLoc.getLine(), PLoc.getColumn(), in emitMappingInformation()