Lines Matching defs:CounterStack
204 std::stack<StackElem> CounterStack;
205 CounterStack.push({C});
209 while (!CounterStack.empty()) {
210 StackElem &Current = CounterStack.top();
215 CounterStack.pop();
221 CounterStack.pop();
228 CounterStack.push(StackElem{E.LHS});
232 CounterStack.push(StackElem{E.RHS});
239 CounterStack.pop();
573 std::stack<StackElem> CounterStack;
574 CounterStack.push({C});
578 while (!CounterStack.empty()) {
579 StackElem &Current = CounterStack.top();
584 CounterStack.pop();
588 CounterStack.pop();
593 CounterStack.pop();
597 CounterStack.push(StackElem{E.LHS});
601 CounterStack.push(StackElem{E.RHS});
607 CounterStack.pop();