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

1 2 3

  /packages/apps/Contacts/src/com/android/contacts/editor/
SelectAccountDialogFragment.java 30 import com.android.contacts.model.AccountTypeManager;
53 private AccountTypeManager.AccountFilter mFilter;
65 AccountTypeManager.AccountFilter filter, Bundle extraArgs) {
70 AccountTypeManager.AccountFilter filter, Bundle extraArgs, String tag) {
85 mFilter = (AccountTypeManager.AccountFilter) args.getSerializable(KEY_LIST_FILTER);
87 mFilter = AccountTypeManager.AccountFilter.ALL;
RawContactDeltaComparator.java 22 import com.android.contacts.model.AccountTypeManager;
47 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(mContext);
PickRawContactDialogFragment.java 27 import com.android.contacts.model.AccountTypeManager;
56 private final AccountTypeManager mAccountTypeManager;
63 mAccountTypeManager = AccountTypeManager.getInstance(context);
117 AccountTypeManager.getInstance(getContext()).getAccountInfoForAccount(
PickRawContactLoader.java 16 import com.android.contacts.model.AccountTypeManager;
220 public void trimReadOnly(AccountTypeManager accountManager) {
234 public int getIndexOfFirstWritableAccount(AccountTypeManager accountManager) {
  /packages/apps/Contacts/src/com/android/contacts/model/account/
AccountDisplayInfoFactory.java 21 import com.android.contacts.model.AccountTypeManager;
39 private final AccountTypeManager mAccountTypeManager;
47 this(context, AccountTypeManager.getInstance(context),
51 public AccountDisplayInfoFactory(Context context, AccountTypeManager accountTypeManager,
55 mAccountTypeManager = accountTypeManager;
AccountsLoader.java 26 import com.android.contacts.model.AccountTypeManager;
36 * Loads the accounts from AccountTypeManager
39 private final AccountTypeManager mAccountTypeManager;
47 super(context, new IntentFilter(AccountTypeManager.BROADCAST_ACCOUNTS_CHANGED));
48 mAccountTypeManager = AccountTypeManager.getInstance(context);
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactListFilterController.java 23 import com.android.contacts.model.AccountTypeManager;
194 final AccountTypeManager accountTypeManager = AccountTypeManager.getInstance(mContext);
197 return accountTypeManager.exists(filterAccount);
ContactListFilterView.java 30 import com.android.contacts.model.AccountTypeManager;
85 public void bindView(AccountTypeManager accountTypes) {
AccountFilterActivity.java 33 import com.android.contacts.model.AccountTypeManager;
140 private final AccountTypeManager mAccountTypes;
149 mAccountTypes = AccountTypeManager.getInstance(context);
  /packages/apps/Contacts/src/com/android/contacts/vcard/
SelectAccountActivity.java 26 import com.android.contacts.model.AccountTypeManager;
60 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(this);
  /packages/apps/Dialer/java/com/android/contacts/common/list/
ContactListFilterController.java 21 import com.android.contacts.common.model.AccountTypeManager;
165 final AccountTypeManager accountTypeManager = AccountTypeManager.getInstance(mAppContext);
168 return accountTypeManager.contains(filterAccount, false);
  /packages/apps/Contacts/src/com/android/contacts/util/
SyncUtil.java 25 import com.android.contacts.model.AccountTypeManager;
75 public static final boolean hasSyncableAccount(AccountTypeManager accountTypeManager) {
76 return !accountTypeManager.getWritableGoogleAccounts().isEmpty();
AccountFilterUtil.java 41 import com.android.contacts.model.AccountTypeManager;
115 private AccountTypeManager mAccountTypeManager;
119 super(context, new IntentFilter(AccountTypeManager.BROADCAST_ACCOUNTS_CHANGED));
120 mAccountTypeManager = AccountTypeManager.getInstance(context);
128 AccountTypeManager.writableFilter()),
233 final AccountInfo info = AccountTypeManager.getInstance(context)
AccountSelectionUtil.java 36 import com.android.contacts.model.AccountTypeManager;
94 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(activity);
  /packages/apps/Contacts/tests/src/com/android/contacts/test/mocks/
MockAccountTypeManager.java 20 import com.android.contacts.model.AccountTypeManager;
34 * A mock {@link AccountTypeManager} class.
36 public class MockAccountTypeManager extends AccountTypeManager {
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupMetaData.java 28 import com.android.contacts.model.AccountTypeManager;
62 final AccountTypeManager accountTypeManager = AccountTypeManager.getInstance(context);
66 final AccountType accountType = accountTypeManager.getAccountType(
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
InvisibleContactUtil.java 10 import com.android.contacts.model.AccountTypeManager;
96 final AccountTypeManager accountTypes = AccountTypeManager.getInstance(
  /packages/apps/Contacts/src/com/android/contacts/activities/
RequestPermissionsActivityBase.java 27 import com.android.contacts.model.AccountTypeManager;
105 AccountTypeManager.getInstance(activity);
ContactEditorSpringBoardActivity.java 27 import com.android.contacts.model.AccountTypeManager;
155 mResult.trimReadOnly(AccountTypeManager.getInstance(this));
210 AccountTypeManager.getInstance(this));
  /packages/apps/Contacts/src/com/android/contacts/model/
AccountTypeManager.java 75 public abstract class AccountTypeManager {
76 static final String TAG = "AccountTypeManager";
79 private static AccountTypeManager mAccountTypeManager;
81 public static final String BROADCAST_ACCOUNTS_CHANGED = AccountTypeManager.class.getName() +
106 * Requests the singleton instance of {@link AccountTypeManager} with data bound from
109 public static AccountTypeManager getInstance(Context context) {
129 * @param mockManager The mock AccountTypeManager.
131 public static void setInstanceForTest(AccountTypeManager mockManager) {
137 private static final AccountTypeManager EMPTY = new AccountTypeManager() {
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/interactions/
ContactDeletionInteractionTest.java 28 import com.android.contacts.model.AccountTypeManager;
98 AccountTypeManager.setInstanceForTest(mockManager);
  /packages/apps/Contacts/src/com/android/contacts/
SimImportFragment.java 47 import com.android.contacts.model.AccountTypeManager;
79 private AccountTypeManager mAccountTypeManager;
101 mAccountTypeManager = AccountTypeManager.getInstance(getActivity());
450 private AccountTypeManager mAccountTypeManager;
454 super(context, new IntentFilter(AccountTypeManager.BROADCAST_ACCOUNTS_CHANGED));
456 mAccountTypeManager = AccountTypeManager.getInstance(getContext());
464 .filterAccountsAsync(AccountTypeManager.writableFilter()),
SplitAggregateView.java 38 import com.android.contacts.model.AccountTypeManager;
75 private AccountTypeManager mAccountTypes;
92 mAccountTypes = AccountTypeManager.getInstance(context);
  /packages/apps/Contacts/src/com/android/contacts/interactions/
ContactDeletionInteraction.java 41 import com.android.contacts.model.AccountTypeManager;
252 AccountTypeManager accountTypes = AccountTypeManager.getInstance(getActivity());
ContactMultiDeletionInteraction.java 37 import com.android.contacts.model.AccountTypeManager;
207 AccountTypeManager accountTypes = AccountTypeManager.getInstance(getActivity());

Completed in 441 milliseconds

1 2 3