• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/

Lines Matching defs:LocInfo

314   std::pair<FileID, unsigned> LocInfo = getDecomposedExpansionLoc(Loc);
317 const SLocEntry &Entry = getSLocEntry(LocInfo.first, &Invalid);
334 LineTable->AddLineNote(LocInfo.first, LocInfo.second, LineNo, FilenameID,
1002 std::pair<FileID, unsigned> LocInfo = getDecomposedLoc(Loc);
1003 Loc = getSLocEntry(LocInfo.first).getExpansion().getSpellingLoc();
1004 Loc = Loc.getLocWithOffset(LocInfo.second);
1062 std::pair<FileID, unsigned> LocInfo = getDecomposedLoc(Loc);
1063 Loc = getSLocEntry(LocInfo.first).getExpansion().getSpellingLoc();
1064 return Loc.getLocWithOffset(LocInfo.second);
1211 std::pair<FileID, unsigned> LocInfo = getDecomposedSpellingLoc(SL);
1215 const SLocEntry &Entry = getSLocEntry(LocInfo.first, &CharDataInvalid);
1227 return Buffer->getBufferStart() + (CharDataInvalid? 0 : LocInfo.second);
1290 std::pair<FileID, unsigned> LocInfo = getDecomposedSpellingLoc(Loc);
1291 return getColumnNumber(LocInfo.first, LocInfo.second, Invalid);
1297 std::pair<FileID, unsigned> LocInfo = getDecomposedExpansionLoc(Loc);
1298 return getColumnNumber(LocInfo.first, LocInfo.second, Invalid);
1455 std::pair<FileID, unsigned> LocInfo = getDecomposedSpellingLoc(Loc);
1456 return getLineNumber(LocInfo.first, LocInfo.second);
1461 std::pair<FileID, unsigned> LocInfo = getDecomposedExpansionLoc(Loc);
1462 return getLineNumber(LocInfo.first, LocInfo.second);
1482 std::pair<FileID, unsigned> LocInfo = getDecomposedExpansionLoc(Loc);
1484 const SLocEntry &SEntry = getSLocEntry(LocInfo.first, &Invalid);
1498 LineTable->FindNearestLineEntry(LocInfo.first, LocInfo.second);
1529 std::pair<FileID, unsigned> LocInfo = getDecomposedExpansionLoc(Loc);
1532 const SLocEntry &Entry = getSLocEntry(LocInfo.first, &Invalid);
1542 FileID FID = LocInfo.first;
1549 unsigned LineNo = getLineNumber(LocInfo.first, LocInfo.second, &Invalid);
1552 unsigned ColNo = getColumnNumber(LocInfo.first, LocInfo.second, &Invalid);
1564 LineTable->FindNearestLineEntry(LocInfo.first, LocInfo.second)) {
1577 unsigned MarkerLineNo = getLineNumber(LocInfo.first, Entry->FileOffset);
1584 IncludeLoc = getLocForStartOfFile(LocInfo.first);
1604 std::pair<FileID, unsigned> LocInfo = getDecomposedExpansionLoc(Loc);
1607 const SLocEntry &Entry = getSLocEntry(LocInfo.first, &Invalid);
1616 LineTable->FindNearestLineEntry(LocInfo.first, LocInfo.second))