HomeSort by: relevance | last modified time | path
    Searched defs:InsertRes (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Rewrite/
DeltaTree.cpp 107 /// split the node, populate InsertRes with info about the split, and return
109 bool DoInsertion(unsigned FileIndex, int Delta, InsertResult *InsertRes);
111 void DoSplit(InsertResult &InsertRes);
182 /// split the node, populate InsertRes with info about the split, and return
185 InsertResult *InsertRes) {
220 assert(InsertRes && "No result location specified");
221 DoSplit(*InsertRes);
223 if (InsertRes->Split.FileLoc > FileIndex)
224 InsertRes->LHS->DoInsertion(FileIndex, Delta, nullptr /*can't fail*/);
226 InsertRes->RHS->DoInsertion(FileIndex, Delta, nullptr /*can't fail*/)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
MemoryDependenceAnalysis.cpp 1253 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> InsertRes =
1255 if (InsertRes.second) {
1264 if (InsertRes.first->second != Pointer.getAddr()) {
1316 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> InsertRes =
1319 if (!InsertRes.second) {
1325 if (InsertRes.first->second == PredPtrVal)

Completed in 18 milliseconds