Home
last modified time | relevance | path

Searched refs:RemoteAnimationTarget (Results 1 – 24 of 24) sorted by relevance

/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DRemoteAnimationControllerTest.java45 import android.view.RemoteAnimationTarget;
106 final ArgumentCaptor<RemoteAnimationTarget[]> appsCaptor = in testRun()
107 ArgumentCaptor.forClass(RemoteAnimationTarget[].class); in testRun()
108 final ArgumentCaptor<RemoteAnimationTarget[]> wallpapersCaptor = in testRun()
109 ArgumentCaptor.forClass(RemoteAnimationTarget[].class); in testRun()
115 final RemoteAnimationTarget app = appsCaptor.getValue()[0]; in testRun()
220 final ArgumentCaptor<RemoteAnimationTarget[]> appsCaptor = in testOneNotStarted()
221 ArgumentCaptor.forClass(RemoteAnimationTarget[].class); in testOneNotStarted()
222 final ArgumentCaptor<RemoteAnimationTarget[]> wallpapersCaptor = in testOneNotStarted()
223 ArgumentCaptor.forClass(RemoteAnimationTarget[].class); in testOneNotStarted()
[all …]
DAppChangeTransitionTests.java38 import android.view.RemoteAnimationTarget;
75 public void onAnimationStart(RemoteAnimationTarget[] apps, in onAnimationStart()
76 RemoteAnimationTarget[] wallpapers, in onAnimationStart()
78 for (RemoteAnimationTarget target : apps) { in onAnimationStart()
DAppTransitionTests.java47 import android.view.RemoteAnimationTarget;
239 public void onAnimationStart(RemoteAnimationTarget[] apps, in onAnimationStart()
240 RemoteAnimationTarget[] wallpapers, in onAnimationStart()
DWindowContainerTests.java64 import android.view.RemoteAnimationTarget;
910 public void onAnimationStart(RemoteAnimationTarget[] apps, in verifyWindowContainerApplyAnimation()
911 RemoteAnimationTarget[] wallpapers, in verifyWindowContainerApplyAnimation()
DActivityRecordTests.java96 import android.view.RemoteAnimationTarget;
594 public void onAnimationStart(RemoteAnimationTarget[] apps, in testTakeOptions()
595 RemoteAnimationTarget[] wallpapers, in testTakeOptions()
/frameworks/base/core/java/android/view/
DIRecentsAnimationRunner.aidl21 import android.view.RemoteAnimationTarget;
57 in RemoteAnimationTarget[] apps, in RemoteAnimationTarget[] wallpapers, in onAnimationStart()
64 void onTaskAppeared(in RemoteAnimationTarget app) = 3;
DIRemoteAnimationRunner.aidl19 import android.view.RemoteAnimationTarget;
37 void onAnimationStart(in RemoteAnimationTarget[] apps, in RemoteAnimationTarget[] wallpapers, in onAnimationStart()
DRemoteAnimationTarget.java52 public class RemoteAnimationTarget implements Parcelable { class
187 public RemoteAnimationTarget(int taskId, int mode, SurfaceControl leash, boolean isTranslucent, in RemoteAnimationTarget() method in RemoteAnimationTarget
209 public RemoteAnimationTarget(Parcel in) { in RemoteAnimationTarget() method in RemoteAnimationTarget
290 public static final @android.annotation.NonNull Creator<RemoteAnimationTarget> CREATOR
291 = new Creator<RemoteAnimationTarget>() {
292 public RemoteAnimationTarget createFromParcel(Parcel in) {
293 return new RemoteAnimationTarget(in);
296 public RemoteAnimationTarget[] newArray(int size) {
297 return new RemoteAnimationTarget[size];
DRemoteAnimationTarget.aidl19 parcelable RemoteAnimationTarget;
/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/system/
DRemoteAnimationTargetCompat.java22 import android.view.RemoteAnimationTarget;
30 public static final int MODE_OPENING = RemoteAnimationTarget.MODE_OPENING;
31 public static final int MODE_CLOSING = RemoteAnimationTarget.MODE_CLOSING;
55 public RemoteAnimationTargetCompat(RemoteAnimationTarget app) { in RemoteAnimationTargetCompat()
73 public static RemoteAnimationTargetCompat[] wrap(RemoteAnimationTarget[] apps) { in wrap()
DRemoteAnimationAdapterCompat.java24 import android.view.RemoteAnimationTarget;
47 public void onAnimationStart(RemoteAnimationTarget[] apps, in wrapRemoteAnimationRunner()
48 RemoteAnimationTarget[] wallpapers, in wrapRemoteAnimationRunner()
DActivityManagerWrapper.java60 import android.view.RemoteAnimationTarget;
251 RemoteAnimationTarget[] apps, RemoteAnimationTarget[] wallpapers, in startRecentsActivity()
270 public void onTaskAppeared(RemoteAnimationTarget app) { in startRecentsActivity()
/frameworks/base/services/core/java/com/android/server/wm/
DWallpaperAnimationAdapter.java26 import android.view.RemoteAnimationTarget;
51 private RemoteAnimationTarget mTarget;
67 public static RemoteAnimationTarget[] startWallpaperAnimations(WindowManagerService service, in startWallpaperAnimations()
71 final ArrayList<RemoteAnimationTarget> targets = new ArrayList<>(); in startWallpaperAnimations()
87 return targets.toArray(new RemoteAnimationTarget[targets.size()]); in startWallpaperAnimations()
93 RemoteAnimationTarget createRemoteAnimationTarget() { in createRemoteAnimationTarget()
94 mTarget = new RemoteAnimationTarget(-1, -1, getLeash(), false, null, null, in createRemoteAnimationTarget()
DRemoteAnimationController.java36 import android.view.RemoteAnimationTarget;
117 final RemoteAnimationTarget[] appTargets = createAppAnimations(); in goodToGo()
125 final RemoteAnimationTarget[] wallpaperTargets = createWallpaperAnimations(); in goodToGo()
166 private RemoteAnimationTarget[] createAppAnimations() { in createAppAnimations()
168 final ArrayList<RemoteAnimationTarget> targets = new ArrayList<>(); in createAppAnimations()
171 final RemoteAnimationTarget target = wrappers.createRemoteAnimationTarget(); in createAppAnimations()
197 return targets.toArray(new RemoteAnimationTarget[targets.size()]); in createAppAnimations()
200 private RemoteAnimationTarget[] createWallpaperAnimations() { in createWallpaperAnimations()
355 RemoteAnimationTarget mTarget;
377 RemoteAnimationTarget createRemoteAnimationTarget() {
[all …]
DRecentsAnimationController.java21 import static android.view.RemoteAnimationTarget.MODE_CLOSING;
22 import static android.view.RemoteAnimationTarget.MODE_OPENING;
53 import android.view.RemoteAnimationTarget;
469 final RemoteAnimationTarget[] appTargets = createAppAnimations(); in startAnimation()
478 final RemoteAnimationTarget[] wallpaperTargets = createWallpaperAnimations(); in startAnimation()
522 final RemoteAnimationTarget target = createTaskRemoteAnimation(task, finishedCallback); in addTaskToTargets()
535 private RemoteAnimationTarget createTaskRemoteAnimation(Task task, in createTaskRemoteAnimation()
564 private RemoteAnimationTarget[] createAppAnimations() { in createAppAnimations()
565 final ArrayList<RemoteAnimationTarget> targets = new ArrayList<>(); in createAppAnimations()
568 final RemoteAnimationTarget target = taskAdapter.createRemoteAnimationTarget(); in createAppAnimations()
[all …]
DWindowContainer.java75 import android.view.RemoteAnimationTarget;
2373 RemoteAnimationTarget createRemoteAnimationTarget( in createRemoteAnimationTarget()
DTask.java134 import android.view.RemoteAnimationTarget;
3241 RemoteAnimationTarget createRemoteAnimationTarget( in createRemoteAnimationTarget()
DActivityRecord.java286 import android.view.RemoteAnimationTarget;
7790 RemoteAnimationTarget createRemoteAnimationTarget( in createRemoteAnimationTarget()
7799 return new RemoteAnimationTarget(task.mTaskId, record.getMode(), in createRemoteAnimationTarget()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DActivityLaunchAnimator.java30 import android.view.RemoteAnimationTarget;
159 public void onAnimationStart(RemoteAnimationTarget[] remoteAnimationTargets, in onAnimationStart()
160 RemoteAnimationTarget[] remoteAnimationWallpaperTargets, in onAnimationStart()
164 RemoteAnimationTarget primary = getPrimaryRemoteAnimationTarget( in onAnimationStart()
248 private RemoteAnimationTarget getPrimaryRemoteAnimationTarget( in getPrimaryRemoteAnimationTarget()
249 RemoteAnimationTarget[] remoteAnimationTargets) { in getPrimaryRemoteAnimationTarget()
250 RemoteAnimationTarget primary = null; in getPrimaryRemoteAnimationTarget()
251 for (RemoteAnimationTarget app : remoteAnimationTargets) { in getPrimaryRemoteAnimationTarget()
252 if (app.mode == RemoteAnimationTarget.MODE_OPENING) { in getPrimaryRemoteAnimationTarget()
284 private void applyParamsToWindow(RemoteAnimationTarget app) { in applyParamsToWindow()
/frameworks/base/apct-tests/perftests/windowmanager/src/android/wm/
DRecentsAnimationPerfTest.java43 import android.view.RemoteAnimationTarget;
182 RemoteAnimationTarget[] apps, RemoteAnimationTarget[] wallpapers, in testRecentsAnimation()
217 public void onTaskAppeared(RemoteAnimationTarget app) throws RemoteException { in testRecentsAnimation()
/frameworks/base/core/proto/android/view/
Dremote_animation_target.proto28 /** Proto representation for android.view.RemoteAnimationTarget.java class. */
/frameworks/base/config/
Dpreloaded-classes6908 android.view.RemoteAnimationTarget$1
6909 android.view.RemoteAnimationTarget
Dboot-image-profile.txt21361 …iew/IRecentsAnimationController;[Landroid/view/RemoteAnimationTarget;[Landroid/view/RemoteAnimatio…
21369 …r$Stub$Proxy;->onAnimationStart([Landroid/view/RemoteAnimationTarget;[Landroid/view/RemoteAnimatio…
21990 HSPLandroid/view/RemoteAnimationTarget$1;->createFromParcel(Landroid/os/Parcel;)Landroid/view/Remot…
21991 HSPLandroid/view/RemoteAnimationTarget$1;->createFromParcel(Landroid/os/Parcel;)Ljava/lang/Object;
21992 HSPLandroid/view/RemoteAnimationTarget$1;->newArray(I)[Landroid/view/RemoteAnimationTarget;
21993 HSPLandroid/view/RemoteAnimationTarget$1;->newArray(I)[Ljava/lang/Object;
21994 HSPLandroid/view/RemoteAnimationTarget;-><init>(Landroid/os/Parcel;)V
21995 HPLandroid/view/RemoteAnimationTarget;->writeToParcel(Landroid/os/Parcel;I)V
47226 Landroid/view/RemoteAnimationTarget$1;
47227 Landroid/view/RemoteAnimationTarget;
/frameworks/base/services/
Dart-profile34000 …er/wm/RemoteAnimationController;[Landroid/view/RemoteAnimationTarget;[Landroid/view/RemoteAnimatio…
34711 …oid/server/wm/RemoteAnimationController$RemoteAnimationRecord;)Landroid/view/RemoteAnimationTarget;
37561 …Controller$TaskAnimationAdapter;->createRemoteAnimationTarget()Landroid/view/RemoteAnimationTarget;
37594 …d/server/wm/RecentsAnimationController;->createAppAnimations()[Landroid/view/RemoteAnimationTarget;
37595 …android/server/wm/SurfaceAnimator$OnAnimationFinishedCallback;)Landroid/view/RemoteAnimationTarget;
37596 …er/wm/RecentsAnimationController;->createWallpaperAnimations()[Landroid/view/RemoteAnimationTarget;
37645 …ontroller$RemoteAnimationRecord;->createRemoteAnimationTarget()Landroid/view/RemoteAnimationTarget;
37653 …id/server/wm/RemoteAnimationController;->createAppAnimations()[Landroid/view/RemoteAnimationTarget;
37655 …ver/wm/RemoteAnimationController;->createWallpaperAnimations()[Landroid/view/RemoteAnimationTarget;
37659 …oGo$1$RemoteAnimationController([Landroid/view/RemoteAnimationTarget;[Landroid/view/RemoteAnimatio…
[all …]