Searched refs:FileIndex (Results 1 – 2 of 2) sorted by relevance
/external/clang/lib/Rewrite/ |
D | DeltaTree.cpp | 106 bool DoInsertion(unsigned FileIndex, int Delta, InsertResult *InsertRes); 182 bool DeltaTreeNode::DoInsertion(unsigned FileIndex, int Delta, in DoInsertion() argument 189 while (i != e && FileIndex > getValue(i).FileLoc) in DoInsertion() 194 if (i != e && getValue(i).FileLoc == FileIndex) { in DoInsertion() 211 Values[i] = SourceDelta::get(FileIndex, Delta); in DoInsertion() 221 if (InsertRes->Split.FileLoc > FileIndex) in DoInsertion() 222 InsertRes->LHS->DoInsertion(FileIndex, Delta, 0 /*can't fail*/); in DoInsertion() 224 InsertRes->RHS->DoInsertion(FileIndex, Delta, 0 /*can't fail*/); in DoInsertion() 230 if (!IN->Children[i]->DoInsertion(FileIndex, Delta, InsertRes)) in DoInsertion() 407 int DeltaTree::getDeltaAt(unsigned FileIndex) const { in getDeltaAt() [all …]
|
/external/clang/include/clang/Rewrite/ |
D | DeltaTree.h | 39 int getDeltaAt(unsigned FileIndex) const; 44 void AddDelta(unsigned FileIndex, int Delta);
|