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

/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/
H A DXStringForChars.java201 * @param dstBegin the start offset in the destination array.
208 * <li><code>dstBegin</code> is negative
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.java267 * @param dstBegin the start offset in the destination array.
274 * <li><code>dstBegin</code> is negative
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.java242 * @param dstBegin the start offset in the destination array.
249 * <li><code>dstBegin</code> is negative
250 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
254 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin) argument
264 if (n > (dst.length - dstBegin))
265 n = (dst.length - dstBegin);
268 int d = dstBegin;
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DUtility.java373 * @param dstBegin offset to the start of the destination char array to
377 char dst[], int dstBegin)
382 src.getChars(srcBegin, srcEnd, dst, dstBegin);
376 getChars(StringBuffer src, int srcBegin, int srcEnd, char dst[], int dstBegin) argument
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DFastStringBuffer.java1243 * @param dstBegin the start offset in the destination array.
1250 * <li><code>dstBegin</code> is negative
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.java112 * @param dstBegin the start offset in the destination array.
119 * <li><code>dstBegin</code> is negative
120 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
125 int dstBegin);
124 getChars(int srcBegin, int srcEnd, char dst[], int dstBegin) argument
H A DXMLStringDefault.java133 * @param dstBegin the start offset in the destination array.
140 * <li><code>dstBegin</code> is negative
141 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
146 int dstBegin)
148 int destIndex = dstBegin;
145 getChars(int srcBegin, int srcEnd, char dst[], int dstBegin) argument
/openjdk7/jdk/src/share/classes/java/lang/
H A DAbstractStringBuilder.java325 * at index <code>dstBegin</code> and ending at index:
333 * @param dstBegin offset into <code>dst</code>.
339 * <li><code>dstBegin</code> is negative
344 * <li><code>dstBegin+srcEnd-srcBegin</code> is greater than
348 public void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin) argument
356 System.arraycopy(value, srcBegin, dst, dstBegin, srcEnd - srcBegin);
H A DStringBuffer.java216 int dstBegin)
218 super.getChars(srcBegin, srcEnd, dst, dstBegin);
215 getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin) argument
H A DString.java779 * Copy characters from this string into dst starting at dstBegin.
782 void getChars(char dst[], int dstBegin) { argument
783 System.arraycopy(value, 0, dst, dstBegin, value.length);
794 * subarray of <code>dst</code> starting at index <code>dstBegin</code>
805 * @param dstBegin the start offset in the destination array.
812 * <li><code>dstBegin</code> is negative
813 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
816 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin) { argument
826 System.arraycopy(value, srcBegin, dst, dstBegin, srcEnd - srcBegin);
839 * dst} starting at index {@code dstBegin} an
873 getBytes(int srcBegin, int srcEnd, byte dst[], int dstBegin) argument
[all...]

Completed in 4229 milliseconds