Home
last modified time | relevance | path

Searched refs:mInt (Results 1 – 4 of 4) sorted by relevance

/packages/modules/AppSearch/testing/safeparceltests/src/android/app/appsearch/safeparcel/
DTestParcelable.java36 private int mInt; field in TestParcelable
41 mInt = intValue; in TestParcelable()
57 parcel.writeInt(mInt); in writeToParcel()
63 mInt = parcel.readInt(); in readFromParcel()
74 return parcelable.mInt == mInt in equals()
/packages/apps/CellBroadcastReceiver/tests/unit/src/com/android/cellbroadcastreceiver/unit/
DCellBroadcastAlertDialogTest.java87 private ArgumentCaptor<Integer> mInt; field in CellBroadcastAlertDialogTest
210 verify(mMockedNotificationManager, times(1)).notify(mInt.capture(), in testAddToNotification()
216 assertEquals(1, (int) mInt.getValue()); in testAddToNotification()
233 verify(mMockedNotificationManager, times(1)).notify(mInt.capture(), in testAddToNotificationWithDifferentConfiguration()
238 assertEquals(1, (int) mInt.getValue()); in testAddToNotificationWithDifferentConfiguration()
240 verify(mContext.getResources(), times(1)).getString(mInt.capture(), anyInt()); in testAddToNotificationWithDifferentConfiguration()
241 assertEquals(R.string.notification_multiple, (int) mInt.getValue()); in testAddToNotificationWithDifferentConfiguration()
249 verify(mMockedNotificationManager, times(0)).notify(mInt.capture(), in testDoNotAddToNotificationOnStop()
DCellBroadcastConfigServiceTest.java108 private ArgumentCaptor<Integer> mInt; field in CellBroadcastConfigServiceTest
1699 verify(mMockedNotificationManager, never()).notify(mInt.capture(), in testUpdateSettingsForCarrierChanged()
1709 verify(mMockedNotificationManager, times(1)).notify(mInt.capture(), in testUpdateSettingsForCarrierChanged()
1712 (int) mInt.getValue()); in testUpdateSettingsForCarrierChanged()
DCellBroadcastAlertServiceTest.java407 ArgumentCaptor<Integer> mInt = ArgumentCaptor.forClass(Integer.class); in testShowNewAlertWithNotification() local
409 .notify(mInt.capture(), notificationCaptor.capture()); in testShowNewAlertWithNotification()
410 assertEquals(1, (int) mInt.getValue()); in testShowNewAlertWithNotification()