/aosp12/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
H A D | RemoteAnimationControllerTest.java | 61 import android.view.RemoteAnimationTarget; 130 final ArgumentCaptor<RemoteAnimationTarget[]> appsCaptor = in testRun() 142 final RemoteAnimationTarget app = appsCaptor.getValue()[0]; in testRun() 249 final ArgumentCaptor<RemoteAnimationTarget[]> appsCaptor = in testOneNotStarted() 250 ArgumentCaptor.forClass(RemoteAnimationTarget[].class); in testOneNotStarted() 252 ArgumentCaptor.forClass(RemoteAnimationTarget[].class); in testOneNotStarted() 253 final ArgumentCaptor<RemoteAnimationTarget[]> nonAppsCaptor = in testOneNotStarted() 294 final ArgumentCaptor<RemoteAnimationTarget[]> appsCaptor = in testOpeningTaskWithTopFinishingActivity() 321 final ArgumentCaptor<RemoteAnimationTarget[]> appsCaptor = in testChangeToSmallerSize() 375 final ArgumentCaptor<RemoteAnimationTarget[]> appsCaptor = in testChangeTolargerSize() [all …]
|
H A D | AppChangeTransitionTests.java | 38 import android.view.RemoteAnimationTarget; 75 RemoteAnimationTarget[] apps, in onAnimationStart() 76 RemoteAnimationTarget[] wallpapers, in onAnimationStart() 77 RemoteAnimationTarget[] nonApps, in onAnimationStart() 79 for (RemoteAnimationTarget target : apps) { in onAnimationStart()
|
/aosp12/frameworks/base/libs/WindowManager/Jetpack/src/androidx/window/extensions/embedding/ |
H A D | TaskFragmentAnimationRunner.java | 38 import android.view.RemoteAnimationTarget; 70 @NonNull RemoteAnimationTarget[] apps, in onAnimationStart() 71 @NonNull RemoteAnimationTarget[] wallpapers, in onAnimationStart() 72 @NonNull RemoteAnimationTarget[] nonApps, in onAnimationStart() 94 @NonNull RemoteAnimationTarget[] targets, in startAnimation() 115 @NonNull RemoteAnimationTarget[] targets, in createAnimator() 165 @NonNull RemoteAnimationTarget[] targets) { in createAnimationAdapters() 195 @NonNull RemoteAnimationTarget[] targets, in createOpenCloseAnimationAdapters() 203 for (RemoteAnimationTarget target : targets) { in createOpenCloseAnimationAdapters() 226 @NonNull RemoteAnimationTarget target, in createOpenCloseAnimationAdapter() [all …]
|
H A D | TaskFragmentAnimationAdapter.java | 23 import android.view.RemoteAnimationTarget; 37 final RemoteAnimationTarget mTarget; 47 @NonNull RemoteAnimationTarget target) { in TaskFragmentAnimationAdapter() 55 @NonNull RemoteAnimationTarget target, @NonNull SurfaceControl leash) { in TaskFragmentAnimationAdapter() 121 SplitAdapter(@NonNull Animation animation, @NonNull RemoteAnimationTarget target, in SplitAdapter() 160 SnapshotAdapter(@NonNull Animation animation, @NonNull RemoteAnimationTarget target) { in SnapshotAdapter() 179 BoundsChangeAdapter(@NonNull Animation animation, @NonNull RemoteAnimationTarget target) { in BoundsChangeAdapter()
|
H A D | TaskFragmentAnimationSpec.java | 19 import static android.view.RemoteAnimationTarget.MODE_CLOSING; 28 import android.view.RemoteAnimationTarget; 81 static Animation createNoopAnimation(@NonNull RemoteAnimationTarget target) { in createNoopAnimation() 88 Animation createChangeBoundsOpenAnimation(@NonNull RemoteAnimationTarget target) { in createChangeBoundsOpenAnimation() 104 Animation createChangeBoundsCloseAnimation(@NonNull RemoteAnimationTarget target) { in createChangeBoundsCloseAnimation() 124 Animation[] createChangeBoundsChangeAnimations(@NonNull RemoteAnimationTarget target) { in createChangeBoundsChangeAnimations() 180 Animation loadOpenAnimation(@NonNull RemoteAnimationTarget target, in loadOpenAnimation() 192 Animation loadCloseAnimation(@NonNull RemoteAnimationTarget target, in loadCloseAnimation()
|
/aosp12/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/transition/ |
H A D | LegacyTransitions.java | 24 import android.view.RemoteAnimationTarget; 44 void onAnimationStart(int transit, RemoteAnimationTarget[] apps, in onAnimationStart() 45 RemoteAnimationTarget[] wallpapers, RemoteAnimationTarget[] nonApps, in onAnimationStart() 59 private RemoteAnimationTarget[] mApps; 60 private RemoteAnimationTarget[] mWallpapers; 61 private RemoteAnimationTarget[] mNonApps; 98 public void onAnimationStart(int transit, RemoteAnimationTarget[] apps, in onAnimationStart() 99 RemoteAnimationTarget[] wallpapers, RemoteAnimationTarget[] nonApps, in onAnimationStart()
|
/aosp12/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | WallpaperAnimationAdapter.java | 27 import android.view.RemoteAnimationTarget; 52 private RemoteAnimationTarget mTarget; 68 public static RemoteAnimationTarget[] startWallpaperAnimations(DisplayContent displayContent, in startWallpaperAnimations() 75 return new RemoteAnimationTarget[0]; in startWallpaperAnimations() 77 final ArrayList<RemoteAnimationTarget> targets = new ArrayList<>(); in startWallpaperAnimations() 87 return targets.toArray(new RemoteAnimationTarget[targets.size()]); in startWallpaperAnimations() 97 RemoteAnimationTarget createRemoteAnimationTarget() { in createRemoteAnimationTarget() 98 mTarget = new RemoteAnimationTarget(-1, -1, getLeash(), false, null, null, in createRemoteAnimationTarget()
|
H A D | NonAppWindowAnimationAdapter.java | 34 import android.view.RemoteAnimationTarget; 47 private RemoteAnimationTarget mTarget; 67 static RemoteAnimationTarget[] startNonAppWindowAnimations(WindowManagerService service, in startNonAppWindowAnimations() 71 final ArrayList<RemoteAnimationTarget> targets = new ArrayList<>(); in startNonAppWindowAnimations() 80 return targets.toArray(new RemoteAnimationTarget[targets.size()]); in startNonAppWindowAnimations() 105 ArrayList<RemoteAnimationTarget> targets, in startNonAppWindowAnimationsForKeyguardExit() 131 ArrayList<RemoteAnimationTarget> targets, in startNavigationBarWindowAnimation() 145 RemoteAnimationTarget createRemoteAnimationTarget() { in createRemoteAnimationTarget() 146 mTarget = new RemoteAnimationTarget(-1, -1, getLeash(), false, in createRemoteAnimationTarget()
|
H A D | RemoteAnimationController.java | 37 import android.view.RemoteAnimationTarget; 123 final RemoteAnimationTarget[] appTargets = createAppAnimations(); in goodToGo() 186 private RemoteAnimationTarget[] createAppAnimations() { in createAppAnimations() 188 final ArrayList<RemoteAnimationTarget> targets = new ArrayList<>(); in createAppAnimations() 217 return targets.toArray(new RemoteAnimationTarget[targets.size()]); in createAppAnimations() 220 private RemoteAnimationTarget[] createWallpaperAnimations() { in createWallpaperAnimations() 233 private RemoteAnimationTarget[] createNonAppWindowAnimations( 396 RemoteAnimationTarget mTarget; 399 private @RemoteAnimationTarget.Mode int mMode = RemoteAnimationTarget.MODE_CHANGING; 423 RemoteAnimationTarget createRemoteAnimationTarget() { [all …]
|
H A D | RecentsAnimationController.java | 25 import static android.view.RemoteAnimationTarget.MODE_CLOSING; 26 import static android.view.RemoteAnimationTarget.MODE_OPENING; 58 import android.view.RemoteAnimationTarget; 739 new RemoteAnimationTarget[0]); in sendTasksAppeared() 747 private RemoteAnimationTarget createTaskRemoteAnimation(Task task, in createTaskRemoteAnimation() 790 private RemoteAnimationTarget[] createAppAnimations() { in createAppAnimations() 791 final ArrayList<RemoteAnimationTarget> targets = new ArrayList<>(); in createAppAnimations() 794 final RemoteAnimationTarget target = in createAppAnimations() 802 return targets.toArray(new RemoteAnimationTarget[targets.size()]); in createAppAnimations() 805 private RemoteAnimationTarget[] createWallpaperAnimations() { in createWallpaperAnimations() [all …]
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ |
H A D | KeyguardService.java | 21 import static android.view.RemoteAnimationTarget.MODE_CLOSING; 22 import static android.view.RemoteAnimationTarget.MODE_OPENING; 64 import android.view.RemoteAnimationTarget; 160 out.add(new RemoteAnimationTarget( in wrap() 201 final RemoteAnimationTarget[] nonApps = new RemoteAnimationTarget[0]; in wrap() 340 RemoteAnimationTarget[] apps, 341 RemoteAnimationTarget[] wallpapers, 342 RemoteAnimationTarget[] nonApps, 361 RemoteAnimationTarget[] apps, 362 RemoteAnimationTarget[] wallpapers, [all …]
|
/aosp12/frameworks/base/core/java/android/view/ |
H A D | IRemoteAnimationRunner.aidl | 19 import android.view.RemoteAnimationTarget; 40 void onAnimationStart(int transit, in RemoteAnimationTarget[] apps, in onAnimationStart() 41 in RemoteAnimationTarget[] wallpapers, in RemoteAnimationTarget[] nonApps, in onAnimationStart()
|
H A D | IRecentsAnimationRunner.aidl | 21 import android.view.RemoteAnimationTarget; 59 in RemoteAnimationTarget[] apps, in RemoteAnimationTarget[] wallpapers, in onAnimationStart() 66 void onTasksAppeared(in RemoteAnimationTarget[] app) = 3;
|
H A D | RemoteAnimationTarget.java | 57 public class RemoteAnimationTarget implements Parcelable { class 224 public RemoteAnimationTarget(int taskId, int mode, SurfaceControl leash, boolean isTranslucent, in RemoteAnimationTarget() method in RemoteAnimationTarget 235 public RemoteAnimationTarget(int taskId, int mode, SurfaceControl leash, boolean isTranslucent, in RemoteAnimationTarget() method in RemoteAnimationTarget 262 public RemoteAnimationTarget(Parcel in) { in RemoteAnimationTarget() method in RemoteAnimationTarget 359 public static final @android.annotation.NonNull Creator<RemoteAnimationTarget> CREATOR 360 = new Creator<RemoteAnimationTarget>() { 361 public RemoteAnimationTarget createFromParcel(Parcel in) { 362 return new RemoteAnimationTarget(in); 365 public RemoteAnimationTarget[] newArray(int size) { 366 return new RemoteAnimationTarget[size];
|
/aosp12/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/stagesplit/ |
H A D | SplitScreenController.java | 20 import static android.view.RemoteAnimationTarget.MODE_OPENING; 43 import android.view.RemoteAnimationTarget; 252 public void onAnimationStart(int transit, RemoteAnimationTarget[] apps, in startIntentLegacy() 253 RemoteAnimationTarget[] wallpapers, RemoteAnimationTarget[] nonApps, in startIntentLegacy() 282 RemoteAnimationTarget[] onGoingToRecentsLegacy(boolean cancel, RemoteAnimationTarget[] apps) { in onGoingToRecentsLegacy() 296 for (RemoteAnimationTarget appTarget : apps) { in onGoingToRecentsLegacy() 304 return new RemoteAnimationTarget[]{ in onGoingToRecentsLegacy() 585 public RemoteAnimationTarget[] onGoingToRecentsLegacy(boolean cancel, in onGoingToRecentsLegacy() 586 RemoteAnimationTarget[] apps) { in onGoingToRecentsLegacy() 587 final RemoteAnimationTarget[][] out = new RemoteAnimationTarget[][]{null}; in onGoingToRecentsLegacy()
|
H A D | ISplitScreen.aidl | 24 import android.view.RemoteAnimationTarget; 101 RemoteAnimationTarget[] onGoingToRecentsLegacy(boolean cancel, in onGoingToRecentsLegacy() 102 in RemoteAnimationTarget[] appTargets) = 12; in onGoingToRecentsLegacy()
|
/aosp12/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/system/ |
H A D | RemoteAnimationTargetCompat.java | 35 import android.view.RemoteAnimationTarget; 47 public static final int MODE_OPENING = RemoteAnimationTarget.MODE_OPENING; 48 public static final int MODE_CLOSING = RemoteAnimationTarget.MODE_CLOSING; 49 public static final int MODE_CHANGING = RemoteAnimationTarget.MODE_CHANGING; 81 public RemoteAnimationTargetCompat(RemoteAnimationTarget app) { in RemoteAnimationTargetCompat() 118 public RemoteAnimationTarget unwrap() { in unwrap() 119 return new RemoteAnimationTarget( in unwrap() 244 public static RemoteAnimationTargetCompat[] wrap(RemoteAnimationTarget[] apps) { in wrap()
|
H A D | RemoteAnimationAdapterCompat.java | 37 import android.view.RemoteAnimationTarget; 82 RemoteAnimationTarget[] apps, in wrapRemoteAnimationRunner() 83 RemoteAnimationTarget[] wallpapers, in wrapRemoteAnimationRunner() 84 RemoteAnimationTarget[] nonApps, in wrapRemoteAnimationRunner()
|
/aosp12/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/ |
H A D | ActivityLaunchAnimator.kt | 33 import android.view.RemoteAnimationTarget 319 apps: Array<out RemoteAnimationTarget>?, 320 wallpapers: Array<out RemoteAnimationTarget>?, 321 nonApps: Array<out RemoteAnimationTarget>?, 345 apps: Array<out RemoteAnimationTarget>?, 346 nonApps: Array<out RemoteAnimationTarget>?, 354 it.mode == RemoteAnimationTarget.MODE_OPENING 425 private fun applyStateToWindow(window: RemoteAnimationTarget, state: LaunchAnimator.State) { 479 navigationBar: RemoteAnimationTarget,
|
/aosp12/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/splitscreen/ |
H A D | SplitScreenController.java | 22 import static android.view.RemoteAnimationTarget.MODE_OPENING; 45 import android.view.RemoteAnimationTarget; 332 public void onAnimationStart(int transit, RemoteAnimationTarget[] apps, in startIntentLegacy() 333 RemoteAnimationTarget[] wallpapers, RemoteAnimationTarget[] nonApps, in startIntentLegacy() 365 RemoteAnimationTarget[] onGoingToRecentsLegacy(boolean cancel, RemoteAnimationTarget[] apps) { in onGoingToRecentsLegacy() 379 for (RemoteAnimationTarget appTarget : apps) { in onGoingToRecentsLegacy() 387 return new RemoteAnimationTarget[]{mStageCoordinator.getDividerBarLegacyTarget()}; in onGoingToRecentsLegacy() 665 public RemoteAnimationTarget[] onGoingToRecentsLegacy(boolean cancel, in onGoingToRecentsLegacy() 666 RemoteAnimationTarget[] apps) { in onGoingToRecentsLegacy() 667 final RemoteAnimationTarget[][] out = new RemoteAnimationTarget[][]{null}; in onGoingToRecentsLegacy()
|
H A D | ISplitScreen.aidl | 24 import android.view.RemoteAnimationTarget; 102 RemoteAnimationTarget[] onGoingToRecentsLegacy(boolean cancel, in onGoingToRecentsLegacy() 103 in RemoteAnimationTarget[] appTargets) = 12; in onGoingToRecentsLegacy()
|
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/quickstep/ |
H A D | RecentsAnimationCallbacks.java | 23 import android.view.RemoteAnimationTarget; 101 RemoteAnimationTarget[] nonHomeApps = Arrays.stream(appTargets) in onAnimationStart() 105 .toArray(RemoteAnimationTarget[]::new); in onAnimationStart() 107 RemoteAnimationTarget[] nonAppTargets = in onAnimationStart()
|
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/ |
H A D | KeyguardUnlockAnimationControllerTest.kt | 9 import android.view.RemoteAnimationTarget 55 private lateinit var remoteAnimationTarget: RemoteAnimationTarget 69 remoteAnimationTarget = RemoteAnimationTarget(
|
/aosp12/frameworks/base/apct-tests/perftests/windowmanager/src/android/wm/ |
H A D | RecentsAnimationPerfTest.java | 42 import android.view.RemoteAnimationTarget; 184 RemoteAnimationTarget[] apps, RemoteAnimationTarget[] wallpapers, in testRecentsAnimation() 220 public void onTasksAppeared(RemoteAnimationTarget[] app) throws RemoteException { in testRecentsAnimation()
|
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/animation/ |
H A D | ActivityLaunchAnimatorTest.kt | 16 import android.view.RemoteAnimationTarget 191 private fun fakeWindow(): RemoteAnimationTarget { 199 return RemoteAnimationTarget( 200 0, RemoteAnimationTarget.MODE_OPENING, SurfaceControl(), false, Rect(), Rect(), 0,
|