HomeSort by relevance Sort by last modified time
    Searched defs:arraycopy (Results 776 - 800 of 1254) sorted by null

<<31323334353637383940>>

  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/common/
Utils.java 322 System.arraycopy(source, 0, result, 0, newSize);
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
ExifTag.java 419 System.arraycopy(value, offset, mValue, 0, length);
855 System.arraycopy(mValue, 0, buf, offset,
    [all...]
  /frameworks/base/rs/java/android/renderscript/
FieldPacker.java 783 System.arraycopy(mData, 0, newData, 0, mPos);
Matrix4f.java 45 System.arraycopy(dataArray, 0, mMat, 0, mMat.length);
111 System.arraycopy(src.getArray(), 0, mMat, 0, mMat.length);
  /frameworks/base/tools/layoutlib/bridge/src/android/text/
StaticLayout_Delegate.java 107 System.arraycopy(widths, start, builder.mWidths, start, end - start);
125 System.arraycopy(builder.mWidths, 0, floatsArray, 0, builder.mWidths.length);
  /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/ex/common/java/com/android/common/widget/
GroupingListAdapter.java 206 System.arraycopy(mGroupMetadata, 0, array, 0, mGroupCount);
  /frameworks/multidex/library/src/android/support/multidex/
MultiDex.java 307 System.arraycopy(original, 0, combined, 0, original.length);
308 System.arraycopy(extraElements, 0, combined, original.length, extraElements.length);
413 System.arraycopy(dexElementsSuppressedExceptions, 0, combined,
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
ApnSetting.java 235 System.arraycopy(a, 13, typeArray, 0, a.length - 13);
  /frameworks/rs/support/java/src/android/support/v8/renderscript/
Matrix4f.java 46 System.arraycopy(dataArray, 0, mMat, 0, mMat.length);
112 System.arraycopy(src.getArray(), 0, mMat, 0, mMat.length);
  /frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
Transform.java 37 System.arraycopy(src.mVoxelDim, 0, mVoxelDim, 0, mVoxelDim.length);
  /frameworks/support/compat/java/android/support/v4/util/
ArraySet.java 304 System.arraycopy(ohashes, 0, mHashes, 0, mSize);
305 System.arraycopy(oarray, 0, mArray, 0, mSize);
387 System.arraycopy(ohashes, 0, mHashes, 0, ohashes.length);
388 System.arraycopy(oarray, 0, mArray, 0, oarray.length);
398 System.arraycopy(mHashes, index, mHashes, index + 1, mSize - index);
399 System.arraycopy(mArray, index, mArray, index + 1, mSize - index);
447 System.arraycopy(array.mHashes, 0, mHashes, 0, N);
448 System.arraycopy(array.mArray, 0, mArray, 0, N);
504 System.arraycopy(ohashes, 0, mHashes, 0, index);
505 System.arraycopy(oarray, 0, mArray, 0, index)
    [all...]
SimpleArrayMap.java 293 System.arraycopy(ohashes, 0, mHashes, 0, osize);
294 System.arraycopy(oarray, 0, mArray, 0, osize<<1);
445 System.arraycopy(ohashes, 0, mHashes, 0, ohashes.length);
446 System.arraycopy(oarray, 0, mArray, 0, oarray.length);
455 System.arraycopy(mHashes, index, mHashes, index + 1, osize - index);
456 System.arraycopy(mArray, index << 1, mArray, (index + 1) << 1, (mSize - index) << 1);
481 System.arraycopy(array.mHashes, 0, mHashes, 0, N);
482 System.arraycopy(array.mArray, 0, mArray, 0, N<<1);
543 System.arraycopy(ohashes, 0, mHashes, 0, index);
544 System.arraycopy(oarray, 0, mArray, 0, index << 1)
    [all...]
  /frameworks/support/core-utils/java/android/support/v4/content/
FileProvider.java     [all...]
  /frameworks/support/design/tests/src/android/support/design/testutils/
ViewStructureImpl.java 71 System.arraycopy(mChildren, 0, newArray, 0, start);
  /frameworks/support/v7/palette/src/main/java/android/support/v7/graphics/
Target.java 126 System.arraycopy(from.mSaturationTargets, 0, mSaturationTargets, 0,
128 System.arraycopy(from.mLightnessTargets, 0, mLightnessTargets, 0,
130 System.arraycopy(from.mWeights, 0, mWeights, 0, mWeights.length);
  /libcore/dalvik/src/main/java/dalvik/system/
DexPathList.java 221 System.arraycopy(
223 System.arraycopy(
235 System.arraycopy(oldSuppressedExceptions, 0, dexElementsSuppressedExceptions,
237 System.arraycopy(newSuppressedExceptions, 0, dexElementsSuppressedExceptions,
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
SystemTest.java 68 * java.lang.System#arraycopy(java.lang.Object, int,
72 // Test for method void java.lang.System.arraycopy(java.lang.Object,
81 System.arraycopy(a, 0, b, 0, a.length);
88 System.arraycopy(source1, 0, dest1, 0, dest1.length);
94 System.arraycopy(source, 0, dest, 0, dest.length);
  /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);
  /libcore/luni/src/test/java/libcore/java/io/
OldInputStreamReaderTest.java 260 System.arraycopy(suffix, 0, bytes, prefixLength, suffix.length);
  /libcore/luni/src/test/java/libcore/javax/crypto/
ECDHKeyAgreementTest.java 291 System.arraycopy(buffer, 1, secret, 0, secret.length);
  /libcore/ojluni/src/main/java/java/lang/
AbstractStringBuilder.java 389 System.arraycopy(value, srcBegin, dst, dstBegin, srcEnd - srcBegin);
575 System.arraycopy(str, 0, value, count, len);
604 if (len > 0) // let arraycopy report AIOOBE for len < 0
606 System.arraycopy(str, offset, value, count, len);
779 System.arraycopy(value, start+len, value, start, count-end);
843 System.arraycopy(value, index+1, value, index, count-index-1);
    [all...]
ProcessEnvironment.java 283 System.arraycopy(key, 0, block, i, key.length);
286 System.arraycopy(value, 0, block, i, value.length);
ThreadGroup.java 582 System.arraycopy(groups, 0, list, n, ng);
849 System.arraycopy(groups, i + 1, groups, i, ngroups - i);
    [all...]
  /libcore/ojluni/src/main/java/java/net/
Inet6Address.java 238 System.arraycopy(addr, 0, ipaddress, 0, INADDRSZ);
    [all...]

Completed in 1444 milliseconds

<<31323334353637383940>>