Lines Matching refs:Decomp
191 std::pair<FileID, unsigned> Decomp = SrcMgr.getDecomposedLoc(Loc); in append() local
192 unsigned Offset = Decomp.second; in append()
193 for (File *F = getFile(SrcMgr, Decomp.first); F; in append()
217 std::pair<FileID, unsigned> Decomp = SrcMgr.getDecomposedLoc(Loc); in lookup() local
218 const File *F = getFile(SrcMgr, Decomp.first); in lookup()
219 return F->lookup(Decomp.second); in lookup()
244 std::pair<FileID, unsigned> Decomp = SrcMgr.getDecomposedIncludedLoc(ID); in getFile() local
245 F.Parent = getFile(SrcMgr, Decomp.first); in getFile()
246 F.ParentOffset = Decomp.second; in getFile()
247 F.StateTransitions.push_back({F.Parent->lookup(Decomp.second), 0}); in getFile()
280 std::pair<FileID, unsigned> Decomp = in dump() local
282 assert(File.ParentOffset == Decomp.second); in dump()
284 << Decomp.first.getHashValue() << "> "; in dump()
285 SrcMgr.getLocForStartOfFile(Decomp.first) in dump()
286 .getLocWithOffset(Decomp.second) in dump()