ConcatOrAlternate 1031 third_party/re2/re2/parse.cc   Regexp* re = ConcatOrAlternate(op, subs, n, flags_, true);
ConcatOrAlternate  236 third_party/re2/re2/regexp.cc       subs[i] = ConcatOrAlternate(op, sub+i*kMaxNsub, kMaxNsub, flags, false);
ConcatOrAlternate  237 third_party/re2/re2/regexp.cc     subs[nbigsub - 1] = ConcatOrAlternate(op, sub+(nbigsub-1)*kMaxNsub,
ConcatOrAlternate  255 third_party/re2/re2/regexp.cc   return ConcatOrAlternate(kRegexpConcat, sub, nsub, flags, false);
ConcatOrAlternate  259 third_party/re2/re2/regexp.cc   return ConcatOrAlternate(kRegexpAlternate, sub, nsub, flags, true);
ConcatOrAlternate  263 third_party/re2/re2/regexp.cc   return ConcatOrAlternate(kRegexpAlternate, sub, nsub, flags, false);
ConcatOrAlternate  457 third_party/re2/re2/regexp.h   static Regexp* ConcatOrAlternate(RegexpOp op, Regexp** subs, int nsubs,