HomeSort by relevance Sort by last modified time
    Searched refs:groupCount (Results 1 - 25 of 32) sorted by null

1 2

  /libcore/luni/src/main/java/java/util/regex/
MatchResult.java 45 * the group, ranging from 0 to groupCount() - 1, with 0
63 * the group, ranging from 0 to groupCount() - 1, with 0
76 int groupCount();
91 * the group, ranging from 0 to groupCount() - 1, with 0
MatchResultImpl.java 67 public int groupCount() {
Matcher.java 248 matchOffsets = new int[(groupCount() + 1) * 2];
458 * the group, ranging from 0 to groupCount() - 1, with 0
474 * the group, ranging from 0 to groupCount() - 1, with 0
524 public int groupCount() {
  /frameworks/base/core/tests/coretests/src/android/widget/expandablelistview/
ExpandableListTester.java 84 int groupCount = mAdapter.getGroupCount();
85 for (int groupIndex = 0; groupIndex < groupCount; groupIndex++) {
152 final int groupCount = mAdapter.getGroupCount();
153 for (int groupIndex = 0; groupIndex < groupCount; groupIndex++) {
168 mExpandableListView.getExpandableListPosition(headerCount + groupCount + i));
207 final int groupCount = mAdapter.getGroupCount();
208 for (int groupIndex = 0; groupIndex < groupCount; groupIndex++) {
  /frameworks/base/core/java/android/util/
Patterns.java 189 final int numGroups = matcher.groupCount();
  /libcore/luni/src/main/native/
java_util_regex_Matcher.cpp 92 for (size_t i = 0, groupCount = mMatcher->groupCount(); i <= groupCount; ++i) {
147 return matcher->groupCount();
  /frameworks/base/tests/CoreTests/android/core/
RegexTest.java 100 assertEquals("groupCount is incorrect, see http://b/issue?id=759412",
101 3, m.groupCount());
112 assertEquals(3, m.groupCount());
  /packages/apps/Settings/src/com/android/settings/
DeviceInfoSettings.java 196 } else if (m.groupCount() < 4) {
197 Log.e(TAG, "Regex match on /proc/version only returned " + m.groupCount()
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/
KmlParser.java 146 if (m.groupCount() == 3) {
  /frameworks/base/core/tests/coretests/src/android/content/
SearchRecentSuggestionsProviderTest.java 280 private void writeEntries(int groupCount, String line1Base, String line2Base) {
281 for (int i = 0; i < groupCount; i++) {
  /libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
Pattern2Test.java 155 assertEquals(2, m.groupCount());
170 assertEquals(2, m.groupCount());
184 assertEquals(2, m.groupCount());
    [all...]
  /external/chromium/third_party/icu/public/i18n/unicode/
regex.h 632 virtual int32_t groupCount() const;
    [all...]
  /external/chromium/third_party/icu/source/common/
unames.c 85 * 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
695 uint16_t startGroupMSB, endGroupMSB, groupCount;
711 groupCount=*groups++;
712 groupLimit=groups+groupCount*GROUP_LENGTH;
    [all...]
  /external/icu4c/common/
unames.c 85 * 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;
708 groupCount=*groups++;
709 groupLimit=groups+groupCount*GROUP_LENGTH;
    [all...]
  /external/icu4c/test/intltest/
regextst.cpp 701 // RegexMatcher::groupCount();
806 REGEX_ASSERT(matcher->groupCount() == 0);
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
regextst.cpp 522 // RegexMatcher::groupCount();
627 REGEX_ASSERT(matcher->groupCount() == 0);
    [all...]
  /external/icu4c/i18n/unicode/
regex.h     [all...]
  /external/chromium/third_party/icu/source/i18n/
uregex.cpp 387 int32_t result = regexp->fMatcher->groupCount();
    [all...]
rematch.cpp 641 int32_t RegexMatcher::groupCount() const {
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/regex/
OldMatcherTest.java 443 notes = "Verifies groupCount() method.",
444 method = "groupCount",
452 assertEquals(i + 1, mat.groupCount());
687 assertEquals("Total number of groups does not matched with given pattern", 4, mat.toMatchResult().groupCount());
  /libcore/luni/src/test/java/tests/api/java/util/
ScannerTest.java 631 assertEquals(0, result.groupCount());
665 assertEquals(0, result.groupCount());
688 assertEquals(0, result.groupCount());
702 assertEquals(0, result.groupCount());
706 assertEquals(0, result.groupCount());
734 assertEquals(0, result.groupCount());
    [all...]
  /external/icu4c/i18n/
uregex.cpp 604 int32_t result = regexp->fMatcher->groupCount();
    [all...]
regexcmp.cpp 283 int32_t groupCount = fRXPat->fGroupMap->size();
284 while (n <= groupCount) {
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BrowserProvider.java     [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsProvider2.java     [all...]

Completed in 962 milliseconds

1 2