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

  /external/chromium_org/third_party/re2/re2/
compile.cc 875 Regexp** subcopy = new Regexp*[re->nsub()]; local
876 subcopy[0] = sub; // already have reference
878 subcopy[i] = re->sub()[i]->Incref();
879 *pre = Regexp::Concat(subcopy, re->nsub(), re->parse_flags());
880 delete[] subcopy;
923 Regexp** subcopy = new Regexp*[re->nsub()]; local
924 subcopy[re->nsub() - 1] = sub; // already have reference
926 subcopy[i] = re->sub()[i]->Incref();
927 *pre = Regexp::Concat(subcopy, re->nsub(), re->parse_flags());
928 delete[] subcopy;
    [all...]
regexp.cc 214 Regexp** subcopy = NULL;
217 subcopy = new Regexp*[nsub];
218 memmove(subcopy, sub, nsub * sizeof sub[0]);
219 sub = subcopy;
223 delete[] subcopy;
240 delete[] subcopy;
250 delete[] subcopy;

Completed in 72 milliseconds