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