HomeSort by relevance Sort by last modified time
    Searched refs:isUserProfile (Results 1 - 16 of 16) sorted by null

  /packages/apps/Contacts/src/com/android/contacts/editor/
PickRawContactLoader.java 81 result.isUserProfile = contactCursor.getInt(/* Contacts.IS_USER_PROFILE */ 1) == 1;
88 if (result.isUserProfile) {
133 final Uri dataUri = result.isUserProfile
204 public boolean isUserProfile;
212 isUserProfile = in.readInt() == 1;
255 dest.writeInt(isUserProfile ? 1 : 0);
PickRawContactDialogFragment.java 115 if (mRawContactsMetadata.isUserProfile && account.areContactsWritable()) {
184 if (!metadata.isUserProfile) {
ContactEditorFragment.java 153 private static final String KEY_IS_USER_PROFILE = "isUserProfile";
    [all...]
KindSectionView.java 197 public void setIsUserProfile(boolean isUserProfile) {
198 mIsUserProfile = isUserProfile;
RawContactEditorView.java 442 boolean hasNewContact, boolean isUserProfile, AccountWithDataSet primaryAccount,
456 mIsUserProfile = isUserProfile;
    [all...]
  /packages/apps/Dialer/java/com/android/contacts/common/model/
Contact.java 128 boolean isUserProfile) {
150 mIsUserProfile = isUserProfile;
359 public boolean isUserProfile() {
ContactLoader.java 152 false /* isUserProfile */);
392 if (!contactData.isUserProfile()) {
436 final boolean isUserProfile = cursor.getInt(ContactQuery.IS_USER_PROFILE) == 1;
465 isUserProfile);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/
Contact.java 145 boolean isUserProfile) {
167 mIsUserProfile = isUserProfile;
458 public boolean isUserProfile() {
ContactLoader.java 396 false /* isUserProfile */);
610 final boolean isUserProfile = cursor.getInt(ContactQuery.IS_USER_PROFILE) == 1;
623 customRingtone, isUserProfile);
    [all...]
  /packages/apps/Dialer/java/com/android/contacts/common/list/
ContactEntryListAdapter.java 517 if (!isUserProfile(position)
633 protected boolean isUserProfile(int position) {
636 boolean isUserProfile = false;
647 isUserProfile = cursor.getInt(profileColumnIndex) == 1;
654 return isUserProfile;
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
InvisibleContactUtil.java 37 if (contactData.isUserProfile()) return false;
QuickContactActivity.java     [all...]
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDisplayUtils.java 158 boolean isUserProfile, boolean isStarred) {
160 if (!isDirectoryEntry && !isUserProfile) {
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
BaseContactsProvider2Test.java 429 int presence, String status, int chatMode, boolean isUserProfile) {
431 isUserProfile);
435 int presence, String status, long timestamp, int chatMode, boolean isUserProfile) {
440 return insertStatusUpdate(values, presence, status, timestamp, chatMode, isUserProfile);
450 boolean isUserProfile) {
453 return insertStatusUpdate(values, presence, status, timestamp, chatMode, isUserProfile);
458 boolean isUserProfile) {
470 Uri insertUri = isUserProfile
    [all...]
ContactsProvider2Test.java     [all...]
  /packages/apps/Contacts/src/com/android/contacts/activities/
AttachPhotoActivity.java 347 contact.isUserProfile(),

Completed in 369 milliseconds