Lines Matching defs:ScopeStack
259 SmallVector<bool, 16> ScopeStack;
270 ScopeStack.push_back(isNestedConditional);
275 for (unsigned i = Change.Tok->FakeRParens; i > 0 && ScopeStack.size(); --i)
276 if (ScopeStack.pop_back_val())
293 // ScopeStack keeps track of the current scope depth. It contains indices of
313 SmallVector<unsigned, 16> ScopeStack;
317 if (ScopeStack.size() != 0 &&
319 Changes[ScopeStack.back()].indentAndNestingLevel()) {
320 ScopeStack.pop_back();
332 ScopeStack.push_back(i);
335 bool InsideNestedScope = ScopeStack.size() != 0;
367 // as mentioned in the ScopeStack comment.
369 unsigned ScopeStart = ScopeStack.back();
432 for (unsigned OuterScopeStart : llvm::reverse(ScopeStack)) {