Home | History | Annotate | Download | only in Basic

Lines Matching refs:Decomp

188   std::pair<FileID, unsigned> Decomp = SrcMgr.getDecomposedLoc(Loc);
189 unsigned Offset = Decomp.second;
190 for (File *F = getFile(SrcMgr, Decomp.first); F;
214 std::pair<FileID, unsigned> Decomp = SrcMgr.getDecomposedLoc(Loc);
215 const File *F = getFile(SrcMgr, Decomp.first);
216 return F->lookup(Decomp.second);
241 std::pair<FileID, unsigned> Decomp = SrcMgr.getDecomposedIncludedLoc(ID);
242 F.Parent = getFile(SrcMgr, Decomp.first);
243 F.ParentOffset = Decomp.second;
244 F.StateTransitions.push_back({F.Parent->lookup(Decomp.second), 0});
277 std::pair<FileID, unsigned> Decomp =
279 assert(File.ParentOffset == Decomp.second);
281 << Decomp.first.getHashValue() << "> ";
282 SrcMgr.getLocForStartOfFile(Decomp.first)
283 .getLocWithOffset(Decomp.second)