Searched defs:srcEnd (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/
H A DXStringForChars.java198 * @param srcEnd index after the last character in the string
205 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
206 * <li><code>srcEnd</code> is greater than the length of this
209 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
213 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin) argument
215 System.arraycopy((char[])m_obj, m_start+srcBegin, dst, dstBegin, srcEnd);
H A DXString.java264 * @param srcEnd index after the last character in the string
271 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
272 * <li><code>srcEnd</code> is greater than the length of this
275 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
279 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin) argument
281 str().getChars(srcBegin, srcEnd, dst, dstBegin);
H A DXStringForFSB.java239 * @param srcEnd index after the last character in the string
246 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
247 * <li><code>srcEnd</code> is greater than the length of this
250 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
254 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin) argument
259 int n = srcEnd - srcBegin;
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DUtility.java371 * @param srcEnd offset to the end of the src to retrieve from
376 public static void getChars(StringBuffer src, int srcBegin, int srcEnd, argument
379 if (srcBegin == srcEnd) {
382 src.getChars(srcBegin, srcEnd, dst, dstBegin);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DFastStringBuffer.java1240 * @param srcEnd index after the last character in the string
1247 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
1248 * <li><code>srcEnd</code> is greater than the length of this
1251 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
1255 private void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin) argument
H A DXMLString.java109 * @param srcEnd index after the last character in the string
116 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
117 * <li><code>srcEnd</code> is greater than the length of this
120 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
124 public abstract void getChars(int srcBegin, int srcEnd, char dst[], argument
H A DXMLStringDefault.java130 * @param srcEnd index after the last character in the string
137 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
138 * <li><code>srcEnd</code> is greater than the length of this
141 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
145 public void getChars(int srcBegin, int srcEnd, char dst[], argument
149 for (int i = srcBegin; i < srcEnd; i++)
/openjdk7/jdk/src/share/classes/java/lang/
H A DAbstractStringBuilder.java322 * be copied is at index <code>srcEnd-1</code>. The total number of
323 * characters to be copied is <code>srcEnd-srcBegin</code>. The
327 * dstbegin + (srcEnd-srcBegin) - 1
331 * @param srcEnd stop copying at this offset.
341 * the <code>srcEnd</code> argument.
342 * <li><code>srcEnd</code> is greater than
344 * <li><code>dstBegin+srcEnd-srcBegin</code> is greater than
348 public void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin) argument
352 if ((srcEnd < 0) || (srcEnd > coun
[all...]
H A DStringBuffer.java215 public synchronized void getChars(int srcBegin, int srcEnd, char[] dst, argument
218 super.getChars(srcBegin, srcEnd, dst, dstBegin);
H A DString.java791 * the last character to be copied is at index <code>srcEnd-1</code>
793 * <code>srcEnd-srcBegin</code>). The characters are copied into the
797 * dstbegin + (srcEnd-srcBegin) - 1
802 * @param srcEnd index after the last character in the string
809 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
810 * <li><code>srcEnd</code> is greater than the length of this
813 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
816 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin) { argument
820 if (srcEnd > value.length) {
821 throw new StringIndexOutOfBoundsException(srcEnd);
873 getBytes(int srcBegin, int srcEnd, byte dst[], int dstBegin) argument
[all...]

Completed in 51 milliseconds