Searched refs:srcBegin (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/
H A DXStringForChars.java196 * @param srcBegin index of the first character in the string
204 * <ul><li><code>srcBegin</code> is negative.
205 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
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 DXStringForFSB.java237 * @param srcBegin index of the first character in the string
245 * <ul><li><code>srcBegin</code> is negative.
246 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
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;
267 int end = srcBegin + m_start + n;
271 for (int i = srcBegin + m_start; i < end; i++)
H A DXString.java262 * @param srcBegin index of the first character in the string
270 * <ul><li><code>srcBegin</code> is negative.
271 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
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);
/openjdk7/jdk/src/share/classes/java/lang/
H A DString.java790 * The first character to be copied is at index <code>srcBegin</code>;
793 * <code>srcEnd-srcBegin</code>). The characters are copied into the
797 * dstbegin + (srcEnd-srcBegin) - 1
800 * @param srcBegin index of the first character in the string
808 * <ul><li><code>srcBegin</code> is negative.
809 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
813 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
816 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin) { argument
817 if (srcBegin < 0) {
818 throw new StringIndexOutOfBoundsException(srcBegin);
873 getBytes(int srcBegin, int srcEnd, byte dst[], int dstBegin) argument
[all...]
H A DAbstractStringBuilder.java321 * be copied is at index <code>srcBegin</code>; the last character to
323 * characters to be copied is <code>srcEnd-srcBegin</code>. The
327 * dstbegin + (srcEnd-srcBegin) - 1
330 * @param srcBegin start copying at this offset.
338 * <li><code>srcBegin</code> is negative
340 * <li>the <code>srcBegin</code> argument 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
350 if (srcBegin < 0)
351 throw new StringIndexOutOfBoundsException(srcBegin);
[all...]
H A DStringBuffer.java215 public synchronized void getChars(int srcBegin, int srcEnd, char[] dst, argument
218 super.getChars(srcBegin, srcEnd, dst, dstBegin);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DXMLStringDefault.java128 * @param srcBegin index of the first character in the string
136 * <ul><li><code>srcBegin</code> is negative.
137 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
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++)
H A DXMLString.java107 * @param srcBegin index of the first character in the string
115 * <ul><li><code>srcBegin</code> is negative.
116 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
120 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
124 public abstract void getChars(int srcBegin, int srcEnd, char dst[], argument
H A DFastStringBuffer.java1238 * @param srcBegin index of the first character in the string
1246 * <ul><li><code>srcBegin</code> is negative.
1247 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
1251 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
1255 private void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin) argument
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DUtility.java370 * @param srcBegin offset to the start 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);

Completed in 1567 milliseconds