Home
last modified time | relevance | path

Searched refs:isUserProfile (Results 1 – 13 of 13) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/detail/
DContactDisplayUtils.java160 boolean isUserProfile, boolean isStarred) { in configureStarredImageView() argument
162 if (!isDirectoryEntry && !isUserProfile) { in configureStarredImageView()
180 boolean isUserProfile, boolean isStarred) { in configureStarredMenuItem() argument
182 if (!isDirectoryEntry && !isUserProfile) { in configureStarredMenuItem()
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
DContactEntryListAdapter.java540 if (!isUserProfile(position) in getItemViewType()
673 protected boolean isUserProfile(int position) { in isUserProfile() method in ContactEntryListAdapter
676 boolean isUserProfile = false; in isUserProfile()
687 isUserProfile = cursor.getInt(profileColumnIndex) == 1; in isUserProfile()
694 return isUserProfile; in isUserProfile()
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
DContact.java147 boolean isUserProfile) { in Contact() argument
170 mIsUserProfile = isUserProfile; in Contact()
471 public boolean isUserProfile() { in isUserProfile() method in Contact
DContactLoader.java612 if (!contactData.isUserProfile()) { in loadInvitableAccountTypes()
659 final boolean isUserProfile = cursor.getInt(ContactQuery.IS_USER_PROFILE) == 1; in loadContactHeaderData()
672 customRingtone, isUserProfile); in loadContactHeaderData()
/packages/apps/Contacts/src/com/android/contacts/editor/
DContactEditorBaseFragment.java1178 if (!contact.isUserProfile() && !contact.isWritableContact(mContext)) { in setState()
1191 setStateForExistingContact(readOnlyDisplayName, contact.isUserProfile(), mRawContacts); in setState()
1198 boolean isUserProfile) { in setStateForNewContact() argument
1200 /* oldAccountType =*/ null, isUserProfile); in setStateForNewContact()
1208 RawContactDelta oldState, AccountType oldAccountType, boolean isUserProfile) { in setStateForNewContact() argument
1211 mIsUserProfile = isUserProfile; in setStateForNewContact()
1262 protected void setStateForExistingContact(String readOnlyDisplayName, boolean isUserProfile, in setStateForExistingContact() argument
1272 mIsUserProfile = isUserProfile; in setStateForExistingContact()
DKindSectionDataList.java59 AccountWithDataSet primaryAccount, boolean isUserProfile) { in getEntryToWrite() argument
63 if (!isUserProfile) { in getEntryToWrite()
DCompactKindSectionView.java193 public void setIsUserProfile(boolean isUserProfile) { in setIsUserProfile() argument
194 mIsUserProfile = isUserProfile; in setIsUserProfile()
DCompactRawContactsEditorView.java623 long photoId, boolean hasNewContact, boolean isUserProfile, in setState() argument
634 mIsUserProfile = isUserProfile; in setState()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DBaseContactsProvider2Test.java421 int presence, String status, int chatMode, boolean isUserProfile) { in insertStatusUpdate() argument
423 isUserProfile); in insertStatusUpdate()
427 int presence, String status, long timestamp, int chatMode, boolean isUserProfile) { in insertStatusUpdate() argument
432 return insertStatusUpdate(values, presence, status, timestamp, chatMode, isUserProfile); in insertStatusUpdate()
442 boolean isUserProfile) { in insertStatusUpdate() argument
445 return insertStatusUpdate(values, presence, status, timestamp, chatMode, isUserProfile); in insertStatusUpdate()
450 boolean isUserProfile) { in insertStatusUpdate() argument
462 Uri insertUri = isUserProfile in insertStatusUpdate()
DContactsProvider2Test.java9641 long groupId, int chatMode, boolean isUserProfile) { in createContact() argument
9643 presenceStatus, timesContacted, starred, groupId, chatMode, isUserProfile)); in createContact()
9657 long groupId, int chatMode, boolean isUserProfile) { in createRawContact() argument
9659 timesContacted, starred, groupId, chatMode, isUserProfile); in createRawContact()
9672 boolean isUserProfile) { in createRawContact() argument
9678 Uri insertionUri = isUserProfile in createRawContact()
9694 chatMode, isUserProfile); in createRawContact()
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
DInvisibleContactUtil.java37 if (contactData.isUserProfile()) return false; in isInvisibleAndAddable()
DQuickContactActivity.java2670 mContactData.isDirectoryEntry(), mContactData.isUserProfile(), in toggleStar()
2736 if (mContactData == null || mContactData.isUserProfile() || in isShortcutCreatable()
2759 mContactData.isDirectoryEntry(), mContactData.isUserProfile(), in onPrepareOptionsMenu()
2777 deleteMenuItem.setVisible(isContactEditable() && !mContactData.isUserProfile()); in onPrepareOptionsMenu()
/packages/apps/Contacts/src/com/android/contacts/activities/
DAttachPhotoActivity.java335 contact.isUserProfile(), in saveToContact()