Lines Matching defs:CounterStack
182 std::stack<StackElem> CounterStack;
183 CounterStack.push({C});
187 while (!CounterStack.empty()) {
188 StackElem &Current = CounterStack.top();
193 CounterStack.pop();
199 CounterStack.pop();
206 CounterStack.push(StackElem{E.LHS});
210 CounterStack.push(StackElem{E.RHS});
217 CounterStack.pop();
547 std::stack<StackElem> CounterStack;
548 CounterStack.push({C});
552 while (!CounterStack.empty()) {
553 StackElem &Current = CounterStack.top();
558 CounterStack.pop();
562 CounterStack.pop();
567 CounterStack.pop();
571 CounterStack.push(StackElem{E.LHS});
575 CounterStack.push(StackElem{E.RHS});
581 CounterStack.pop();