Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/floatingmenu/
DMenuNotificationFactory.java29 public static final String ACTION_UNDO = field in MenuNotificationFactory
60 final Intent intent = new Intent(ACTION_UNDO); in buildUndoIntent()
DMenuViewLayer.java31 import static com.android.systemui.accessibility.floatingmenu.MenuNotificationFactory.ACTION_UNDO;
626 intentFilter.addAction(ACTION_UNDO); in registerReceiverIfNeeded()
658 if (ACTION_UNDO.equals(action)) { in onReceive()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/accessibility/floatingmenu/
DMenuNotificationFactoryTest.java47 MenuNotificationFactory.ACTION_UNDO); in createHiddenNotification_hasUndoAndDeleteAction()
DMenuViewLayerTest.java26 import static com.android.systemui.accessibility.floatingmenu.MenuNotificationFactory.ACTION_UNDO;
148 (arg) -> arg.hasAction(ACTION_UNDO) && arg.hasAction(ACTION_DELETE);
389 broadcastReceiverCaptor.getValue().onReceive(mSpyContext, new Intent(ACTION_UNDO)); in receiveActionUndo_dismissNotificationAndMenuVisible()