| /external/guava/guava-gwt/test-super/com/google/common/primitives/super/com/google/common/primitives/ | 
| ByteArrayAsListTest.java | 81     System.arraycopy(left, 0, result, 0, left.length); 82     System.arraycopy(right, 0, result, left.length, right.length);
 
 | 
| CharArrayAsListTest.java | 81     System.arraycopy(left, 0, result, 0, left.length); 82     System.arraycopy(right, 0, result, left.length, right.length);
 
 | 
| DoubleArrayAsListTest.java | 81     System.arraycopy(left, 0, result, 0, left.length); 82     System.arraycopy(right, 0, result, left.length, right.length);
 
 | 
| FloatArrayAsListTest.java | 81     System.arraycopy(left, 0, result, 0, left.length); 82     System.arraycopy(right, 0, result, left.length, right.length);
 
 | 
| IntArrayAsListTest.java | 82     System.arraycopy(left, 0, result, 0, left.length); 83     System.arraycopy(right, 0, result, left.length, right.length);
 
 | 
| LongArrayAsListTest.java | 81     System.arraycopy(left, 0, result, 0, left.length); 82     System.arraycopy(right, 0, result, left.length, right.length);
 
 | 
| ShortArrayAsListTest.java | 81     System.arraycopy(left, 0, result, 0, left.length); 82     System.arraycopy(right, 0, result, left.length, right.length);
 
 | 
| /external/jarjar/src/main/com/tonicsystems/jarjar/ | 
| MainUtil.java | 35                     System.arraycopy(args, 1, remaining, 0, remaining.length); 64                 System.arraycopy(args, 1, rest, 0, remaining);
 
 | 
| /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/values/ | 
| GradientColorValue.java | 82 			System.arraycopy(value.colors, 0, colors, 0, colors.length); 84 			System.arraycopy(value.timeline, 0, timeline, 0, timeline.length);
 
 | 
| ScaledNumericValue.java | 94 		System.arraycopy(value.scaling, 0, scaling, 0, scaling.length); 96 		System.arraycopy(value.timeline, 0, timeline, 0, timeline.length);
 
 | 
| /external/libgdx/gdx/src/com/badlogic/gdx/utils/ | 
| FloatArray.java | 56 		System.arraycopy(array.items, 0, items, 0, size); 72 		System.arraycopy(array, startIndex, items, 0, count);
 99 		System.arraycopy(array, offset, items, size, length);
 128 			System.arraycopy(items, index, items, index + 1, size - index);
 184 			System.arraycopy(items, index + 1, items, index, size - index);
 197 			System.arraycopy(items, start + count, items, start, size - (start + count));
 273 		System.arraycopy(items, 0, newItems, 0, Math.min(size, newItems.length));
 316 		System.arraycopy(items, 0, array, 0, size);
 
 | 
| /external/lzma/Java/Tukaani/src/org/tukaani/xz/ | 
| SimpleOutputStream.java | 61             System.arraycopy(buf, off, filterBuf, pos + unfiltered, copySize); 85                 System.arraycopy(filterBuf, pos, filterBuf, 0, unfiltered);
 
 | 
| /external/lzma/Java/Tukaani/src/org/tukaani/xz/lz/ | 
| LZDecoder.java | 33             System.arraycopy(presetDict, presetDict.length - pos, buf, 0, pos); 121         System.arraycopy(buf, start, out, outOff, copySize);
 
 | 
| /external/okhttp/okio/okio/src/main/java/okio/ | 
| Segment.java | 140       System.arraycopy(sink.data, sink.pos, sink.data, 0, sink.limit - sink.pos); 145     System.arraycopy(data, pos, sink.data, sink.limit, byteCount);
 
 | 
