Home
last modified time | relevance | path

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

/packages/apps/Contacts/src/com/android/contacts/vcard/
DSelectAccountActivity.java63 final List<AccountWithDataSet> accountList = accountTypes.blockForWritableAccounts(); in onCreate() local
64 if (accountList.size() == 0) { in onCreate()
68 } else if (accountList.size() == 1) { in onCreate()
69 final AccountWithDataSet account = accountList.get(0); in onCreate()
79 Log.i(LOG_TAG, "The number of available accounts: " + accountList.size()); in onCreate()
84 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.java605 final List<AccountWithDataSet> accountList = accountTypes.blockForWritableAccounts(); in onCreate() local
609 if (accountList.contains(selected)) { in onCreate()
614 if (accountList.isEmpty()) { 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/modules/Bluetooth/android/app/src/com/android/bluetooth/map/
DBluetoothMapAppObserver.java366 ArrayList<BluetoothMapAccountItem> accountList = mFullList.get(app); in getEnabledAccountItems() local
367 if (accountList != null) { in getEnabledAccountItems()
368 for (BluetoothMapAccountItem acc : accountList) { in getEnabledAccountItems()
403 ArrayList<BluetoothMapAccountItem> accountList = mFullList.get(app); in getAllAccountItems() local
404 list.addAll(accountList); in getAllAccountItems()
/packages/apps/Contacts/src/com/android/contacts/interactions/
DImportDialogFragment.java274 final List<AccountWithDataSet> accountList = AccountInfo.extractAccounts( in handleImportRequest() local
281 final int size = accountList.size(); in handleImportRequest()
292 (size == 1 ? accountList.get(0) : null), in handleImportRequest()