Searched refs:child_frags (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/re2/re2/
H A Dcompile.cc714 Frag Compiler::PostVisit(Regexp* re, Frag, Frag, Frag* child_frags, argument
717 // since the child_frags might contain Frags with NULLs in them.
742 Frag f = child_frags[0];
744 f = Cat(f, child_frags[i]);
749 Frag f = child_frags[0];
751 f = Alt(f, child_frags[i]);
756 return Star(child_frags[0], re->parse_flags()&Regexp::NonGreedy);
759 return Plus(child_frags[0], re->parse_flags()&Regexp::NonGreedy);
762 return Quest(child_frags[0], re->parse_flags()&Regexp::NonGreedy);
830 return child_frags[
[all...]
/external/regex-re2/re2/
H A Dcompile.cc713 Frag Compiler::PostVisit(Regexp* re, Frag, Frag, Frag* child_frags, argument
716 // since the child_frags might contain Frags with NULLs in them.
741 Frag f = child_frags[0];
743 f = Cat(f, child_frags[i]);
748 Frag f = child_frags[0];
750 f = Alt(f, child_frags[i]);
755 return Star(child_frags[0], re->parse_flags()&Regexp::NonGreedy);
758 return Plus(child_frags[0], re->parse_flags()&Regexp::NonGreedy);
761 return Quest(child_frags[0], re->parse_flags()&Regexp::NonGreedy);
829 return child_frags[
[all...]

Completed in 154 milliseconds