Lines Matching defs:Decomp
180 std::pair<FileID, unsigned> Decomp = SrcMgr.getDecomposedLoc(Loc);
181 unsigned Offset = Decomp.second;
182 for (File *F = getFile(SrcMgr, Decomp.first); F;
206 std::pair<FileID, unsigned> Decomp = SrcMgr.getDecomposedLoc(Loc);
207 const File *F = getFile(SrcMgr, Decomp.first);
208 return F->lookup(Decomp.second);
233 std::pair<FileID, unsigned> Decomp = SrcMgr.getDecomposedIncludedLoc(ID);
234 F.Parent = getFile(SrcMgr, Decomp.first);
235 F.ParentOffset = Decomp.second;
236 F.StateTransitions.push_back({F.Parent->lookup(Decomp.second), 0});
269 std::pair<FileID, unsigned> Decomp =
271 assert(File.ParentOffset == Decomp.second);
273 << Decomp.first.getHashValue() << "> ";
274 SrcMgr.getLocForStartOfFile(Decomp.first)
275 .getLocWithOffset(Decomp.second)