OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NumberOfCapturingGroups
(Results
1 - 8
of
8
) 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;
/external/pcre/dist/
pcrecpp.h
647
int
NumberOfCapturingGroups
() const;
pcrecpp.cc
580
if (
NumberOfCapturingGroups
() < n) {
648
int RE::
NumberOfCapturingGroups
() const {
Completed in 4060 milliseconds