/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | AccountWithDataSet.java | 31 private final String mAccountType; field in AccountWithDataSet 36 mAccountType = emptyToNull(accountType); in AccountWithDataSet() 57 return mAccountType; in getAccountType() 65 return (mAccountName == null) && (mAccountType == null); in isLocalAccount() 73 && Objects.equal(mAccountType, other.getAccountType()) in equals() 82 result = 31 * result + (mAccountType != null ? mAccountType.hashCode() : 0); in hashCode() 89 return "AccountWithDataSet {name=" + mAccountName + ", type=" + mAccountType + ", dataSet=" in toString()
|
D | MetadataEntryParser.java | 95 final String mAccountType; field in MetadataEntryParser.RawContactInfo 103 this.mAccountType = accountType; in RawContactInfo()
|
D | ContactsProvider2.java | 5022 final String accountType = rawContactInfo.mAccountType; in searchRawContactIdForRawContactInfo()
|
/packages/apps/Contacts/src/com/android/contacts/list/ |
D | ContactListFilterView.java | 41 private TextView mAccountType; field in ContactListFilterView 86 if (mAccountType == null) { in bindView() 88 mAccountType = (TextView) findViewById(R.id.accountType); in bindView() 95 mAccountType.setText(R.string.contactsList); in bindView() 132 mAccountType.setText(accountType.getDisplayLabel(getContext())); in bindView() 147 mAccountType.setText(textResource); in bindView() 152 if (!TextUtils.isEmpty(mAccountType.getText())) { in generateContentDescription() 153 sb.append(mAccountType.getText()); in generateContentDescription()
|
D | GroupMemberPickerFragment.java | 168 private String mAccountType; field in GroupMemberPickerFragment 197 mAccountType = getArguments().getString(ARG_ACCOUNT_TYPE); in onCreate() 202 mAccountType = savedState.getString(KEY_ACCOUNT_TYPE); in onCreate() 213 outState.putString(KEY_ACCOUNT_TYPE, mAccountType); in onSaveInstanceState() 237 mAccountType, mAccountDataSet); in onLoadFinished() 249 mAccountType, mAccountName, mAccountDataSet)); in createListAdapter()
|
/packages/apps/Settings/src/com/android/settings/accounts/ |
D | AccountDetailDashboardFragment.java | 54 String mAccountType; field in AccountDetailDashboardFragment 75 mAccountType = args.getString(KEY_ACCOUNT_TYPE); in onCreate() 125 if (mAccountType == null) { in displayTile() 132 final boolean display = mAccountType.equals(metadata.getString(METADATA_IA_ACCOUNT)); in displayTile() 151 mAccountType, getPreferenceScreen()); in updateUi() 153 accountTypePreferenceLoader.updatePreferenceIntents(prefs, mAccountType, mAccount); in updateUi()
|
D | ProviderPreference.java | 33 private String mAccountType; field in ProviderPreference 38 mAccountType = accountType; in ProviderPreference() 46 return mAccountType; in getAccountType()
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
D | GroupMembershipView.java | 155 private String mAccountType; field in GroupMembershipView 260 mAccountType = mState.getAccountType(); in setState() 270 if (mGroupMetaData == null || mGroupMetaData.isClosed() || mAccountType == null in updateView() 285 if (accountName.equals(mAccountName) && accountType.equals(mAccountType) in updateView() 358 if (accountName.equals(mAccountName) && accountType.equals(mAccountType) in onClick() 482 new AccountWithDataSet(mAccountName, mAccountType, mDataSet), null); in createNewGroup()
|
D | KindSectionData.java | 35 private final AccountType mAccountType; field in KindSectionData 41 mAccountType = accountType; in KindSectionData() 47 return mAccountType; in getAccountType()
|
/packages/apps/Calendar/src/com/android/calendar/alerts/ |
D | GlobalDismissManager.java | 103 public final String mAccountType; field in GlobalDismissManager.LocalDismissId 116 mAccountType = accountType; in LocalDismissId() 142 if (!mAccountType.equals(that.mAccountType)) { in equals() 151 int result = mAccountType.hashCode(); in hashCode() 298 Uri uri = asSync(Events.CONTENT_URI, dismissId.mAccountType, in syncSenderDismissCache()
|
/packages/apps/Dialer/java/com/android/contacts/common/ |
D | GroupMetaData.java | 25 private String mAccountType; field in GroupMetaData 41 this.mAccountType = accountType; in GroupMetaData() 54 return mAccountType; in getAccountType()
|
/packages/apps/Contacts/src/com/android/contacts/group/ |
D | GroupListItem.java | 24 private final String mAccountType; field in GroupListItem 37 mAccountType = accountType; in GroupListItem() 52 return mAccountType; in getAccountType()
|
D | UpdateGroupMembersAsyncTask.java | 45 private final String mAccountType; field in UpdateGroupMembersAsyncTask 55 mAccountType = accountType; in UpdateGroupMembersAsyncTask() 91 builder.appendQueryParameter(RawContacts.ACCOUNT_TYPE, mAccountType); in getRawContactIds()
|
/packages/apps/Calendar/src/com/android/calendar/selectcalendars/ |
D | SelectSyncedCalendarsMultiAccountAdapter.java | 441 String mAccountType; field in SelectSyncedCalendarsMultiAccountAdapter.RefreshCalendars 446 mAccountType = accountType; in RefreshCalendars() 454 mView.postDelayed(new RefreshCalendars(mToken, mAccount, mAccountType), in run() 458 mAccountType + "#" + mAccount, in run() 461 new String[] { mAccount, mAccountType } /*selectionArgs*/, in run()
|
/packages/apps/UnifiedEmail/src/com/android/mail/photo/ |
D | MailPhotoViewController.java | 71 private String mAccountType; field in MailPhotoViewController 101 mAccountType = intent.getStringExtra(MailPhotoViewActivity.EXTRA_ACCOUNT_TYPE); in onCreate() 182 mActionHandler.shouldShowExtraOption1(mAccountType, in updateActionItems()
|
/packages/apps/Contacts/src/com/android/contacts/model/ |
D | ContactLoader.java | 752 private final String mAccountType; field in ContactLoader.AccountKey 757 mAccountType = accountType; in AccountKey() 763 return Objects.hash(mAccountName, mAccountType, mDataSet); in hashCode() 773 && Objects.equals(mAccountType, other.mAccountType) in equals()
|
/packages/apps/Dialer/java/com/android/contacts/common/model/ |
D | ContactLoader.java | 973 private final String mAccountType; field in ContactLoader.AccountKey 978 mAccountType = accountType; in AccountKey() 984 return Objects.hash(mAccountName, mAccountType, mDataSet); in hashCode() 994 && Objects.equals(mAccountType, other.mAccountType) in equals()
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
D | MetadataEntryParserTest.java | 255 assertEquals(contact1.mAccountType, contact2.mAccountType); in assertRawContactInfoEquals()
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/accounts/ |
D | AccountDetailDashboardFragmentTest.java | 89 mFragment.mAccountType = "com.abc"; in setUp()
|