HomeSort by relevance Sort by last modified time
    Searched refs:arraycopy (Results 801 - 825 of 1421) sorted by null

<<31323334353637383940>>

  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
DexDataWriterTest.java 215 System.arraycopy(encodedValue, 0, arr, 1, encodedValue.length);
249 System.arraycopy(encodedValue, 0, arr, 1, encodedValue.length);
287 System.arraycopy(encodedValue, 0, arr, 1, encodedValue.length);
354 System.arraycopy(encodedValue, 0, arr, 1, encodedValue.length);
399 System.arraycopy(encodedValue, 0, arr, 1, encodedValue.length);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
CharsetEncoderTest.java 70 System.arraycopy(replacement, 0, unibytesWithRep, 0,
72 System.arraycopy(unibytes, 0, unibytesWithRep, replacement.length,
599 System.arraycopy(surrogate, 0, temp, 0, surrogate.length);
600 System.arraycopy(expected, 0, temp, surrogate.length,
823 System.arraycopy(ba, 0, result, i * ba.length, ba.length);
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
BidiTest.java 874 System.arraycopy(init, 0, s, 0, s.length);
878 System.arraycopy(init, 0, s, 0, s.length);
882 System.arraycopy(init, 0, s, 0, s.length);
886 System.arraycopy(init, 0, s, 0, s.length);
890 System.arraycopy(init, 0, s, 0, s.length);
  /external/icu/android_icu4j/src/main/java/android/icu/util/
BytesTrie.java 452 System.arraycopy(bytes, 0, dest, destOffset, length);
469 System.arraycopy(bytes, 0, newBytes, 0, length);
479 System.arraycopy(b, off, bytes, length, len);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
BytesTrie.java 480 System.arraycopy(bytes, 0, dest, destOffset, length);
499 System.arraycopy(bytes, 0, newBytes, 0, length);
509 System.arraycopy(b, off, bytes, length, len);
    [all...]
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/preloader/
FileWrapper.java 212 System.arraycopy(buffer, 0, newBuffer, 0, position);
227 System.arraycopy(buffer, 0, newBuffer, 0, position);
428 System.arraycopy(handles, 0, newHandles, 0, count);
  /external/libgdx/gdx/src/com/badlogic/gdx/files/
FileHandle.java 424 System.arraycopy(handles, 0, newHandles, 0, count);
450 System.arraycopy(handles, 0, newHandles, 0, count);
474 System.arraycopy(handles, 0, newHandles, 0, count);
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
JsonReader.java 50 System.arraycopy(data, 0, newData, 0, data.length);
271 System.arraycopy(stack, 0, newStack, 0, stack.length);
304 System.arraycopy(stack, 0, newStack, 0, stack.length);
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
LZMAEncoderNormal.java 215 System.arraycopy(reps, 0, opts[0].reps, 0, REPS);
335 System.arraycopy(opts[optPrev].reps, 0,
362 System.arraycopy(opts[optPrev].reps, 0,
  /external/protobuf/java/src/main/java/com/google/protobuf/
CodedOutputStream.java     [all...]
  /frameworks/base/media/java/android/media/audiofx/
AudioEffect.java     [all...]
  /frameworks/support/compat/java/android/support/v4/app/
ShareCompat.java 356 System.arraycopy(currentAddresses, 0, finalAddresses, add.size(), currentLength);
367 if (old != null) System.arraycopy(old, 0, result, 0, oldLength);
368 System.arraycopy(add, 0, result, oldLength, add.length);
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
FileChannelTest.java 433 System.arraycopy(CONTENT_AS_BYTES, 0, expectedResult, 0, POSITION);
434 System.arraycopy(CONTENT_AS_BYTES, 0, expectedResult, POSITION,
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ArrayBlockingQueue.java 521 System.arraycopy(items, 0, a, items.length - takeIndex, putIndex);
575 System.arraycopy(items, takeIndex, a, 0, firstLeg);
580 System.arraycopy(items, 0, a, firstLeg, putIndex);
    [all...]
  /cts/tests/tests/keystore/src/android/keystore/cts/
BlockCipherTestBase.java     [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
Array2DRowRealMatrix.java 343 System.arraycopy(subMatrix[i], 0, data[i + row], column, nCols);
602 System.arraycopy(data[i], 0, out[i], 0, data[i].length);
RealMatrixImpl.java 345 System.arraycopy(subMatrix[i], 0, data[i + row], column, nCols);
610 System.arraycopy(data[i], 0, out[i], 0, data[i].length);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMManagerDefault.java 167 System.arraycopy(m_dtms,0,new_m_dtms,0,oldlen);
170 System.arraycopy(m_dtm_offsets,0,new_m_dtm_offsets,0,oldlen);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
LongArray.java 318 System.arraycopy(ints, off, m_ints, 0, len);
531 System.arraycopy(m_ints, 0, newInts, 0, Math.min(m_ints.length, newLen));
    [all...]
  /external/guava/guava/src/com/google/common/io/
ByteStreams.java 153 System.arraycopy(bytes, 0, result, 0, bytes.length);
168 System.arraycopy(buf, 0, b, off, count);
  /external/jetty/src/java/org/eclipse/jetty/http/
HttpURI.java 630 System.arraycopy(_raw,_path,bytes,0,n);
644 System.arraycopy(encoded,0,bytes,n,encoded.length);
  /external/libgdx/gdx/src/com/badlogic/gdx/math/
Intersector.java     [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPResponse.java 544 System.arraycopy(slbytes, 0, retval, 0, slbytes.length);
545 System.arraycopy(superbytes, 0, retval, slbytes.length,
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
Hpack.java 180 System.arraycopy(dynamicTable, nextHeaderIndex + 1, dynamicTable,
303 System.arraycopy(dynamicTable, 0, doubled, dynamicTable.length, dynamicTable.length);
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
Tween.java 536 System.arraycopy(targetValues, 0, this.targetValues, 0, targetValues.length);
700 System.arraycopy(targetValues, 0, waypoints, waypointsCnt*targetValues.length, targetValues.length);

Completed in 2546 milliseconds

<<31323334353637383940>>