Home
last modified time | relevance | path

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

/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
DContact.java75 private ImmutableList<RawContact> mRawContacts; field in Contact
115 mRawContacts = null; in Contact()
156 mRawContacts = null; in Contact()
192 mRawContacts = from.mRawContacts; in Contact()
362 return mRawContacts; in getRawContacts()
434 if (mRawContacts.size() != 1) { in getContentValues()
439 RawContact rawContact = mRawContacts.get(0); in getContentValues()
482 mRawContacts = rawContacts; in setRawContacts()
/packages/apps/Contacts/src/com/android/contacts/editor/
DAggregationSuggestionView.java63 private List<RawContact> mRawContacts = Lists.newArrayList(); field in AggregationSuggestionView
85 mRawContacts = suggestion.rawContacts; in bindSuggestion()
119 for (RawContact rawContact : mRawContacts) { in canEditSuggestedContact()
144 for (RawContact rawContact : mRawContacts) { in handleItemClickEvent()
DContactEditorFragment.java279 private ImmutableList<RawContact> mRawContacts; field in ContactEditorFragment
525 mRawContacts = ImmutableList.copyOf(savedState.<RawContact>getParcelableArrayList( in onCreate()
550 mRawContacts = contact.getRawContacts(); in setData()
551 if (mRawContacts.size() == 1) { in setData()
552 RawContact rawContact = mRawContacts.get(0); in setData()
584 mRawContacts); in setData()
759 bindEditorsForExistingContact(mDefaultDisplayName, mIsUserProfile, mRawContacts); in rebindEditorsForNewContact()
1838 mRawContacts == null ?
1839 Lists.<RawContact>newArrayList() : Lists.newArrayList(mRawContacts));