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

  /packages/apps/Contacts/src/com/android/contacts/model/
AccountTypeManager.java 540 List<AccountType> accountsForType = accountTypesByType.get(accountType.accountType);
541 if (accountsForType == null) {
542 accountsForType = Lists.newArrayList();
544 accountsForType.add(accountType);
545 accountTypesByType.put(accountType.accountType, accountsForType);
    [all...]
  /frameworks/base/core/java/android/accounts/
AccountManagerService.java 330 final Account[] accountsForType = new Account[accountNames.size()];
333 accountsForType[i] = new Account(accountName, accountType);
336 accounts.accountCache.put(accountType, accountsForType);
    [all...]

Completed in 381 milliseconds