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

  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
AccountTypeManager.java 556 List<AccountType> accountsForType = accountTypesByType.get(accountType.accountType);
557 if (accountsForType == null) {
558 accountsForType = Lists.newArrayList();
560 accountsForType.add(accountType);
561 accountTypesByType.put(accountType.accountType, accountsForType);
    [all...]
  /frameworks/base/services/java/com/android/server/accounts/
AccountManagerService.java 391 final Account[] accountsForType = new Account[accountNames.size()];
394 accountsForType[i] = new Account(accountName, accountType);
397 accounts.accountCache.put(accountType, accountsForType);
    [all...]

Completed in 3412 milliseconds