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

  /external/regex-re2/re2/testing/
exhaustive_tester.cc 106 int ngroup = re.NumberOfCapturingGroups()+1;
re2_test.cc 490 CHECK_EQ(re.NumberOfCapturingGroups(), 1);
497 CHECK_EQ(re.NumberOfCapturingGroups(), 6);
    [all...]
  /external/regex-re2/re2/
re2.cc 556 int ncap = 1 + NumberOfCapturingGroups();
826 int ncap = NumberOfCapturingGroups();
888 int RE2::NumberOfCapturingGroups() const {
927 if (max_token > NumberOfCapturingGroups()) {
930 max_token, NumberOfCapturingGroups());
    [all...]
re2.h 438 int NumberOfCapturingGroups() const;
465 // Doesn't make sense to use nmatch > 1 + NumberOfCapturingGroups(),
    [all...]
  /external/regex-re2/util/
pcre.cc 572 if (NumberOfCapturingGroups() < n) {
608 int number_of_capturing_groups = NumberOfCapturingGroups();
669 if (max_token > NumberOfCapturingGroups()) {
672 max_token, NumberOfCapturingGroups());
681 int PCRE::NumberOfCapturingGroups() const {
    [all...]
pcre.h 460 int NumberOfCapturingGroups() const;

Completed in 196 milliseconds