/packages/apps/Dialer/java/com/android/contacts/common/model/ |
D | AccountTypeManager.java | 523 List<AccountType> accountTypes = accountTypesByType.get(account.type); in loadAccountsInBackground() local 524 if (accountTypes != null) { in loadAccountsInBackground() 527 for (AccountType accountType : accountTypes) { in loadAccountsInBackground() 744 final List<AccountType> accountTypes = new ArrayList<>(); in getAccountTypes() local 748 accountTypes.add(type); in getAccountTypes() 752 return accountTypes; in getAccountTypes() 808 protected void onPostExecute(Map<AccountTypeWithDataSet, AccountType> accountTypes) { in onPostExecute() argument 809 mInvitableAccountTypeCache.setCachedValue(accountTypes); in onPostExecute()
|
D | Contact.java | 293 /* package */ void setInvitableAccountTypes(ImmutableList<AccountType> accountTypes) { in setInvitableAccountTypes() argument 294 mInvitableAccountTypes = accountTypes; in setInvitableAccountTypes()
|
/packages/apps/Email/provider_src/com/android/email/provider/ |
D | AccountReconciler.java | 61 final LinkedHashSet<String> accountTypes = new LinkedHashSet<String>(); in getAllAmAccounts() local 62 accountTypes.add(context.getString(R.string.account_manager_type_legacy_imap)); in getAllAmAccounts() 63 accountTypes.add(context.getString(R.string.account_manager_type_pop3)); in getAllAmAccounts() 64 accountTypes.add(context.getString(R.string.account_manager_type_exchange)); in getAllAmAccounts() 67 for (final String type : accountTypes) { in getAllAmAccounts()
|
D | EmailProvider.java | 1714 final Set<String> accountTypes = new HashSet<String>(3); in restoreAccounts() local 1718 accountTypes.add(info.accountType); in restoreAccounts() 1724 for (final String accountType : accountTypes) { in restoreAccounts()
|
/packages/apps/Car/Settings/src/com/android/car/settings/accounts/ |
D | AccountListPreferenceController.java | 167 String[] accountTypes = mAuthenticatorHelper.getEnabledAccountTypes(); in getAccountPreferences() local 169 new ArrayList<>(accountTypes.length); in getAccountPreferences() 171 for (int i = 0; i < accountTypes.length; i++) { in getAccountPreferences() 172 String accountType = accountTypes[i]; in getAccountPreferences()
|
/packages/apps/Contacts/src/com/android/contacts/model/account/ |
D | AccountTypeProvider.java | 109 final List<AccountType> accountTypes = getAccountTypes(type); in hasTypeWithDataset() local 110 for (AccountType accountType : accountTypes) { in hasTypeWithDataset() 123 final List<AccountType> accountTypes = getAccountTypes(type); in getType() local 124 for (AccountType accountType : accountTypes) { in getType()
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
D | RawContactDeltaComparator.java | 47 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(mContext); in compare() local 50 final AccountType type1 = accountTypes.getAccountType(accountType1, dataSet1); in compare() 53 final AccountType type2 = accountTypes.getAccountType(accountType2, dataSet2); in compare()
|
D | ContactEditorFragment.java | 974 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(mContext); in hasPendingRawContactChanges() local 975 return RawContactModifier.hasChanges(mState, accountTypes, excludedMimeTypes); in hasPendingRawContactChanges() 1084 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(mContext); in createContact() local 1085 final AccountType accountType = accountTypes.getAccountTypeForAccount(account); in createContact() 1382 AccountTypeManager accountTypes = AccountTypeManager.getInstance(mContext); in rebindEditorsForNewContact() local 1383 AccountType oldAccountType = accountTypes.getAccountTypeForAccount(oldAccount); in rebindEditorsForNewContact() 1384 AccountType newAccountType = accountTypes.getAccountTypeForAccount(newAccount); in rebindEditorsForNewContact()
|
D | RawContactEditorView.java | 579 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(getContext()); in applyIntentExtras() local 580 final AccountType type = mCurrentRawContactDelta.getAccountType(accountTypes); in applyIntentExtras() 645 final AccountTypeManager accountTypes = AccountTypeManager.getInstance( in addReadOnlyRawContactEditorViews() local 647 final AccountType type = mCurrentRawContactDelta.getAccountType(accountTypes); in addReadOnlyRawContactEditorViews()
|
/packages/apps/Settings/src/com/android/settings/accounts/ |
D | AddAccountSettings.java | 218 final String[] accountTypes = in requestChooseAccount() local 224 if (accountTypes != null) { in requestChooseAccount() 225 intent.putExtra(AccountPreferenceBase.ACCOUNT_TYPES_FILTER_KEY, accountTypes); in requestChooseAccount()
|
D | AccountPreferenceController.java | 479 final String[] accountTypes = helper.getEnabledAccountTypes(); in getAccountTypePreferences() local 481 new ArrayList<>(accountTypes.length); in getAccountTypePreferences() 483 for (int i = 0; i < accountTypes.length; i++) { in getAccountTypePreferences() 484 final String accountType = accountTypes[i]; in getAccountTypePreferences()
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/accounts/ |
D | AddAccountSettings.java | 218 final String[] accountTypes = in requestChooseAccount() local 224 if (accountTypes != null) { in requestChooseAccount() 225 intent.putExtra(AccountPreferenceBase.ACCOUNT_TYPES_FILTER_KEY, accountTypes); in requestChooseAccount()
|
D | AccountPreferenceController.java | 479 final String[] accountTypes = helper.getEnabledAccountTypes(); in getAccountTypePreferences() local 481 new ArrayList<>(accountTypes.length); in getAccountTypePreferences() 483 for (int i = 0; i < accountTypes.length; i++) { in getAccountTypePreferences() 484 final String accountType = accountTypes[i]; in getAccountTypePreferences()
|
/packages/apps/Contacts/src/com/android/contacts/util/ |
D | AccountSelectionUtil.java | 94 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(activity); in getSelectAccountDialog() local 96 accountTypes.blockForWritableAccounts(); in getSelectAccountDialog() 123 final AccountType accountType = accountTypes.getAccountType( in getSelectAccountDialog()
|
/packages/apps/Contacts/src/com/android/contacts/vcard/ |
D | SelectAccountActivity.java | 60 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(this); in onCreate() local 61 final List<AccountWithDataSet> accountList = accountTypes.blockForWritableAccounts(); in onCreate()
|
D | NfcImportVCardActivity.java | 196 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(this); in onCreate() local 197 final List<AccountWithDataSet> accountList = accountTypes.blockForWritableAccounts(); in onCreate()
|
D | ImportVCardActivity.java | 599 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(this); in onCreate() local 600 final List<AccountWithDataSet> accountList = accountTypes.blockForWritableAccounts(); in onCreate()
|
/packages/apps/Contacts/src/com/android/contacts/quickcontact/ |
D | InvisibleContactUtil.java | 96 final AccountTypeManager accountTypes = AccountTypeManager.getInstance( in markAddToDefaultGroup() local 98 final AccountType type = rawContactEntityDelta.getAccountType(accountTypes); in markAddToDefaultGroup()
|
/packages/apps/Contacts/src/com/android/contacts/list/ |
D | ContactListFilterView.java | 85 public void bindView(AccountTypeManager accountTypes) { in bindView() argument 130 accountTypes.getAccountType(mFilter.accountType, mFilter.dataSet); in bindView()
|
/packages/apps/Contacts/tests/src/com/android/contacts/model/ |
D | RawContactModifierTests.java | 556 final AccountTypeManager accountTypes = getAccountTypes(accountType); in testTrimInsertEmpty() local 577 RawContactModifier.trimEmpty(set, accountTypes); in testTrimInsertEmpty() 585 final AccountTypeManager accountTypes = getAccountTypes(accountType); in testTrimInsertInsert() local 613 RawContactModifier.trimEmpty(set, accountTypes); in testTrimInsertInsert() 621 final AccountTypeManager accountTypes = getAccountTypes(accountType); in testTrimUpdateRemain() local 673 RawContactModifier.trimEmpty(set, accountTypes); in testTrimUpdateRemain() 699 final AccountTypeManager accountTypes = getAccountTypes(accountType); in testTrimUpdateUpdate() local 745 RawContactModifier.trimEmpty(set, accountTypes); in testTrimUpdateUpdate()
|
/packages/apps/Contacts/src/com/android/contacts/model/ |
D | RawContactModifier.java | 375 public static void trimEmpty(RawContactDeltaList set, AccountTypeManager accountTypes) { in trimEmpty() argument 380 final AccountType type = accountTypes.getAccountType(accountType, dataSet); in trimEmpty() 385 public static boolean hasChanges(RawContactDeltaList set, AccountTypeManager accountTypes) { in hasChanges() argument 386 return hasChanges(set, accountTypes, /* excludedMimeTypes =*/ null); in hasChanges() 389 public static boolean hasChanges(RawContactDeltaList set, AccountTypeManager accountTypes, in hasChanges() argument 399 final AccountType type = accountTypes.getAccountType(accountType, dataSet); in hasChanges()
|
/packages/apps/Contacts/src/com/android/contacts/interactions/ |
D | ContactMultiDeletionInteraction.java | 207 AccountTypeManager accountTypes = AccountTypeManager.getInstance(getActivity()); in onLoadFinished() local 224 final AccountType type = accountTypes.getAccountType(accountType, dataSet); in onLoadFinished()
|
D | ContactDeletionInteraction.java | 252 AccountTypeManager accountTypes = AccountTypeManager.getInstance(getActivity()); in onLoadFinished() local 262 AccountType type = accountTypes.getAccountType(accountType, dataSet); in onLoadFinished()
|
/packages/apps/Email/src/com/android/email/activity/setup/ |
D | AccountSetupTypeFragment.java | 55 final ViewGroup parent = UiUtilities.getView(view, R.id.accountTypes); in onCreateView()
|
/packages/apps/Contacts/src/com/android/contacts/ |
D | ContactSaveService.java | 501 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(this); in saveContact() local 502 RawContactModifier.trimEmpty(state, accountTypes); in saveContact()
|