Home | History | Annotate | Download | only in re2

Lines Matching refs:stack_

89   stack<WalkState<T> >* stack_;
133 stack_ = new stack<WalkState<T> >;
139 delete stack_;
146 if (stack_ && stack_->size() > 0) {
148 while (stack_->size() > 0) {
149 delete stack_->top().child_args;
150 stack_->pop();
164 stack_->push(WalkState<T>(re, top_arg));
169 s = &stack_->top();
200 stack_->push(WalkState<T>(sub[s->n], s->pre_arg));
213 // We've finished stack_->top().
215 stack_->pop();
216 if (stack_->size() == 0)
218 s = &stack_->top();