Home
last modified time | relevance | path

Searched refs:subcopy (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/
Dcompile.cc1015 PODArray<Regexp*> subcopy(re->nsub()); in IsAnchorStart() local
1016 subcopy[0] = sub; // already have reference in IsAnchorStart()
1018 subcopy[i] = re->sub()[i]->Incref(); in IsAnchorStart()
1019 *pre = Regexp::Concat(subcopy.data(), re->nsub(), re->parse_flags()); in IsAnchorStart()
1062 PODArray<Regexp*> subcopy(re->nsub()); in IsAnchorEnd() local
1063 subcopy[re->nsub() - 1] = sub; // already have reference in IsAnchorEnd()
1065 subcopy[i] = re->sub()[i]->Incref(); in IsAnchorEnd()
1066 *pre = Regexp::Concat(subcopy.data(), re->nsub(), re->parse_flags()); in IsAnchorEnd()
Dregexp.cc247 PODArray<Regexp*> subcopy; in ConcatOrAlternate() local
250 subcopy = PODArray<Regexp*>(nsub); in ConcatOrAlternate()
251 memmove(subcopy.data(), sub, nsub * sizeof sub[0]); in ConcatOrAlternate()
252 sub = subcopy.data(); in ConcatOrAlternate()