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 474 int[] mNewTypeList = new int[mTechLibNfcTypes.length + 1];
475 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, mTechLibNfcTypes.length);
476 mNewTypeList[mTechLibNfcTypes.length] = libnfctype;
477 mTechLibNfcTypes = mNewTypeList;
497 int[] mNewTypeList = new int[mTechLibNfcTypes.length - 1];
498 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, techIndex);
499 System.arraycopy(mTechLibNfcTypes, techIndex + 1, mNewTypeList, techIndex,
501 mTechLibNfcTypes = mNewTypeList;
  /packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
NativeNfcTag.java 478 int[] mNewTypeList = new int[mTechLibNfcTypes.length + 1];
479 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, mTechLibNfcTypes.length);
480 mNewTypeList[mTechLibNfcTypes.length] = libnfctype;
481 mTechLibNfcTypes = mNewTypeList;
501 int[] mNewTypeList = new int[mTechLibNfcTypes.length - 1];
502 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, techIndex);
503 System.arraycopy(mTechLibNfcTypes, techIndex + 1, mNewTypeList, techIndex,
505 mTechLibNfcTypes = mNewTypeList;

Completed in 927 milliseconds