Home
last modified time | relevance | path

Searched refs:accountList (Results 1 – 7 of 7) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/vcard/
DSelectAccountActivity.java64 final List<AccountWithDataSet> accountList = accountTypes.blockForWritableAccounts(); in onCreate() local
65 if (accountList.size() == 0) { in onCreate()
69 } else if (accountList.size() == 1) { in onCreate()
70 final AccountWithDataSet account = accountList.get(0); in onCreate()
80 Log.i(LOG_TAG, "The number of available accounts: " + accountList.size()); in onCreate()
85 this, accountList, resId) { in onCreate()
DNfcImportVCardActivity.java197 final List<AccountWithDataSet> accountList = accountTypes.blockForWritableAccounts(); in onCreate() local
198 if (accountList.size() == 0) { in onCreate()
200 } else if (accountList.size() == 1) { in onCreate()
201 mAccount = accountList.get(0); in onCreate()
DImportVCardActivity.java603 final List<AccountWithDataSet> accountList = accountTypes.blockForWritableAccounts(); in onCreate() local
604 if (accountList.size() == 0) { in onCreate()
606 } else if (accountList.size() == 1) { in onCreate()
607 mAccount = accountList.get(0); in onCreate()
/packages/apps/Contacts/src/com/android/contacts/util/
DAccountSelectionUtil.java63 public AccountSelectedListener(Activity activity, List<AccountWithDataSet> accountList, in AccountSelectedListener() argument
65 if (accountList == null || accountList.size() == 0) { in AccountSelectedListener()
69 mAccountList = accountList; in AccountSelectedListener()
74 public AccountSelectedListener(Activity activity, List<AccountWithDataSet> accountList, in AccountSelectedListener() argument
78 this(activity, accountList, resId, /* subscriptionId = */ -1); in AccountSelectedListener()
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapAppObserver.java367 ArrayList<BluetoothMapAccountItem> accountList = mFullList.get(app); in getEnabledAccountItems() local
368 if (accountList != null) { in getEnabledAccountItems()
369 for (BluetoothMapAccountItem acc : accountList) { in getEnabledAccountItems()
394 ArrayList<BluetoothMapAccountItem> accountList = mFullList.get(app); in getAllAccountItems() local
395 list.addAll(accountList); in getAllAccountItems()
/packages/apps/Car/Messenger/src/com/android/car/messenger/core/ui/launcher/
DMessageLauncherViewModel.java58 accountList -> in getAccountList()
59 accountList.stream().limit(DEVICE_LIMIT).collect(Collectors.toList())); in getAccountList()
/packages/apps/Contacts/src/com/android/contacts/interactions/
DImportDialogFragment.java265 final List<AccountWithDataSet> accountList = AccountInfo.extractAccounts( in handleImportRequest() local
272 final int size = accountList.size(); in handleImportRequest()
283 (size == 1 ? accountList.get(0) : null), in handleImportRequest()