Searched refs:groupCount (Results 1 - 14 of 14) sorted by relevance
/openjdk7/jdk/src/share/classes/java/util/regex/ |
H A D | MatchResult.java | 186 public int groupCount(); method in interface:MatchResult
|
H A D | Matcher.java | 373 if (group > groupCount()) 420 if (group > groupCount()) 486 if (group < 0 || group > groupCount()) 545 public int groupCount() { method in class:Matcher 822 if (groupCount() < newRefNum) {
|
H A D | Pattern.java | 4601 GroupTail(int localCount, int groupCount) { argument 4603 groupIndex = groupCount + groupCount; 4784 BackRef(int groupCount) { argument 4786 groupIndex = groupCount + groupCount; 4821 CIBackRef(int groupCount, boolean doUnicodeCase) { argument 4823 groupIndex = groupCount + groupCount;
|
/openjdk7/jdk/src/share/back/ |
H A D | ThreadGroupReferenceImpl.c | 104 jint groupCount; local 110 &groupCount, &theGroups); 124 (void)outStream_writeInt(out, groupCount); 125 for (i = 0; i < groupCount; i++) {
|
H A D | VirtualMachineImpl.c | 534 jint groupCount; local 539 (gdata->jvmti, &groupCount, &groups); 545 (void)outStream_writeInt(out, groupCount); 546 for (i = 0; i < groupCount; i++) {
|
H A D | util.c | 190 jint groupCount; local 232 groupCount = 0; 234 (gdata->jvmti, &groupCount, &groups); 238 if ( groupCount == 0 ) {
|
/openjdk7/jdk/test/java/nio/channels/AsynchronousChannelGroup/ |
H A D | Identity.java | 107 final int groupCount = 3 + rand.nextInt(8); 108 AsynchronousChannelGroup[] groups = new AsynchronousChannelGroup[groupCount]; 109 final AsynchronousSocketChannel[] channels = new AsynchronousSocketChannel[groupCount]; 110 for (int i=0; i<groupCount; i++) { 138 int id = rand.nextInt(groupCount);
|
/openjdk7/jdk/test/java/util/logging/ |
H A D | SimpleFormatterFormat.java | 112 if (m.groupCount() != 3) { 114 m.groupCount());
|
/openjdk7/hotspot/test/runtime/NMT/ |
H A D | SummarySanityCheck.java | 78 if (totalMemoryMatcher.matches() && totalMemoryMatcher.groupCount() == 2) {
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/ |
H A D | ClassInfoImpl.java | 758 int groupCount = 0; 762 groupCount++; 766 groupCount++; 770 groupCount++; 774 groupCount++; 778 groupCount++; 782 groupCount++; 785 if(groupCount>1) { 794 assert groupCount==0;
|
/openjdk7/jdk/make/tools/src/build/tools/charsetmapping/ |
H A D | Utils.java | 94 if (gcp2 <= matcher.groupCount() &&
|
/openjdk7/jdk/src/share/demo/jvmti/hprof/ |
H A D | hprof_util.c | 1549 jint groupCount; local 1562 (gdata->jvmti, &groupCount, &groups); 1564 if ( groupCount > 0 ) {
|
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/ |
H A D | XWM.java | 354 log.finest("Match group count: " + match.groupCount());
|
/openjdk7/jdk/test/java/util/regex/ |
H A D | RegExTest.java | 1251 if (matcher.groupCount() != 1) 3222 result.append(m.groupCount()); 3225 for (int i=1; i<m.groupCount()+1; i++)
|
Completed in 172 milliseconds