Home
last modified time | relevance | path

Searched refs:intent2 (Results 1 – 5 of 5) sorted by relevance

/packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/
DTestUtils.java71 public static boolean intentEquals(Intent intent1, Intent intent2) { in intentEquals() argument
73 if (intent1 == null && intent2 == null) { in intentEquals()
77 if (intent1 == null || intent2 == null) { in intentEquals()
80 return intent1.filterEquals(intent2) && bundleEquals(intent1.getExtras(), in intentEquals()
81 intent2.getExtras()); in intentEquals()
/packages/apps/DeskClock/src/com/android/deskclock/data/
DStopwatchNotificationBuilder.java107 final PendingIntent intent2 = Utils.pendingServiceIntent(context, lap); in build() local
108 actions.add(new Action.Builder(icon2, title2, intent2).build()); in build()
139 final PendingIntent intent2 = Utils.pendingServiceIntent(context, reset); in build() local
140 actions.add(new Action.Builder(icon2, title2, intent2).build()); in build()
DTimerNotificationBuilder.java114 final PendingIntent intent2 = Utils.pendingServiceIntent(context, addMinute); in build() local
115 actions.add(new Action.Builder(icon2, title2, intent2).build()); in build()
138 final PendingIntent intent2 = Utils.pendingServiceIntent(context, reset); in build() local
139 actions.add(new Action.Builder(icon2, title2, intent2).build()); in build()
257 final PendingIntent intent2 = Utils.pendingServiceIntent(context, addTime); in buildHeadsUp() local
260 actions.add(new Action.Builder(icon2, title2, intent2).build()); in buildHeadsUp()
/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/wifi/
DWifiTetherFragmentTest.java195 Intent intent2 = new Intent(WifiManager.WIFI_AP_STATE_CHANGED_ACTION); in onEnableTetherFailed_shouldReturnSwitchStateEnabledAndOff() local
197 mContext.sendBroadcast(intent2); in onEnableTetherFailed_shouldReturnSwitchStateEnabledAndOff()
/packages/apps/Settings/tests/robotests/src/com/android/settings/network/
DMobileNetworkListControllerTest.java150 final Intent intent2 = intentCaptor.getAllValues().get(1); in displayPreference_twoSubscriptions_correctlySetup() local
152 assertThat(intent2.getIntExtra(EXTRA_SUB_ID, INVALID_SUBSCRIPTION_ID)).isEqualTo(2); in displayPreference_twoSubscriptions_correctlySetup()