HomeSort by relevance Sort by last modified time
    Searched refs:groupCount (Results 1 - 25 of 38) 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 245 matchOffsets = new int[(groupCount() + 1) * 2];
443 * the group, ranging from 0 to groupCount() - 1, with 0
459 * the group, ranging from 0 to groupCount() - 1, with 0
509 public int groupCount() {
  /cts/tests/tests/widget/src/android/widget/cts/
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++) {
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocationClustering.java 214 int[] groupCount = new int[maxK]; // number of points in each group.
247 groupCount[i] = 0;
270 groupCount[bestIndex]++;
278 if (groupCount[i] > 0) {
279 center[i].latRad = groupSum[i].latRad / groupCount[i];
280 center[i].lngRad = groupSum[i].lngRad / groupCount[i];
295 if (groupCount[i] > 0) {
  /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();
  /libcore/luni/src/test/java/libcore/java/util/regex/
OldAndroidRegexTest.java 91 assertEquals("groupCount is incorrect, see http://b/issue?id=759412",
92 3, m.groupCount());
102 assertEquals(3, m.groupCount());
OldMatcherTest.java 333 assertEquals(i + 1, mat.groupCount());
502 assertEquals("Total number of groups does not matched with given pattern", 4, mat.toMatchResult().groupCount());
  /frameworks/base/core/tests/coretests/src/android/provider/
SearchRecentSuggestionsProviderTest.java 267 private void writeEntries(int groupCount, String line1Base, String line2Base) {
268 for (int i = 0; i < groupCount; i++) {
  /packages/apps/Settings/src/com/android/settings/
DeviceInfoSettings.java 301 } else if (m.groupCount() < 4) {
302 Log.e(LOG_TAG, "Regex match on /proc/version only returned " + m.groupCount()
  /libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
Pattern2Test.java 115 assertEquals(2, m.groupCount());
130 assertEquals(2, m.groupCount());
144 assertEquals(2, m.groupCount());
    [all...]
  /external/icu4c/common/
unames.cpp 87 * The groups table consists of one uint16_t groupCount followed by
88 * groupCount groups. Each group is a triple of uint16_t, see GROUP_LENGTH
694 uint16_t startGroupMSB, endGroupMSB, groupCount;
722 groupCount=*groups++;
723 groupLimit=groups+groupCount*GROUP_LENGTH;
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
MediaRouteChooserDialogFragment.java 318 final int groupCount = group.getRouteCount();
319 for (int j = 0; j < groupCount; j++) {
  /libcore/luni/src/test/java/libcore/java/util/
OldScannerTest.java 168 assertEquals(0, mresult.groupCount());
173 assertEquals(4, mresult.groupCount());
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
BinaryDictInputOutput.java     [all...]
  /external/apache-harmony/regex/src/test/java/org/apache/harmony/tests/java/util/regex/
Pattern2Test.java 116 assertEquals(2, m.groupCount());
131 assertEquals(2, m.groupCount());
145 assertEquals(2, m.groupCount());
    [all...]
MatcherTest.java 403 assertEquals(i + 1, mat.groupCount());
  /external/icu4c/i18n/unicode/
regex.h     [all...]
  /external/icu4c/test/intltest/
regextst.cpp 896 // RegexMatcher::groupCount();
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
ScannerTest.java 527 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());
    [all...]
  /external/icu4c/i18n/
uregex.cpp 623 int32_t result = regexp->fMatcher->groupCount();
    [all...]
regexcmp.cpp 292 int32_t groupCount = fRXPat->fGroupMap->size();
293 while (n <= groupCount) {
    [all...]
  /packages/apps/Browser/src/com/android/browser/provider/
BrowserProvider.java     [all...]
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/
PhoneNumberUtil.java     [all...]

Completed in 1211 milliseconds

1 2