Searched refs:groupCount (Results 1 - 10 of 10) sorted by relevance

/external/icu4c/common/
H A Dunames.c85 * The groups table consists of one uint16_t groupCount followed by
86 * groupCount groups. Each group is a triple of uint16_t, see GROUP_LENGTH
692 uint16_t startGroupMSB, endGroupMSB, groupCount; local
708 groupCount=*groups++;
709 groupLimit=groups+groupCount*GROUP_LENGTH;
1363 int32_t groupCount, lineNumber, length; local
1371 groupCount=*group++;
1374 while(groupCount>0) {
1411 --groupCount;
/external/apache-harmony/regex/src/test/java/org/apache/harmony/tests/java/util/regex/
H A DPattern2Test.java116 assertEquals(2, m.groupCount());
131 assertEquals(2, m.groupCount());
145 assertEquals(2, m.groupCount());
H A DMatcherTest.java403 assertEquals(i + 1, mat.groupCount());
/external/icu4c/i18n/unicode/
H A Dregex.h868 virtual int32_t groupCount() const;
/external/icu4c/test/intltest/
H A Dregextst.cpp890 // RegexMatcher::groupCount();
995 REGEX_ASSERT(matcher->groupCount() == 0);
1966 // RegexMatcher::groupCount();
2136 REGEX_ASSERT(matcher->groupCount() == 0);
3581 // matcher->groupCount does not include group 0, the entire match, hence the +1.
3607 for (i=0; i<=matcher->groupCount(); i++) {
3638 if ( matcher->groupCount()+1 < groupStarts.size()) {
3640 line, groupStarts.size()-1, matcher->groupCount());
3643 else if (UTF8Matcher != NULL && UTF8Matcher->groupCount()+1 < groupStarts.size()) {
3645 line, groupStarts.size()-1, UTF8Matcher->groupCount());
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DScannerTest.java527 assertEquals(0, result.groupCount());
561 assertEquals(0, result.groupCount());
584 assertEquals(0, result.groupCount());
598 assertEquals(0, result.groupCount());
602 assertEquals(0, result.groupCount());
630 assertEquals(0, result.groupCount());
4923 assertEquals(0, mresult.groupCount());
4929 assertEquals(4, mresult.groupCount());
/external/icu4c/i18n/
H A Duregex.cpp622 int32_t result = regexp->fMatcher->groupCount();
1792 int32_t numCaptureGroups = regexp->fMatcher->groupCount();
H A Dregexcmp.cpp284 int32_t groupCount = fRXPat->fGroupMap->size(); local
285 while (n <= groupCount) {
H A Drematch.cpp1350 // groupCount()
1353 int32_t RegexMatcher::groupCount() const { function in class:RegexMatcher
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
H A DPhoneNumberUtil.java2416 int numOfGroups = prefixMatcher.groupCount();
2463 for (int i = 1, length = m.groupCount(); i <= length; i++) {

Completed in 1281 milliseconds