Home | History | Annotate | Download | only in re2

Lines Matching defs:subs

50       vector<Prefilter*>* subs = prefilter->subs();
51 for (int i = 0; i < subs->size(); i++)
52 if (KeepPart((*subs)[i], level + 1))
53 (*subs)[j++] = (*subs)[i];
55 delete (*subs)[i];
57 subs->resize(j);
62 for (int i = 0; i < prefilter->subs()->size(); i++)
63 if (!KeepPart((*prefilter->subs())[i], level + 1))
149 for (int i = 0; i < node->subs()->size() ; i++) {
152 s += Itoa((*node->subs())[i]->unique_id());
182 const vector<Prefilter*>& subs = *f->subs();
183 for (int j = 0; j < subs.size(); j++)
184 v.push_back(subs[j]);
248 for (int j = 0; j < prefilter->subs()->size() ; j++) {
249 Prefilter* child = (*prefilter->subs())[j];
386 for (int i = 0; i < node->subs()->size() ; i++) {
389 node_string += Itoa((*node->subs())[i]->unique_id());
391 node_string += DebugNodeString((*node->subs())[i]);