Lines Matching refs:BluetoothMapEmailSettingsItem

49     private LinkedHashMap<BluetoothMapEmailSettingsItem, ArrayList<BluetoothMapEmailSettingsItem>> mFullList;
69 private BluetoothMapEmailSettingsItem getApp(String packageName) {
71 for(BluetoothMapEmailSettingsItem app:mFullList.keySet()){
86 BluetoothMapEmailSettingsItem app = getApp(packageName);
88 ArrayList<BluetoothMapEmailSettingsItem> newAccountList = mLoader.parseAccounts(app);
89 ArrayList<BluetoothMapEmailSettingsItem> oldAccountList = mFullList.get(app);
90 ArrayList<BluetoothMapEmailSettingsItem> addedAccountList =
91 (ArrayList<BluetoothMapEmailSettingsItem>)newAccountList.clone();
92 ArrayList<BluetoothMapEmailSettingsItem> removedAccountList = mFullList.get(app); // Same as oldAccountList.clone
95 for(BluetoothMapEmailSettingsItem newAcc: newAccountList){
96 for(BluetoothMapEmailSettingsItem oldAcc: oldAccountList){
123 for(BluetoothMapEmailSettingsItem removedAcc: removedAccountList){
128 for(BluetoothMapEmailSettingsItem addedAcc: addedAccountList){
145 public void registerObserver(BluetoothMapEmailSettingsItem app) {
170 public void unregisterObserver(BluetoothMapEmailSettingsItem app) {
179 for(BluetoothMapEmailSettingsItem app: mFullList.keySet()){
186 for(BluetoothMapEmailSettingsItem app: mFullList.keySet()){
208 BluetoothMapEmailSettingsItem app = mLoader.createAppItem(rInfo, false);
212 ArrayList<BluetoothMapEmailSettingsItem> newAccountList = mLoader.parseAccounts(app);
221 BluetoothMapEmailSettingsItem app = getApp(packageName);
249 * @return Arraylist<BluetoothMapEmailSettingsItem> containing all enabled accounts
251 public ArrayList<BluetoothMapEmailSettingsItem> getEnabledAccountItems(){
253 ArrayList<BluetoothMapEmailSettingsItem> list = new ArrayList<BluetoothMapEmailSettingsItem>();
254 for(BluetoothMapEmailSettingsItem app:mFullList.keySet()){
255 ArrayList<BluetoothMapEmailSettingsItem> accountList = mFullList.get(app);
256 for(BluetoothMapEmailSettingsItem acc: accountList){
267 * @return Arraylist<BluetoothMapEmailSettingsItem> containing all accounts
269 public ArrayList<BluetoothMapEmailSettingsItem> getAllAccountItems(){
271 ArrayList<BluetoothMapEmailSettingsItem> list = new ArrayList<BluetoothMapEmailSettingsItem>();
272 for(BluetoothMapEmailSettingsItem app:mFullList.keySet()){
273 ArrayList<BluetoothMapEmailSettingsItem> accountList = mFullList.get(app);