HomeSort by relevance Sort by last modified time
    Searched refs:nsub_ (Results 1 - 5 of 5) sorted by null

  /external/regex-re2/re2/
walker-inl.h 186 if (re->nsub_ == 1)
188 else if (re->nsub_ > 1)
189 s->child_args = new T[re->nsub_];
193 if (re->nsub_ > 0) {
195 if (s->n < re->nsub_) {
207 if (re->nsub_ > 1)
simplify.cc 63 for (int i = 0; i < nsub_; i++)
202 for (int i = 0; i < re->nsub_; i++) {
211 for (int i = 0; i < re->nsub_; i++) {
219 nre->AllocSub(re->nsub_);
221 for (int i = 0; i <re->nsub_; i++)
regexp.h 314 int nsub() { return nsub_; }
320 if(nsub_ <= 1)
495 nsub_ = n;
535 uint16 nsub_; member in class:re2::Regexp
538 Regexp** submany_; // if nsub_ > 1
539 Regexp* subone_; // if nsub_ == 1
regexp.cc 21 nsub_(0),
33 if (nsub_ > 0)
55 if (nsub_ == 0) {
136 if (re->nsub_ > 0) {
138 for (int i = 0; i < re->nsub_; i++) {
151 if (re->nsub_ > 1)
153 re->nsub_ = 0;
631 while (i < nsub_ && sub[i]->op_ == kRegexpBeginText)
633 if (i == 0 || i >= nsub_)
676 if (i < nsub_) {
    [all...]
parse.cc 675 re->nsub_--;
676 memmove(sub, sub + 1, re->nsub_ * sizeof sub[0]);
775 re->nsub_--;
776 memmove(sub, sub + 1, re->nsub_ * sizeof sub[0]);
1005 n += sub->nsub_;
1023 for (int k = sub->nsub_ - 1; k >= 0; k--)
    [all...]

Completed in 74 milliseconds