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

<<41424344454647484950>>

  /libcore/ojluni/src/main/java/java/util/concurrent/
CopyOnWriteArrayList.java 374 System.arraycopy(elements, 0, a, 0, len);
461 System.arraycopy(elements, 0, newElements, 0, index);
462 System.arraycopy(elements, index, newElements, index + 1,
487 System.arraycopy(elements, 0, newElements, 0, index);
488 System.arraycopy(elements, index + 1, newElements, index,
540 System.arraycopy(current, 0, newElements, 0, index);
541 System.arraycopy(current, index + 1,
574 System.arraycopy(elements, 0, newElements, 0, fromIndex);
575 System.arraycopy(elements, toIndex, newElements,
745 System.arraycopy(cs, 0, newElements, len, added)
    [all...]
LinkedTransferQueue.java     [all...]
ScheduledThreadPoolExecutor.java     [all...]
  /libcore/ojluni/src/main/java/sun/misc/
FDBigInteger.java 666 System.arraycopy(data, 1, data, 0, --nWords);
798 System.arraycopy(mData, 0, mData, -offsetDiff, minLen);
802 System.arraycopy(mData, 0, r, -offsetDiff, minLen);
    [all...]
  /libcore/ojluni/src/main/java/sun/security/x509/
X509CRLImpl.java 752 System.arraycopy(tbsCertList, 0, dup, 0, dup.length);
765 System.arraycopy(signature, 0, dup, 0, dup.length);
    [all...]
  /libcore/support/src/test/java/libcore/java/security/
TestKeyStore.java 630 System.arraycopy(caCertChain, 0, x509cc, 1, caCertChain.length);
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
AdapterProperties.java 638 System.arraycopy(val, j * BD_ADDR_LEN, addrByte, 0, BD_ADDR_LEN);
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapSmsPdu.java 381 System.arraycopy(userData, 0, data, gsmSubmitGetTpUdOffset(), userDataLength);
621 System.arraycopy(data, 1+addressLength, newData, 0, pduLength);
  /packages/apps/Camera2/src/com/android/camera/exif/
ExifParser.java 561 System.arraycopy(mDataAboveIfd0, (int) offset - DEFAULT_IFD0_OFFSET,
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
PinnedHeaderListView.java 170 System.arraycopy(headers, 0, mHeaders, 0, headers.length);
  /packages/apps/Dialer/java/com/android/contacts/common/list/
PinnedHeaderListView.java 116 System.arraycopy(headers, 0, mHeaders, 0, headers.length);
  /packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/exif/
ExifParser.java 520 System.arraycopy(
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
ExifParser.java 561 System.arraycopy(mDataAboveIfd0, (int) offset - DEFAULT_IFD0_OFFSET,
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageCurves.java 360 System.arraycopy(result, 0, redHistogram, 0, 256);
361 System.arraycopy(result, 256, greenHistogram, 0, 256);
362 System.arraycopy(result, 512, blueHistogram, 0, 256);
  /packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
PduComposer.java 194 protected void arraycopy(final byte[] buf, final int pos, final int length) { method in class:PduComposer
302 arraycopy(text, 0, text.length); method
443 arraycopy(text, 0, text.length); method
1052 arraycopy(partData, 0, partData.length); method
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/sms/
DatabaseMessages.java 126 System.arraycopy(projection, 0, withoutSubId, 0, withoutSubId.length);
313 System.arraycopy(projection, 0, withoutSubId, 0, withoutSubId.length);
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/util/exif/
ExifParser.java 563 System.arraycopy(mDataAboveIfd0, (int) offset - DEFAULT_IFD0_OFFSET,
    [all...]
  /packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
NativeNfcTag.java 465 System.arraycopy(mTechList, 0, mNewTechList, 0, mTechList.length);
470 System.arraycopy(mTechHandles, 0, mNewHandleList, 0, mTechHandles.length);
475 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, mTechLibNfcTypes.length);
486 System.arraycopy(mTechList, 0, mNewTechList, 0, techIndex);
487 System.arraycopy(mTechList, techIndex + 1, mNewTechList, techIndex,
492 System.arraycopy(mTechHandles, 0, mNewHandleList, 0, techIndex);
493 System.arraycopy(mTechHandles, techIndex + 1, mNewTechList, techIndex,
498 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, techIndex);
499 System.arraycopy(mTechLibNfcTypes, techIndex + 1, mNewTypeList, techIndex,
510 System.arraycopy(mTechExtras, 0, mNewTechExtras, 0, techIndex)
    [all...]