| /external/proguard/src/proguard/classfile/editor/ | 
| ElementValuesEditor.java | 178             System.arraycopy(elementValues, 0, 209         System.arraycopy(elementValues, index + 1,
 
 | 
| /external/sl4a/Common/src/org/apache/commons/codec/binary/ | 
| Base64Codec.java | 326         System.arraycopy(lineSeparator, 0, this.lineSeparator, 0, lineSeparator.length); 376             System.arraycopy(buffer, 0, b, 0, buffer.length);
 397                 System.arraycopy(buffer, readPos, b, bPos, len);
 425         // special circumstances, saving on some System.arraycopy().
 484                 System.arraycopy(lineSeparator, 0, buffer, pos, lineSeparator.length);
 505                         System.arraycopy(lineSeparator, 0, buffer, pos, lineSeparator.length);
 [all...]
 | 
| /frameworks/base/core/java/android/util/ | 
| LongSparseLongArray.java | 127         System.arraycopy(mKeys, index + 1, mKeys, index, mSize - (index + 1)); 128         System.arraycopy(mValues, index + 1, mValues, index, mSize - (index + 1));
 
 | 
| SparseLongArray.java | 125         System.arraycopy(mKeys, index + 1, mKeys, index, mSize - (index + 1)); 126         System.arraycopy(mValues, index + 1, mValues, index, mSize - (index + 1));
 
 | 
| /frameworks/base/core/tests/coretests/src/android/widget/listview/ | 
| ListGetCheckItemIdsTest.java | 47         System.arraycopy(checkItemIds, 0, sortedCheckItemsIds, 0, checkItemIds.length); 51         System.arraycopy(expectedIds, 0, sortedExpectedIds, 0, expectedIds.length);
 
 | 
| /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/ | 
| Model.java | 268                     System.arraycopy(positions, left, positions, left + 1, n); 269                     System.arraycopy(sortKey, left, sortKey, left + 1, n);
 270                     System.arraycopy(isDirs, left, isDirs, left + 1, n);
 271                     System.arraycopy(ids, left, ids, left + 1, n);
 351                     System.arraycopy(positions, left, positions, left + 1, n);
 352                     System.arraycopy(sortKey, left, sortKey, left + 1, n);
 353                     System.arraycopy(isDirs, left, isDirs, left + 1, n);
 354                     System.arraycopy(ids, left, ids, left + 1, n);
 
 | 
| /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/ | 
| CachedPathIteratorFactory.java | 62             System.arraycopy(points, 0, itemPoints, 0, nPoints); 259         System.arraycopy(coords, 0, curve, 2, coords.length);
 358                 System.arraycopy(mCoordinates[mNextIndex], 0, points, 2,
 367                 System.arraycopy(points, 2, mCurrentCoords, 0, mCoordinates[mNextIndex].length);
 369                 System.arraycopy(mCoordinates[mNextIndex], 0, mCurrentCoords, 0,
 379             System.arraycopy(mCurrentCoords, 0, coords, 0, getNumberOfPoints(mCurrentType) * 2);
 460                     System.arraycopy(coords, 0, curve, 2, coords.length);
 466                     System.arraycopy(curve, 2, coords, 0, coords.length);
 
 | 
| /frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/ | 
| ViewMatrix.java | 48             System.arraycopy(src.mLookPoint, 0, mLookPoint, 0, mLookPoint.length); 51             System.arraycopy(src.mEyePoint, 0, mEyePoint, 0, mEyePoint.length);
 54             System.arraycopy(src.mUpVector, 0, mUpVector, 0, mUpVector.length);
 59             System.arraycopy(src.mScreenDim, 0, mScreenDim, 0, mScreenDim.length);
 62             System.arraycopy(src.mStartV, 0, mStartV, 0, mStartV.length);
 65             System.arraycopy(src.mMoveToV, 0, mMoveToV, 0, mMoveToV.length);
 73                 System.arraycopy(src.mStartEyePoint, 0, mStartEyePoint, 0, mStartEyePoint.length);
 80                 System.arraycopy(src.mStartUpVector, 0, mStartUpVector, 0, mStartUpVector.length);
 
 | 
| /libcore/ojluni/src/main/java/java/io/ | 
| PushbackInputStream.java | 180             System.arraycopy(buf, pos, b, off, avail); 235         System.arraycopy(b, off, buf, pos, len);
 
 | 
| PushbackReader.java | 122                     System.arraycopy(buf, pos, cbuf, off, avail); 180             System.arraycopy(cbuf, off, buf, pos, len);
 
 | 
| /libcore/ojluni/src/main/java/java/lang/ | 
| ProcessImpl.java | 50         System.arraycopy(bytes, 0, 78             System.arraycopy(arg, 0, argBlock, i, arg.length);
 
 |