HomeSort by relevance Sort by last modified time
    Searched refs:accountTypes (Results 1 - 25 of 29) sorted by null

1 2

  /packages/apps/Contacts/src/com/android/contacts/editor/
RawContactDeltaComparator.java 47 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(mContext);
50 final AccountType type1 = accountTypes.getAccountType(accountType1, dataSet1);
53 final AccountType type2 = accountTypes.getAccountType(accountType2, dataSet2);
AggregationSuggestionView.java 119 AccountTypeManager accountTypes = AccountTypeManager.getInstance(getContext());
126 AccountType type = accountTypes.getAccountType(accountType, dataSet);
ContactEditorUtils.java 65 ContactEditorUtils(Context context, AccountTypeManager accountTypes) {
68 mAccountTypes = accountTypes;
ContactEditorFragment.java 156 AccountTypeManager accountTypes = AccountTypeManager.getInstance(mContext);
157 AccountType oldAccountType = accountTypes.getAccountTypeForAccount(oldAccount);
158 AccountType newAccountType = accountTypes.getAccountTypeForAccount(newAccount);
211 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(mContext);
219 final AccountType type = rawContactDelta.getAccountType(accountTypes);
CompactContactEditorFragment.java 278 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(mContext);
283 final AccountType accountType = rawContactDelta.getAccountType(accountTypes);
ContactEditorBaseFragment.java     [all...]
  /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 177 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(this);
178 final List<AccountWithDataSet> accountList = accountTypes.getAccounts(true);
ImportVCardActivity.java 519 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(this);
520 final List<AccountWithDataSet> accountList = accountTypes.getAccounts(true);
  /packages/apps/Email/provider_src/com/android/email/provider/
AccountReconciler.java 61 final LinkedHashSet<String> accountTypes = new LinkedHashSet<String>();
62 accountTypes.add(context.getString(R.string.account_manager_type_legacy_imap));
63 accountTypes.add(context.getString(R.string.account_manager_type_pop3));
64 accountTypes.add(context.getString(R.string.account_manager_type_exchange));
67 for (final String type : accountTypes) {
  /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/ContactsCommon/src/com/android/contacts/common/list/
ContactListFilterView.java 79 public void bindView(AccountTypeManager accountTypes) {
124 accountTypes.getAccountType(mFilter.accountType, mFilter.dataSet);
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);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
AccountTypeManager.java 381 // The same AccountTypes, but keyed off {@link RawContacts#ACCOUNT_TYPE}. Since there can
483 List<AccountType> accountTypes = accountTypesByType.get(account.type);
484 if (accountTypes != null) {
487 for (AccountType accountType : accountTypes) {
743 final List<AccountType> accountTypes = Lists.newArrayList();
747 accountTypes.add(type);
751 return accountTypes;
    [all...]
Contact.java 489 /* package */ void setInvitableAccountTypes(ImmutableList<AccountType> accountTypes) {
490 mInvitableAccountTypes = accountTypes;
  /packages/apps/Contacts/src/com/android/contacts/activities/
ContactEditorBaseActivity.java 332 final AccountTypeManager accountTypes =
334 final AccountType accountType = accountTypes.getAccountType(
357 final AccountTypeManager accountTypes =
359 final AccountType accountType = accountTypes.getAccountType(
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
AccountSelectionUtil.java 101 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(context);
102 final List<AccountWithDataSet> writableAccountList = accountTypes.getAccounts(true);
132 final AccountType accountType = accountTypes.getAccountType(
  /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 386 final String[] accountTypes = helper.getEnabledAccountTypes();
388 new ArrayList<AccountPreference>(accountTypes.length);
390 for (int i = 0; i < accountTypes.length; i++) {
391 final String accountType = accountTypes[i];
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupTypeFragment.java 55 final ViewGroup parent = UiUtilities.getView(view, R.id.accountTypes);
  /packages/apps/Contacts/src/com/android/contacts/interactions/
ContactDeletionInteraction.java 242 AccountTypeManager accountTypes = AccountTypeManager.getInstance(getActivity());
250 AccountType type = accountTypes.getAccountType(accountType, dataSet);
ContactMultiDeletionInteraction.java 196 AccountTypeManager accountTypes = AccountTypeManager.getInstance(getActivity());
204 final AccountType type = accountTypes.getAccountType(accountType, dataSet);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/interactions/
ImportExportDialogFragment.java 252 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(getActivity());
253 final List<AccountWithDataSet> accountList = accountTypes.getAccounts(true);
  /development/samples/ContactManager/src/com/example/android/contactmanager/
ContactAdder.java 250 AuthenticatorDescription[] accountTypes = AccountManager.get(this).getAuthenticatorTypes();
258 accountTypes);
  /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 434 milliseconds

1 2