Searched refs:NumberOfCapturingGroups (Results 1 – 12 of 12) sorted by relevance
/external/chromium_org/third_party/re2/util/ |
D | pcre.cc | 577 if (NumberOfCapturingGroups() < n) { in DoMatchImpl() 613 int number_of_capturing_groups = NumberOfCapturingGroups(); in Rewrite() 674 if (max_token > NumberOfCapturingGroups()) { in CheckRewriteString() 677 max_token, NumberOfCapturingGroups()); in CheckRewriteString() 686 int PCRE::NumberOfCapturingGroups() const { in NumberOfCapturingGroups() function in re2::PCRE
|
D | pcre.h | 466 int NumberOfCapturingGroups() const;
|
/external/regex-re2/util/ |
D | pcre.cc | 572 if (NumberOfCapturingGroups() < n) { in DoMatchImpl() 608 int number_of_capturing_groups = NumberOfCapturingGroups(); in Rewrite() 669 if (max_token > NumberOfCapturingGroups()) { in CheckRewriteString() 672 max_token, NumberOfCapturingGroups()); in CheckRewriteString() 681 int PCRE::NumberOfCapturingGroups() const { in NumberOfCapturingGroups() function in re2::PCRE
|
D | pcre.h | 460 int NumberOfCapturingGroups() const;
|
/external/chromium_org/third_party/re2/re2/ |
D | re2.cc | 574 int ncap = 1 + NumberOfCapturingGroups(); in Match() 844 int ncap = NumberOfCapturingGroups(); in DoMatch() 906 int RE2::NumberOfCapturingGroups() const { in NumberOfCapturingGroups() function in re2::RE2 945 if (max_token > NumberOfCapturingGroups()) { in CheckRewriteString() 948 max_token, NumberOfCapturingGroups()); in CheckRewriteString()
|
D | re2.h | 438 int NumberOfCapturingGroups() const;
|
/external/regex-re2/re2/ |
D | re2.cc | 556 int ncap = 1 + NumberOfCapturingGroups(); in Match() 826 int ncap = NumberOfCapturingGroups(); in DoMatch() 888 int RE2::NumberOfCapturingGroups() const { in NumberOfCapturingGroups() function in re2::RE2 927 if (max_token > NumberOfCapturingGroups()) { in CheckRewriteString() 930 max_token, NumberOfCapturingGroups()); in CheckRewriteString()
|
D | re2.h | 438 int NumberOfCapturingGroups() const;
|
/external/regex-re2/re2/testing/ |
D | exhaustive_tester.cc | 106 int ngroup = re.NumberOfCapturingGroups()+1; in HandleRegexp()
|
D | re2_test.cc | 490 CHECK_EQ(re.NumberOfCapturingGroups(), 1); in TEST() 497 CHECK_EQ(re.NumberOfCapturingGroups(), 6); in TEST() 1252 EXPECT_EQ(0, re.NumberOfCapturingGroups()); in TEST()
|
/external/chromium_org/third_party/re2/re2/testing/ |
D | exhaustive_tester.cc | 106 int ngroup = re.NumberOfCapturingGroups()+1; in HandleRegexp()
|
D | re2_test.cc | 497 CHECK_EQ(re.NumberOfCapturingGroups(), 1); in TEST() 504 CHECK_EQ(re.NumberOfCapturingGroups(), 6); in TEST() 1261 EXPECT_EQ(0, re.NumberOfCapturingGroups()); in TEST()
|