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

<<11121314151617181920>>

  /external/mockito/cglib-and-asm/src/org/mockito/asm/
ByteVector.java 274 System.arraycopy(b, off, data, length, len);
290 System.arraycopy(data, 0, newData, 0, 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/classfile/editor/
AttributesEditor.java 230 System.arraycopy(attributes, 0,
261 System.arraycopy(attributes, index + 1,
  /external/proguard/src/proguard/evaluation/value/
InstructionOffsetValue.java 195 System.arraycopy(thisValues, 0, newValues, 0, thisValues.length);
212 System.arraycopy(otherValues, 0, newValues, newIndex, otherValues.length);
  /external/proguard/src/proguard/optimize/
DuplicateInitializerFixer.java 199 System.arraycopy(parameterAnnotationsAttribute.u2parameterAnnotationsCount,
205 System.arraycopy(parameterAnnotationsAttribute.parameterAnnotations,
  /external/v8/build/android/incremental_install/java/org/chromium/incrementalinstall/
Reflect.java 52 System.arraycopy(left, 0, result, 0, left.length);
53 System.arraycopy(right, 0, result, left.length, right.length);
  /frameworks/base/core/java/android/text/
DynamicLayout.java 499 System.arraycopy(mBlockEndLines, 0, blockEndLines, 0, firstBlock);
500 System.arraycopy(mBlockIndices, 0, blockIndices, 0, firstBlock);
501 System.arraycopy(mBlockEndLines, lastBlock + 1,
503 System.arraycopy(mBlockIndices, lastBlock + 1,
508 System.arraycopy(mBlockEndLines, lastBlock + 1,
510 System.arraycopy(mBlockIndices, lastBlock + 1,
555 System.arraycopy(blockEndLines, 0, mBlockEndLines, 0, blockEndLines.length);
556 System.arraycopy(blockIndices, 0, mBlockIndices, 0, blockIndices.length);
PackedObjectVector.java 119 System.arraycopy(mValues, 0, newvalues, 0, mColumns * mRowGapStart);
120 System.arraycopy(mValues, (mRows - after) * mColumns, newvalues, (newsize - after) * mColumns, after * mColumns);
SpannableStringInternal.java 85 System.arraycopy(src.mSpans, 0, mSpans, 0, src.mSpans.length);
86 System.arraycopy(src.mSpanData, 0, mSpanData, 0, mSpanData.length);
200 System.arraycopy(mSpans, 0, newtags, 0, mSpanCount);
201 System.arraycopy(mSpanData, 0, newdata, 0, mSpanCount * 3);
229 System.arraycopy(spans, i + 1, spans, i, c);
230 System.arraycopy(data, (i + 1) * COLUMNS,
338 System.arraycopy(ret, j, ret, j + 1, count - j);
360 System.arraycopy(ret, 0, nret, 0, count);
  /frameworks/base/core/java/android/util/
SparseIntArray.java 127 System.arraycopy(mKeys, index + 1, mKeys, index, mSize - (index + 1));
128 System.arraycopy(mValues, index + 1, mValues, index, mSize - (index + 1));
  /frameworks/base/core/java/com/android/internal/util/
LineBreakBufferedWriter.java 236 System.arraycopy(buf, off, buffer, bufferIndex, len);
277 System.arraycopy(buffer, bufferIndex - rest, buffer, 0, rest);
  /frameworks/base/media/packages/BluetoothMidiService/src/com/android/bluetoothmidiservice/
BluetoothPacketEncoder.java 119 System.arraycopy(msg, offset, mAccumulationBuffer, mAccumulatedBytes, copy);
150 System.arraycopy(msg, offset + 1, mAccumulationBuffer, mAccumulatedBytes,
  /frameworks/base/obex/javax/obex/
ServerSession.java 277 System.arraycopy(header, 0, data, 3, header.length);
351 System.arraycopy(request.mAuthResp, 0, reply.mAuthResp, 0,
377 System.arraycopy(reply.nonce, 0, mChallengeDigest, 0, 16);
406 System.arraycopy(head, 0, replyData, 3, head.length);
511 System.arraycopy(head, 0, replyData, 3, head.length);
609 System.arraycopy(request.mAuthResp, 0, reply.mAuthResp, 0,
621 System.arraycopy(reply.nonce, 0, mChallengeDigest, 0, 16);
670 System.arraycopy(head, 0, sendData, 7, head.length);
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/writer/
FlagSet.java 43 System.arraycopy(buckets, 0, this.buckets, 0, buckets.length);
49 System.arraycopy(buckets, 0, this.buckets, 0, buckets.length);
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/utils/
ObexAppParameters.java 52 System.arraycopy(raw, i, val, 0, len);
86 System.arraycopy(entry.getValue(), 0, ret, idx, length);
  /frameworks/support/compat/java/android/support/v4/util/
CircularArray.java 35 System.arraycopy(mElements, mHead, a, 0, r);
36 System.arraycopy(mElements, 0, a, r, mHead);
  /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);
  /libcore/luni/src/test/java/tests/security/cert/
PolicyQualifierInfoTest.java 194 System.arraycopy(encoding, 12, pqEncoding, 0, pqEncoding.length);
214 System.arraycopy(encoding, 12, pqEncoding, 0, pqEncoding.length);
  /libcore/ojluni/src/main/java/java/io/
PipedInputStream.java 253 System.arraycopy(b, off, buffer, in, nextTransferAmount);
414 System.arraycopy(buffer, out, b, off + rlen, available);
  /libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
DoubleStreamTestDataProvider.java 59 System.arraycopy(to100, 0, twice, 0, to100.length);
60 System.arraycopy(to100, 0, twice, to100.length, to100.length);
IntStreamTestDataProvider.java 59 System.arraycopy(to100, 0, twice, 0, to100.length);
60 System.arraycopy(to100, 0, twice, to100.length, to100.length);
LongStreamTestDataProvider.java 59 System.arraycopy(to100, 0, twice, 0, to100.length);
60 System.arraycopy(to100, 0, twice, to100.length, to100.length);
  /libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
DoubleStreamTestDataProvider.java 60 System.arraycopy(to100, 0, twice, 0, to100.length);
61 System.arraycopy(to100, 0, twice, to100.length, to100.length);

Completed in 1568 milliseconds

<<11121314151617181920>>