HomeSort by relevance Sort by last modified time
    Searched defs:accountTypes (Results 1 - 20 of 20) sorted by null

  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
InvisibleContactUtil.java 82 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(
84 final AccountType type = rawContactEntityDelta.getAccountType(accountTypes);
  /packages/apps/Contacts/src/com/android/contacts/editor/
AggregationSuggestionView.java 118 AccountTypeManager accountTypes = AccountTypeManager.getInstance(getContext());
125 AccountType type = accountTypes.getAccountType(accountType, dataSet);
ContactEditorFragment.java 645 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(mContext);
647 final AccountType type = state.getAccountType(accountTypes);
706 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(mContext);
708 accountTypes.getAccountType(account != null ? account.type : null,
731 AccountTypeManager accountTypes = AccountTypeManager.getInstance(mContext);
732 AccountType oldAccountType = accountTypes.getAccountType(
734 AccountType newAccountType = accountTypes.getAccountType(
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
AccountSelectionUtil.java 92 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(context);
93 final List<AccountWithDataSet> writableAccountList = accountTypes.getAccounts(true);
123 final AccountType accountType = accountTypes.getAccountType(
  /packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
SelectAccountActivity.java 60 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(this);
61 final List<AccountWithDataSet> accountList = accountTypes.getAccounts(true);
NfcImportVCardActivity.java 171 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(this);
172 final List<AccountWithDataSet> accountList = accountTypes.getAccounts(true);
ImportVCardActivity.java     [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/interactions/
ImportExportDialogFragment.java 215 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(getActivity());
216 final List<AccountWithDataSet> accountList = accountTypes.getAccounts(true);
  /packages/apps/Email/src/com/android/email/provider/
AccountReconciler.java 59 final LinkedHashSet<String> accountTypes = new LinkedHashSet<String>();
60 accountTypes.add(context.getString(R.string.account_manager_type_legacy_imap));
61 accountTypes.add(context.getString(R.string.account_manager_type_pop3));
62 accountTypes.add(context.getString(R.string.account_manager_type_exchange));
65 for (final String type : accountTypes) {
EmailProvider.java     [all...]
  /packages/apps/Settings/src/com/android/settings/accounts/
AddAccountSettings.java 155 final String[] accountTypes =
161 if (accountTypes != null) {
162 intent.putExtra(AccountPreferenceBase.ACCOUNT_TYPES_FILTER_KEY, accountTypes);
AccountSettings.java 358 final String[] accountTypes = helper.getEnabledAccountTypes();
360 new ArrayList<AccountPreference>(accountTypes.length);
362 for (int i = 0; i < accountTypes.length; i++) {
363 final String accountType = accountTypes[i];
  /packages/apps/Contacts/src/com/android/contacts/interactions/
ContactDeletionInteraction.java 234 AccountTypeManager accountTypes = AccountTypeManager.getInstance(getActivity());
242 AccountType type = accountTypes.getAccountType(accountType, dataSet);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
AccountFilterActivity.java 115 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(context);
116 List<AccountWithDataSet> accounts = accountTypes.getAccounts(false);
118 AccountType accountType = accountTypes.getAccountType(account.type, account.dataSet);
CustomContactListFilterActivity.java 127 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(context);
131 for (AccountWithDataSet account : accountTypes.getAccounts(false)) {
132 final AccountType accountType = accountTypes.getAccountTypeForAccount(account);
    [all...]
  /development/samples/ContactManager/src/com/example/android/contactmanager/
ContactAdder.java 250 AuthenticatorDescription[] accountTypes = AccountManager.get(this).getAuthenticatorTypes();
258 accountTypes);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
AccountTypeManager.java 385 // The same AccountTypes, but keyed off {@link RawContacts#ACCOUNT_TYPE}. Since there can
484 List<AccountType> accountTypes = accountTypesByType.get(account.type);
485 if (accountTypes != null) {
488 for (AccountType accountType : accountTypes) {
744 final List<AccountType> accountTypes = Lists.newArrayList();
748 accountTypes.add(type);
752 return accountTypes;
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/
BrowseInfo.java 481 String[] accountTypes = mAuthenticatorHelper.getEnabledAccountTypes();
482 if (accountTypes.length == 0) {
485 accountTypes = mAuthenticatorHelper.getEnabledAccountTypes();
490 for (String accountType : accountTypes) {
516 if (accountTypes.length == 1) {
517 i.putExtra(AccountManager.KEY_ACCOUNT_TYPE, accountTypes[0]);
  /packages/apps/Contacts/src/com/android/contacts/
ContactSaveService.java 338 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(this);
339 RawContactModifier.trimEmpty(state, accountTypes);
    [all...]
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/
RawContactModifierTests.java 518 final AccountTypeManager accountTypes = getAccountTypes(accountType);
539 RawContactModifier.trimEmpty(set, accountTypes);
547 final AccountTypeManager accountTypes = getAccountTypes(accountType);
573 RawContactModifier.trimEmpty(set, accountTypes);
581 final AccountTypeManager accountTypes = getAccountTypes(accountType);
630 RawContactModifier.trimEmpty(set, accountTypes);
653 final AccountTypeManager accountTypes = getAccountTypes(accountType);
696 RawContactModifier.trimEmpty(set, accountTypes);
    [all...]

Completed in 715 milliseconds