Home | History | Annotate | Download | only in re2

Lines Matching refs:sub

52     re2::Regexp** sub = new re2::Regexp*[nsub + 1];
54 sub[i] = re->sub()[i]->Incref();
55 sub[nsub] = m;
57 re = re2::Regexp::Concat(sub, nsub + 1, pf);
58 delete[] sub;
60 re2::Regexp* sub[2];
61 sub[0] = re;
62 sub[1] = m;
63 re = re2::Regexp::Concat(sub, 2, pf);