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

  /external/chromium_org/third_party/re2/re2/testing/
exhaustive_tester.cc 106 int ngroup = re.NumberOfCapturingGroups()+1;
re2_test.cc 497 CHECK_EQ(re.NumberOfCapturingGroups(), 1);
504 CHECK_EQ(re.NumberOfCapturingGroups(), 6);
    [all...]
  /external/chromium_org/third_party/re2/re2/
re2.cc 574 int ncap = 1 + NumberOfCapturingGroups();
844 int ncap = NumberOfCapturingGroups();
906 int RE2::NumberOfCapturingGroups() const {
945 if (max_token > NumberOfCapturingGroups()) {
948 max_token, NumberOfCapturingGroups());
    [all...]
re2.h 438 int NumberOfCapturingGroups() const;
465 // Doesn't make sense to use nmatch > 1 + NumberOfCapturingGroups(),
    [all...]
  /external/chromium_org/third_party/re2/util/
pcre.cc 577 if (NumberOfCapturingGroups() < n) {
613 int number_of_capturing_groups = NumberOfCapturingGroups();
674 if (max_token > NumberOfCapturingGroups()) {
677 max_token, NumberOfCapturingGroups());
686 int PCRE::NumberOfCapturingGroups() const {
    [all...]
pcre.h 466 int NumberOfCapturingGroups() const;

Completed in 3151 milliseconds