Lines Matching refs:animation

12 import android.view.animation.Animation;
13 import android.view.animation.Transformation;
26 Animation animation;
47 // Special surface for thumbnail animation.
68 if (WindowManagerService.localLOGV) Slog.v(TAG, "Setting animation in " + mAppToken
71 animation = anim;
90 // Start out animation gone if window is gone, or visible if window is visible.
97 if (WindowManagerService.localLOGV) Slog.v(TAG, "Setting dummy animation in " + mAppToken
99 animation = sDummyAnimation;
106 if (animation != null) {
107 animation = null;
182 if (animation == null) {
186 final boolean more = animation.getTransformation(currentTime, transformation);
188 TAG, "Stepped animation in " + mAppToken + ": more=" + more + ", xform=" + transformation);
190 animation = null;
193 TAG, "Finished animation in " + mAppToken + " @ " + currentTime);
204 if (animation == sDummyAnimation) {
208 // a real animation and the next call will execute normally.
213 && animation != null) {
216 TAG, "Starting animation in " + mAppToken +
219 animation.setStartTime(currentTime);
227 // animation isn't over, step any thumbnail and that's
235 } else if (animation != null) {
236 // If the display is frozen, and there is a pending animation,
239 animation = null;
244 if (!animating && animation == null) {
300 if (animating || animation != null) {
302 pw.print(prefix); pw.print("animation="); pw.println(animation);
325 // This is an animation that does nothing: it just immediately finishes
326 // itself every time it is called. It is used as a stub animation in cases