HomeSort by relevance Sort by last modified time
    Searched refs:dstBegin (Results 1 - 19 of 19) 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 699 * Copy characters from this string into dst starting at dstBegin.
702 void getChars(char dst[], int dstBegin) {
703 getCharsNoCheck(0, length(), dst, dstBegin);
714 * subarray of {@code dst} starting at index {@code dstBegin}
717 * dstBegin + (srcEnd-srcBegin) - 1
725 * @param dstBegin the start offset in the destination array.
732 * <li>{@code dstBegin} is negative
733 * <li>{@code dstBegin+(srcEnd-srcBegin)} is larger than
736 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin) {
753 if (dstBegin < 0)
    [all...]
StringBuffer.java 243 int dstBegin)
245 super.getChars(srcBegin, srcEnd, dst, dstBegin);
AbstractStringBuilder.java 360 * at index {@code dstBegin} and ending at index:
362 * dstbegin + (srcEnd-srcBegin) - 1
368 * @param dstBegin offset into {@code dst}.
372 * <li>{@code dstBegin} is negative
377 * <li>{@code dstBegin+srcEnd-srcBegin} is greater than
381 public void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)
389 System.arraycopy(value, srcBegin, dst, dstBegin, srcEnd - srcBegin);
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
StringTest.java 460 // This is the explicit case from the bug: dstBegin == srcEnd - srcBegin
474 "abcd".getChars(0, 0, new char[0], 0); // dstBegin == 0 is ok if copying zero chars
475 "abcd".getChars(0, 0, new char[1], 1); // dstBegin == 1 is ok if copying zero chars
481 assertGetCharsThrowsAIOOBException("abcd", 3, 4, new char[1], 1); // Out of range dstBegin
483 assertGetCharsThrowsAIOOBException("abcd", 0, 4, new char[4], -1); // Negative dstBegin
485 // dstBegin + (srcEnd - srcBegin) -> integer overflow OR dstBegin >= dst.length
495 assertGetCharsThrowsAIOOBException("abcd", 0, 4, new char[4], 1); // Bad dstBegin
498 assertGetCharsThrowsAIOOBException("abcd", 0, 0, new char[4], -1); // Negative dstBegin
499 assertGetCharsThrowsAIOOBException("abcd", 0, 0, new char[0], 1); // Out of range dstBegin
    [all...]
  /art/compiler/optimizing/
intrinsics_x86.cc     [all...]
intrinsics_x86_64.cc     [all...]
intrinsics_arm64.cc     [all...]
intrinsics_arm_vixl.cc     [all...]
intrinsics_mips.cc     [all...]
intrinsics_mips64.cc     [all...]
  /prebuilts/sdk/24/
android.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 
  /prebuilts/tools/common/m2/repository/net/sourceforge/saxon/saxon/9.1.0.8/
saxon-9.1.0.8.jar 

Completed in 312 milliseconds