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 177 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(this);
178 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 524 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(mContext);
528 final AccountType type = accountTypes.getAccountType(accountType, dataSet);
587 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(mContext);
589 accountTypes.getAccountType(account != null ? account.type : null,
611 AccountTypeManager accountTypes = AccountTypeManager.getInstance(mContext);
612 AccountType oldAccountType = accountTypes.getAccountType(
614 AccountType newAccountType = accountTypes.getAccountType(
692 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(mContext);
702 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 186 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(getActivity());
187 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 121 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(context);
122 List<AccountWithDataSet> accounts = accountTypes.getAccounts(false);
124 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 348 // The same AccountTypes, but keyed off {@link RawContacts#ACCOUNT_TYPE}. Since there can
452 List<AccountType> accountTypes = accountTypesByType.get(account.type);
453 if (accountTypes != null) {
456 for (AccountType accountType : accountTypes) {
708 final List<AccountType> accountTypes = Lists.newArrayList();
712 accountTypes.add(type);
716 return accountTypes;
734 protected void onPostExecute(Map<AccountTypeWithDataSet, AccountType> accountTypes) {
735 mInvitableAccountTypeCache.setCachedValue(accountTypes);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
QuickContactActivity.java 384 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(
442 final DataKind kind = accountTypes.getKindOrFallback(accountType, dataSet, mimeType);
461 final DataKind imKind = accountTypes.getKindOrFallback(accountType, dataSet,
  /packages/apps/Contacts/src/com/android/contacts/
ContactSaveService.java 298 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(this);
299 EntityModifier.trimEmpty(state, accountTypes);
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/
EntityModifierTests.java 525 final AccountTypeManager accountTypes = getAccountTypes(accountType);
544 EntityModifier.trimEmpty(set, accountTypes);
552 final AccountTypeManager accountTypes = getAccountTypes(accountType);
577 EntityModifier.trimEmpty(set, accountTypes);
585 final AccountTypeManager accountTypes = getAccountTypes(accountType);
633 EntityModifier.trimEmpty(set, accountTypes);
656 final AccountTypeManager accountTypes = getAccountTypes(accountType);
698 EntityModifier.trimEmpty(set, accountTypes);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailFragment.java 534 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(mContext);
552 AccountType type = accountTypes.getAccountType(accountType, dataSet);
570 final DataKind kind = accountTypes.getKindOrFallback(
626 final DataKind imKind = accountTypes.getKindOrFallback(accountType, dataSet,
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactAggregator.java 433 String accountTypes[] = new String[count];
443 accountTypes[index] = c.getString(AggregationQuery.ACCOUNT_TYPE);
453 aggregateContact(txContext, db, rawContactIds[i], accountTypes[i], accountNames[i],
    [all...]

Completed in 2037 milliseconds