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

  /packages/apps/Settings/src/com/android/settings/accounts/
AddAccountSettings.java 143 final String[] accountTypes =
149 if (accountTypes != null) {
150 intent.putExtra(AccountPreferenceBase.ACCOUNT_TYPES_FILTER_KEY, accountTypes);
  /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/Contacts/src/com/android/contacts/activities/
ContactEditorActivity.java 204 final AccountTypeManager accountTypes =
206 final AccountType accountType = accountTypes.getAccountType(
229 final AccountTypeManager accountTypes =
231 final AccountType accountType = accountTypes.getAccountType(
  /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 608 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(mContext);
610 final AccountType type = state.getAccountType(accountTypes);
669 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(mContext);
671 accountTypes.getAccountType(account != null ? account.type : null,
694 AccountTypeManager accountTypes = AccountTypeManager.getInstance(mContext);
695 AccountType oldAccountType = accountTypes.getAccountType(
697 AccountType newAccountType = accountTypes.getAccountType(
787 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(mContext);
795 final AccountType type = rawContactDelta.getAccountType(accountTypes);
    [all...]
ContactEditorUtils.java 65 ContactEditorUtils(Context context, AccountTypeManager accountTypes) {
68 mAccountTypes = 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);
CustomContactListFilterActivity.java 127 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(context);
131 for (AccountWithDataSet account : accountTypes.getAccounts(false)) {
132 final AccountType accountType = accountTypes.getAccountTypeForAccount(account);
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
AccountTypeManager.java 386 // The same AccountTypes, but keyed off {@link RawContacts#ACCOUNT_TYPE}. Since there can
486 List<AccountType> accountTypes = accountTypesByType.get(account.type);
487 if (accountTypes != null) {
490 for (AccountType accountType : accountTypes) {
746 final List<AccountType> accountTypes = Lists.newArrayList();
750 accountTypes.add(type);
    [all...]
Contact.java 468 /* package */ void setInvitableAccountTypes(ImmutableList<AccountType> accountTypes) {
469 mInvitableAccountTypes = accountTypes;
RawContactModifier.java 392 public static void trimEmpty(RawContactDeltaList set, AccountTypeManager accountTypes) {
397 final AccountType type = accountTypes.getAccountType(accountType, dataSet);
402 public static boolean hasChanges(RawContactDeltaList set, AccountTypeManager accountTypes) {
411 final AccountType type = accountTypes.getAccountType(accountType, dataSet);
    [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/interactions/
ImportExportDialogFragment.java 205 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(getActivity());
206 final List<AccountWithDataSet> accountList = accountTypes.getAccounts(true);
  /packages/apps/Contacts/src/com/android/contacts/interactions/
ContactDeletionInteraction.java 233 AccountTypeManager accountTypes = AccountTypeManager.getInstance(getActivity());
241 AccountType type = accountTypes.getAccountType(accountType, dataSet);
  /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...]
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupType.java 81 final ViewGroup parent = UiUtilities.getView(this, R.id.accountTypes);
  /packages/apps/Settings/src/com/android/settings/
Settings.java 628 String[] accountTypes = mAuthenticatorHelper.getEnabledAccountTypes();
629 List<Header> accountHeaders = new ArrayList<Header>(accountTypes.length);
630 for (String accountType : accountTypes) {
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
ContactSaveService.java 345 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(this);
346 RawContactModifier.trimEmpty(state, accountTypes);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailFragment.java     [all...]

Completed in 484 milliseconds