HomeSort by relevance Sort by last modified time
    Searched refs:dstBegin (Results 1 - 24 of 24) sorted by null

  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XStringForChars.java 199 * @param dstBegin the start offset in the destination array.
206 * <li><code>dstBegin</code> is negative
207 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
211 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin)
213 System.arraycopy((char[])m_obj, m_start+srcBegin, dst, dstBegin, srcEnd);
XStringForFSB.java 240 * @param dstBegin the start offset in the destination array.
247 * <li><code>dstBegin</code> is negative
248 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
252 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin)
262 if (n > (dst.length - dstBegin))
263 n = (dst.length - dstBegin);
266 int d = dstBegin;
XString.java 265 * @param dstBegin the start offset in the destination array.
272 * <li><code>dstBegin</code> is negative
273 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
277 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin)
279 str().getChars(srcBegin, srcEnd, dst, dstBegin);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
XMLStringDefault.java 131 * @param dstBegin the start offset in the destination array.
138 * <li><code>dstBegin</code> is negative
139 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
144 int dstBegin)
146 int destIndex = dstBegin;
XMLString.java 110 * @param dstBegin the start offset in the destination array.
117 * <li><code>dstBegin</code> is negative
118 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
123 int dstBegin);
FastStringBuffer.java     [all...]
  /libcore/ojluni/src/main/java/java/lang/
String.java 700 * subarray of <code>dst</code> starting at index <code>dstBegin</code>
703 * dstbegin + (srcEnd-srcBegin) - 1
711 * @param dstBegin the start offset in the destination array.
718 * <li><code>dstBegin</code> is negative
719 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
722 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin) {
739 if (dstBegin < 0) {
740 throw new ArrayIndexOutOfBoundsException("dstBegin < 0. dstBegin=" + dstBegin);
    [all...]
StringBuffer.java 216 int dstBegin)
218 super.getChars(srcBegin, srcEnd, dst, dstBegin);
AbstractStringBuilder.java 325 * at index <code>dstBegin</code> and ending at index:
327 * dstbegin + (srcEnd-srcBegin) - 1
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)
356 System.arraycopy(value, srcBegin, dst, dstBegin, srcEnd - srcBegin);
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
StringTest.java 459 // This is the explicit case from the bug: dstBegin == srcEnd - srcBegin
473 "abcd".getChars(0, 0, new char[0], 0); // dstBegin == 0 is ok if copying zero chars
474 "abcd".getChars(0, 0, new char[1], 1); // dstBegin == 1 is ok if copying zero chars
480 assertGetCharsThrowsAIOOBException("abcd", 3, 4, new char[1], 1); // Out of range dstBegin
482 assertGetCharsThrowsAIOOBException("abcd", 0, 4, new char[4], -1); // Negative dstBegin
484 // dstBegin + (srcEnd - srcBegin) -> integer overflow OR dstBegin >= dst.length
494 assertGetCharsThrowsAIOOBException("abcd", 0, 4, new char[4], 1); // Bad dstBegin
497 assertGetCharsThrowsAIOOBException("abcd", 0, 0, new char[4], -1); // Negative dstBegin
498 assertGetCharsThrowsAIOOBException("abcd", 0, 0, new char[0], 1); // Out of range dstBegin
    [all...]
  /art/compiler/optimizing/
intrinsics_arm.cc     [all...]
intrinsics_arm64.cc     [all...]
intrinsics_x86.cc     [all...]
intrinsics_x86_64.cc     [all...]
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/0.12.613/
kotlin-stdlib-0.12.613.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/0.13.1513/
kotlin-stdlib-0.13.1513.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/0.13.1514/
kotlin-stdlib-0.13.1514.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.0.0-beta-1103/
kotlin-stdlib-1.0.0-beta-1103.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.0.0-beta-4584/
kotlin-stdlib-1.0.0-beta-4584.jar 
  /prebuilts/tools/common/offline-m2/org/jetbrains/kotlin/kotlin-stdlib/1.0.0-beta-4584/
kotlin-stdlib-1.0.0-beta-4584.jar 
  /prebuilts/sdk/24/
android.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 
  /prebuilts/tools/common/m2/repository/net/sourceforge/saxon/saxon/9.1.0.8/
saxon-9.1.0.8.jar 

Completed in 663 milliseconds