Home
last modified time | relevance | path

Searched refs:mRawContacts (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Dialer/java/com/android/contacts/common/model/
DContact.java65 private ImmutableList<RawContact> mRawContacts; field in Contact
93 mRawContacts = null; in Contact()
137 mRawContacts = null; in Contact()
172 mRawContacts = from.mRawContacts; in Contact()
298 return mRawContacts; in getRawContacts()
302 mRawContacts = rawContacts; in setRawContacts()
328 if (mRawContacts.size() != 1) { in getContentValues()
332 RawContact rawContact = mRawContacts.get(0); in getContentValues()
/packages/apps/Contacts/src/com/android/contacts/model/
DContact.java75 private ImmutableList<RawContact> mRawContacts; field in Contact
114 mRawContacts = null; in Contact()
154 mRawContacts = null; in Contact()
189 mRawContacts = from.mRawContacts; in Contact()
349 return mRawContacts; in getRawContacts()
421 if (mRawContacts.size() != 1) { in getContentValues()
426 RawContact rawContact = mRawContacts.get(0); in getContentValues()
463 return mRawContacts.size() > 1; in isMultipleRawContacts()
486 mRawContacts = rawContacts; in setRawContacts()
/packages/apps/Contacts/src/com/android/contacts/editor/
DContactEditorFragment.java350 protected ImmutableList<RawContact> mRawContacts; field in ContactEditorFragment
503 mRawContacts = ImmutableList.copyOf(savedState.<RawContact>getParcelableArrayList( in onCreate()
631 outState.putParcelableArrayList(KEY_RAW_CONTACTS, mRawContacts == null ? in onSaveInstanceState()
632 Lists.<RawContact>newArrayList() : Lists.newArrayList(mRawContacts)); in onSaveInstanceState()
1103 mRawContacts = contact.getRawContacts(); in setState()
1117 setStateForExistingContact(contact.isUserProfile(), mRawContacts); in setState() local
1392 setStateForExistingContact(isEditingUserProfile(), mRawContacts); in rebindEditorsForNewContact() local