HomeSort by relevance Sort by last modified time
    Searched refs:mNewTypeList (Results 1 - 2 of 2) sorted by null

  /packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
NativeNfcTag.java 455 int[] mNewTypeList = new int[mTechLibNfcTypes.length + 1];
456 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, mTechLibNfcTypes.length);
457 mNewTypeList[mTechLibNfcTypes.length] = libnfctype;
458 mTechLibNfcTypes = mNewTypeList;
478 int[] mNewTypeList = new int[mTechLibNfcTypes.length - 1];
479 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, techIndex);
480 System.arraycopy(mTechLibNfcTypes, techIndex + 1, mNewTypeList, techIndex,
482 mTechLibNfcTypes = mNewTypeList;
  /packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
NativeNfcTag.java 466 int[] mNewTypeList = new int[mTechLibNfcTypes.length + 1];
467 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, mTechLibNfcTypes.length);
468 mNewTypeList[mTechLibNfcTypes.length] = libnfctype;
469 mTechLibNfcTypes = mNewTypeList;
489 int[] mNewTypeList = new int[mTechLibNfcTypes.length - 1];
490 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, techIndex);
491 System.arraycopy(mTechLibNfcTypes, techIndex + 1, mNewTypeList, techIndex,
493 mTechLibNfcTypes = mNewTypeList;

Completed in 35 milliseconds