HomeSort by relevance Sort by last modified time
    Searched refs:arraycopy (Results 326 - 350 of 937) sorted by null

<<11121314151617181920>>

  /external/guava/guava/src/com/google/common/base/
Strings.java 175 System.arraycopy(array, 0, array, n, n);
177 System.arraycopy(array, 0, array, n, size - n);
  /external/guava/guava/src/com/google/common/collect/
RegularImmutableList.java 73 System.arraycopy(array, offset, newArray, 0, size);
83 System.arraycopy(array, offset, other, 0, size);
  /external/guava/guava-tests/test/com/google/common/primitives/
ByteArrayAsListTest.java 117 System.arraycopy(left, 0, result, 0, left.length);
118 System.arraycopy(right, 0, result, left.length, right.length);
CharArrayAsListTest.java 117 System.arraycopy(left, 0, result, 0, left.length);
118 System.arraycopy(right, 0, result, left.length, right.length);
DoubleArrayAsListTest.java 117 System.arraycopy(left, 0, result, 0, left.length);
118 System.arraycopy(right, 0, result, left.length, right.length);
FloatArrayAsListTest.java 117 System.arraycopy(left, 0, result, 0, left.length);
118 System.arraycopy(right, 0, result, left.length, right.length);
IntArrayAsListTest.java 118 System.arraycopy(left, 0, result, 0, left.length);
119 System.arraycopy(right, 0, result, left.length, right.length);
LongArrayAsListTest.java 117 System.arraycopy(left, 0, result, 0, left.length);
118 System.arraycopy(right, 0, result, left.length, right.length);
ShortArrayAsListTest.java 117 System.arraycopy(left, 0, result, 0, left.length);
118 System.arraycopy(right, 0, result, left.length, right.length);
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
CompactArray.java 86 System.arraycopy(index, 0, tmp, 0, index.length);
182 System.arraycopy(arr, 0, tmp, 0, arr.length);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
AbstractManifestWriter.java 89 System.arraycopy(referenceTimes, 0, referenceTimesMinusLast, 0, referenceTimes.length - 1);
91 System.arraycopy(checkTimes, 0, checkTimesMinusLast, 0, checkTimes.length - 1);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
CroppedTrack.java 62 System.arraycopy(decodingTimes, fromSample, nuDecodingTimes, 0, toSample - fromSample);
85 System.arraycopy(compositionTime, fromSample, nuCompositionTimes, 0, toSample - fromSample);
  /external/objenesis/main/src/org/objenesis/instantiator/basic/
ObjectInputStreamInstantiator.java 137 System.arraycopy(data, pointer, b, off, remaining);
144 System.arraycopy(data, pointer, b, off, left);
  /external/proguard/src/proguard/optimize/
DuplicateInitializerFixer.java 191 System.arraycopy(parameterAnnotationsAttribute.u2parameterAnnotationsCount,
197 System.arraycopy(parameterAnnotationsAttribute.parameterAnnotations,
  /external/smack/src/org/jivesoftware/smackx/filetransfer/
FaultTolerantNegotiator.java 159 System.arraycopy(primary, 0, namespaces, 0, primary.length);
160 System.arraycopy(secondary, 0, namespaces, primary.length, secondary.length);
  /external/smack/src/org/xbill/DNS/
NSEC3Record.java 91 System.arraycopy(salt, 0, this.salt, 0, salt.length);
99 System.arraycopy(next, 0, this.next, 0, next.length);
  /frameworks/base/core/java/android/text/
PackedObjectVector.java 118 System.arraycopy(mValues, 0, newvalues, 0, mColumns * mRowGapStart);
119 System.arraycopy(mValues, (mRows - after) * mColumns, newvalues, (newsize - after) * mColumns, after * mColumns);
  /frameworks/base/graphics/java/android/graphics/drawable/
LevelListDrawable.java 204 System.arraycopy(mLows, 0, newInts, 0, oldSize);
207 System.arraycopy(mHighs, 0, newInts, 0, oldSize);
  /frameworks/base/obex/javax/obex/
ServerSession.java 270 System.arraycopy(header, 0, data, 3, header.length);
344 System.arraycopy(request.mAuthResp, 0, reply.mAuthResp, 0,
369 System.arraycopy(reply.nonce, 0, mChallengeDigest, 0, 16);
398 System.arraycopy(head, 0, replyData, 3, head.length);
502 System.arraycopy(head, 0, replyData, 3, head.length);
585 System.arraycopy(request.mAuthResp, 0, reply.mAuthResp, 0,
597 System.arraycopy(reply.nonce, 0, mChallengeDigest, 0, 16);
645 System.arraycopy(head, 0, sendData, 7, head.length);
  /frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/
TestDelegates.java 105 System.arraycopy(parameters, 0, newParameters, 1, parameters.length);
115 System.arraycopy(parameters, 0, newParameters, 1, parameters.length);
  /libcore/crypto/src/main/java/org/conscrypt/
DigitalSignature.java 243 System.arraycopy(md5_hash, 0, md5_sha, 0, md5_hash.length);
244 System.arraycopy(sha_hash, 0, md5_sha, md5_hash.length, sha_hash.length);
  /libcore/luni/src/main/java/java/io/
BufferedWriter.java 200 System.arraycopy(buffer, offset, this.buf, pos, available);
214 System.arraycopy(buffer, offset, this.buf, pos, available);
PipedInputStream.java 326 System.arraycopy(buffer, out, bytes, byteOffset, length);
344 System.arraycopy(buffer, out, bytes, byteOffset + totalCopied, length);
  /libcore/luni/src/main/java/javax/crypto/spec/
DESKeySpec.java 125 System.arraycopy(key, offset, this.key, 0, DES_KEY_LEN);
135 System.arraycopy(this.key, 0, result, 0, DES_KEY_LEN);
  /libcore/luni/src/main/java/libcore/io/
IoUtils.java 242 System.arraycopy(bytes, 0, newBytes, 0, capacity);
267 System.arraycopy(bytes, 0, result, 0, count);

Completed in 501 milliseconds

<<11121314151617181920>>