Home
last modified time | relevance | path

Searched refs:TRANSIT_FIRST_CUSTOM (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/transition/
DTransitions.java21 import static android.view.WindowManager.TRANSIT_FIRST_CUSTOM;
88 public static final int TRANSIT_EXIT_PIP = TRANSIT_FIRST_CUSTOM + 1;
90 public static final int TRANSIT_EXIT_PIP_TO_SPLIT = TRANSIT_FIRST_CUSTOM + 2;
93 public static final int TRANSIT_REMOVE_PIP = TRANSIT_FIRST_CUSTOM + 3;
96 public static final int TRANSIT_SPLIT_SCREEN_PAIR_OPEN = TRANSIT_FIRST_CUSTOM + 4;
99 public static final int TRANSIT_SPLIT_SCREEN_OPEN_TO_SIDE = TRANSIT_FIRST_CUSTOM + 5;
102 public static final int TRANSIT_SPLIT_DISMISS_SNAP = TRANSIT_FIRST_CUSTOM + 6;
105 public static final int TRANSIT_SPLIT_DISMISS = TRANSIT_FIRST_CUSTOM + 7;
108 public static final int TRANSIT_MAXIMIZE = WindowManager.TRANSIT_FIRST_CUSTOM + 8;
111 public static final int TRANSIT_RESTORE_FROM_MAXIMIZE = WindowManager.TRANSIT_FIRST_CUSTOM + 9;
/frameworks/base/core/java/android/view/
DWindowManager.java462 int TRANSIT_FIRST_CUSTOM = 12; field
480 TRANSIT_FIRST_CUSTOM
1372 case TRANSIT_FIRST_CUSTOM: return "FIRST_CUSTOM"; in transitTypeToString()
1374 if (type > TRANSIT_FIRST_CUSTOM) { in transitTypeToString()
1375 return "FIRST_CUSTOM+" + (type - TRANSIT_FIRST_CUSTOM); in transitTypeToString()
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/transition/
DShellTransitionTests.java30 import static android.view.WindowManager.TRANSIT_FIRST_CUSTOM;
462 final int transitType = TRANSIT_FIRST_CUSTOM + 1; in testOneShotRemoteHandler()