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

  /external/regex-re2/re2/
compile.cc 874 Regexp** subcopy = new Regexp*[re->nsub()]; local
875 subcopy[0] = sub; // already have reference
877 subcopy[i] = re->sub()[i]->Incref();
878 *pre = Regexp::Concat(subcopy, re->nsub(), re->parse_flags());
879 delete[] subcopy;
922 Regexp** subcopy = new Regexp*[re->nsub()]; local
923 subcopy[re->nsub() - 1] = sub; // already have reference
925 subcopy[i] = re->sub()[i]->Incref();
926 *pre = Regexp::Concat(subcopy, re->nsub(), re->parse_flags());
927 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 116 milliseconds