Searched refs:ParentIndex (Results 1 - 2 of 2) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/
H A DASTSelection.cpp298 unsigned ParentIndex = 1; local
299 for (; (ParentIndex + 1) <= Parents.size() && isa<ImplicitCastExpr>(Parent);
300 ++ParentIndex) {
302 Parents[Parents.size() - ParentIndex - 1].get().Node.get<Stmt>();
310 Node = Parents[Parents.size() - ParentIndex];
311 for (; ParentIndex != 0; --ParentIndex)
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCoverageMappingGen.cpp565 /// Adds all regions from \c ParentIndex to the top of the stack to the
567 void popRegions(size_t ParentIndex) { argument
568 assert(RegionStack.size() >= ParentIndex && "parent not in stack");
570 while (RegionStack.size() > ParentIndex) {
576 : RegionStack[ParentIndex].getEndLoc();

Completed in 89 milliseconds