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

  /packages/apps/Contacts/src/com/android/contacts/vcard/
SelectAccountActivity.java 60 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(this);
61 final List<AccountWithDataSet> accountList = accountTypes.getAccounts(true);
NfcImportVCardActivity.java 172 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(this);
173 final List<AccountWithDataSet> accountList = accountTypes.getAccounts(true);
ImportVCardActivity.java     [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
AggregationSuggestionView.java 115 AccountTypeManager accountTypes = AccountTypeManager.getInstance(getContext());
122 AccountType type = accountTypes.getAccountType(accountType, dataSet);
ContactEditorFragment.java 521 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(mContext);
525 final AccountType type = accountTypes.getAccountType(accountType, dataSet);
584 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(mContext);
586 accountTypes.getAccountType(account != null ? account.type : null,
608 AccountTypeManager accountTypes = AccountTypeManager.getInstance(mContext);
609 AccountType oldAccountType = accountTypes.getAccountType(
611 AccountType newAccountType = accountTypes.getAccountType(
689 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(mContext);
699 final AccountType type = accountTypes.getAccountType(accountType, dataSet);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/util/
AccountSelectionUtil.java 91 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(context);
92 final List<AccountWithDataSet> writableAccountList = accountTypes.getAccounts(true);
122 final AccountType accountType = accountTypes.getAccountType(
  /packages/apps/Settings/src/com/android/settings/accounts/
AddAccountSettings.java 110 final String[] accountTypes =
116 if (accountTypes != null) {
117 intent.putExtra(AccountPreferenceBase.ACCOUNT_TYPES_FILTER_KEY, accountTypes);
  /packages/apps/Contacts/src/com/android/contacts/interactions/
ImportExportDialogFragment.java 198 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(getActivity());
199 final List<AccountWithDataSet> accountList = accountTypes.getAccounts(true);
ContactDeletionInteraction.java 234 AccountTypeManager accountTypes = AccountTypeManager.getInstance(getActivity());
242 AccountType type = accountTypes.getAccountType(accountType, dataSet);
  /packages/apps/Contacts/src/com/android/contacts/list/
AccountFilterActivity.java 117 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(context);
118 List<AccountWithDataSet> accounts = accountTypes.getAccounts(false);
120 AccountType accountType = accountTypes.getAccountType(account.type, account.dataSet);
CustomContactListFilterActivity.java 129 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(context);
133 for (AccountWithDataSet account : accountTypes.getAccounts(false)) {
134 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/Contacts/src/com/android/contacts/model/
AccountTypeManager.java 371 // The same AccountTypes, but keyed off {@link RawContacts#ACCOUNT_TYPE}. Since there can
480 List<AccountType> accountTypes = accountTypesByType.get(account.type);
481 if (accountTypes != null) {
484 for (AccountType accountType : accountTypes) {
740 final List<AccountType> accountTypes = Lists.newArrayList();
744 accountTypes.add(type);
748 return accountTypes;
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
QuickContactActivity.java 343 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(
370 accountTypes.getKindOrFallback(accountType, dataSet, mimeType);
390 final DataKind imKind = accountTypes.getKindOrFallback(accountType, dataSet,
  /packages/apps/Contacts/src/com/android/contacts/
ContactSaveService.java 340 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(this);
341 EntityModifier.trimEmpty(state, accountTypes);
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/
EntityModifierTests.java 517 final AccountTypeManager accountTypes = getAccountTypes(accountType);
536 EntityModifier.trimEmpty(set, accountTypes);
544 final AccountTypeManager accountTypes = getAccountTypes(accountType);
569 EntityModifier.trimEmpty(set, accountTypes);
577 final AccountTypeManager accountTypes = getAccountTypes(accountType);
625 EntityModifier.trimEmpty(set, accountTypes);
648 final AccountTypeManager accountTypes = getAccountTypes(accountType);
690 EntityModifier.trimEmpty(set, accountTypes);
    [all...]
  /packages/apps/Settings/src/com/android/settings/
Settings.java 438 String[] accountTypes = mAuthenticatorHelper.getEnabledAccountTypes();
439 List<Header> accountHeaders = new ArrayList<Header>(accountTypes.length);
440 for (String accountType : accountTypes) {
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailFragment.java 538 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(mContext);
556 AccountType type = accountTypes.getAccountType(accountType, dataSet);
574 final DataKind kind = accountTypes.getKindOrFallback(
643 final DataKind imKind = accountTypes.getKindOrFallback(accountType, dataSet,
    [all...]

Completed in 1776 milliseconds