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