Searched defs:sourceCount (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/lang/
H A DString.java1709 * @param sourceCount count of the source string.
1715 static int indexOf(char[] source, int sourceOffset, int sourceCount, argument
1718 if (fromIndex >= sourceCount) {
1719 return (targetCount == 0 ? sourceCount : -1);
1729 int max = sourceOffset + (sourceCount - targetCount);
1800 * @param sourceCount count of the source string.
1806 static int lastIndexOf(char[] source, int sourceOffset, int sourceCount, argument
1813 int rightIndex = sourceCount - targetCount;
/openjdk7/hotspot/src/share/vm/opto/
H A Dlibrary_call.cpp1188 // int sourceCount = string_object.count;
1192 // int sourceEnd = sourceOffset + sourceCount - targetCountLess1;
1209 // // (sourceOffset - targetCountLess1) to (sourceOffset + sourceCount)
1244 Node* sourceCount = load_String_length(no_ctrl, string_object); local
1261 Node* sourceEnd = __ SubI(__ AddI(sourceOffset, sourceCount), targetCountLess1);

Completed in 62 milliseconds