Searched defs:InsertRes (Results 1 - 3 of 3) sorted by relevance

/external/clang/lib/Rewrite/
H A DDeltaTree.cpp104 /// split the node, populate InsertRes with info about the split, and return
106 bool DoInsertion(unsigned FileIndex, int Delta, InsertResult *InsertRes);
108 void DoSplit(InsertResult &InsertRes);
180 /// split the node, populate InsertRes with info about the split, and return
183 InsertResult *InsertRes) {
218 assert(InsertRes && "No result location specified");
219 DoSplit(*InsertRes);
221 if (InsertRes->Split.FileLoc > FileIndex)
222 InsertRes->LHS->DoInsertion(FileIndex, Delta, 0 /*can't fail*/);
224 InsertRes
182 DoInsertion(unsigned FileIndex, int Delta, InsertResult *InsertRes) argument
296 DoSplit(InsertResult &InsertRes) argument
458 DeltaTreeNode::InsertResult InsertRes; local
[all...]
/external/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp1114 InsertRes = Visited.insert(std::make_pair(*PI, Pointer.getAddr())); local
1115 if (InsertRes.second) {
1124 if (InsertRes.first->second != Pointer.getAddr()) {
1170 InsertRes = Visited.insert(std::make_pair(Pred, PredPtrVal)); local
1172 if (!InsertRes.second) {
1178 if (InsertRes.first->second == PredPtrVal)
/external/llvm/lib/Transforms/Scalar/
H A DLoopUnswitch.cpp226 std::pair<LoopPropsMapIt, bool> InsertRes = local
229 LoopProperties& Props = InsertRes.first->second;
231 if (InsertRes.second) {

Completed in 121 milliseconds