Searched refs:mContacts (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/model/
H A DSimCard.java55 private List<SimContact> mContacts; field in class:SimCard
66 if (other.mContacts != null) {
67 mContacts = new ArrayList<>(other.mContacts);
125 return mContacts != null;
134 if (mContacts == null) {
137 return !mContacts.isEmpty();
146 if (mContacts == null) {
149 return mContacts.size();
163 " isImported? " + isImported() + " contacts=" + mContacts);
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapConvoListingElement.java54 private List<BluetoothMapConvoContactElement> mContacts; field in class:BluetoothMapConvoListingElement
113 return mContacts;
117 this.mContacts = contacts;
121 if(mContacts == null)
122 mContacts = new ArrayList<BluetoothMapConvoContactElement>();
123 mContacts.add(contact);
127 mContacts.remove(contact);
131 mContacts.remove(index);
271 if(mContacts != null){
272 for(BluetoothMapConvoContactElement contact:mContacts){
[all...]
/packages/apps/Contacts/src/com/android/contacts/
H A DSimImportService.java260 private final List<SimContact> mContacts; field in class:SimImportService.ImportTask
270 mContacts = contacts;
293 mDao.importContacts(mContacts, mTargetAccount);
319 .putExtra(EXTRA_RESULT_COUNT, mContacts.size())

Completed in 50 milliseconds