Home
last modified time | relevance | path

Searched refs:mMessageList (Results 1 – 2 of 2) sorted by relevance

/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
DCellBroadcastAlertDialog.java118 protected ArrayList<SmsCbMessage> mMessageList; field in CellBroadcastAlertDialog
321 mMessageList = savedInstanceState.getParcelableArrayList( in onCreate()
326 mMessageList = intent.getParcelableArrayListExtra( in onCreate()
333 if (mMessageList == null || mMessageList.size() == 0) { in onCreate()
337 Log.d(TAG, "onCreate loaded message list of size " + mMessageList.size()); in onCreate()
415 CellBroadcastAlertService.addToNotificationBar(getLatestMessage(), mMessageList, in onStop() local
441 int index = mMessageList.size() - 1; in getLatestMessage()
443 return mMessageList.get(index); in getLatestMessage()
452 int index = mMessageList.size() - 1; in removeLatestMessage()
454 return mMessageList.remove(index); in removeLatestMessage()
[all …]
/packages/apps/CellBroadcastReceiver/tests/unit/src/com/android/cellbroadcastreceiver/unit/
DCellBroadcastAlertDialogTest.java89 private ArrayList<SmsCbMessage> mMessageList; field in CellBroadcastAlertDialogTest
93 mMessageList = new ArrayList<>(1); in createActivityIntent()
94 mMessageList.add(CellBroadcastAlertServiceTest.createMessageForCmasMessageClass(12412, in createActivityIntent()
101 mMessageList); in createActivityIntent()
226 mMessageList.add(CellBroadcastAlertServiceTest.createMessageForCmasMessageClass(12413, in testOnNewIntent()