Home | History | Annotate | Download | only in re2

Lines Matching refs:child_args

40   // The child_args is a vector of the T that the child PostVisits returned.
43 // in *child_args, but not the vector itself.
48 T* child_args, int nchild_args);
107 T* child_args,
122 child_args(NULL) { }
128 T child_arg; // One-element buffer for child_args.
129 T* child_args;
149 delete stack_->top().child_args;
185 s->child_args = NULL;
187 s->child_args = &s->child_arg;
189 s->child_args = new T[re->nsub_];
197 s->child_args[s->n] = Copy(s->child_args[s->n - 1]);
206 t = PostVisit(re, s->parent_arg, s->pre_arg, s->child_args, s->n);
208 delete[] s->child_args;
219 if (s->child_args != NULL)
220 s->child_args[s->n] = t;