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

  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
AllAccountObserver.java 75 * @param allAccounts the array of all accounts in the current application.
77 public abstract void onChanged(Account[] allAccounts);
FolderWatcher.java 79 * @param allAccounts all the current accounts on the device.
81 public void updateAccountList(Account[] allAccounts) {
82 if (allAccounts == null) {
86 final List<Uri> newAccounts = new ArrayList<Uri>(allAccounts.length);
87 for (final Account account : allAccounts) {
Account.java 539 final Account[] allAccounts = new Account[initialLength];
542 allAccounts[i++] = cursor.getModel();
546 return allAccounts;
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
CreateConnectionProcessor.java 298 List<PhoneAccount> allAccounts = mPhoneAccountRegistrar.getAllPhoneAccounts();
300 if (allAccounts.isEmpty()) {
306 allAccounts = new ArrayList<PhoneAccount>();
307 allAccounts.add(TelephonyUtil.getDefaultEmergencyPhoneAccount());
312 for (PhoneAccount phoneAccount : allAccounts) {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
AccountTypeManager.java 390 final List<AccountWithDataSet> allAccounts = Lists.newArrayList();
491 allAccounts.add(accountWithDataSet);
503 Collections.sort(allAccounts, ACCOUNT_COMPARATOR);
511 mAccounts = allAccounts;
515 mContext, allAccounts, accountTypesByTypeAndDataSet);
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
FolderListFragment.java 391 public void onChanged(Account[] allAccounts) {
    [all...]
AbstractActivityController.java 270 private final DataSetObservable mAllAccountObservers = new MailObservable("AllAccounts");
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
ComposeActivity.java 767 final Account[] allAccounts = AccountUtils.getAccounts(this);
768 if (allAccounts == null || allAccounts.length == 0) {
    [all...]

Completed in 446 milliseconds