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