Home | History | Annotate | Download | only in re2

Lines Matching refs:re

38   re2::Regexp* re = Regexp::Parse(pattern, pf, &status);
39 if (re == NULL) {
50 if (re->op() == kRegexpConcat) {
51 int nsub = re->nsub();
54 sub[i] = re->sub()[i]->Incref();
56 re->Decref();
57 re = re2::Regexp::Concat(sub, nsub + 1, pf);
61 sub[0] = re;
63 re = re2::Regexp::Concat(sub, 2, pf);
65 re_.push_back(re);
78 re2::Regexp* re = re2::Regexp::Alternate(const_cast<re2::Regexp**>(&re_[0]),
81 re2::Regexp* sre = re->Simplify();
82 re->Decref();
83 re = sre;
84 if (re == NULL) {
90 prog_ = Prog::CompileSet(options_, anchor_, re);