Searched refs:Choreographer (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/services/java/com/android/server/power/
H A DRampAnimator.java21 import android.view.Choreographer;
30 private final Choreographer mChoreographer;
45 mChoreographer = Choreographer.getInstance();
96 mChoreographer.postCallback(Choreographer.CALLBACK_ANIMATION, mCallback, null);
100 @Override // Choreographer callback
H A DDisplayPowerState.java28 import android.view.Choreographer;
56 private final Choreographer mChoreographer;
77 mChoreographer = Choreographer.getInstance();
287 mChoreographer.postCallback(Choreographer.CALLBACK_TRAVERSAL,
/frameworks/base/core/java/android/view/
H A DChoreographer.java60 * {@link Choreographer#postFrameCallback}.</li>
69 public final class Choreographer { class
70 private static final String TAG = "Choreographer";
87 private static final ThreadLocal<Choreographer> sThreadInstance =
88 new ThreadLocal<Choreographer>() {
90 protected Choreographer initialValue() {
95 return new Choreographer(looper);
163 private Choreographer(Looper looper) { method in class:Choreographer
190 public static Choreographer getInstance() {
530 doCallbacks(Choreographer
[all...]
H A DViewRootImpl.java209 Choreographer mChoreographer;
381 mChoreographer = Choreographer.getInstance();
964 Choreographer.CALLBACK_TRAVERSAL, mTraversalRunnable, null);
974 Choreographer.CALLBACK_TRAVERSAL, mTraversalRunnable, null);
4325 mChoreographer.postCallback(Choreographer.CALLBACK_INPUT,
4333 mChoreographer.removeCallbacks(Choreographer.CALLBACK_INPUT,
4424 mChoreographer.removeCallbacks(Choreographer.CALLBACK_ANIMATION, this, null);
4466 mChoreographer.postCallback(Choreographer.CALLBACK_ANIMATION, this, null);
H A DView.java10605 Choreographer.CALLBACK_ANIMATION, action, null);
10628 Choreographer.CALLBACK_ANIMATION, action, null, delayMillis);
10656 Choreographer.CALLBACK_ANIMATION, action, null);
14161 Choreographer.CALLBACK_ANIMATION, what, who,
14162 Choreographer.subtractFrameDelay(delay));
14179 Choreographer.CALLBACK_ANIMATION, what, who);
14198 Choreographer.CALLBACK_ANIMATION, null, who);
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DUniverseBackground.java28 import android.view.Choreographer;
84 private Choreographer mChoreographer;
109 mChoreographer = Choreographer.getInstance();
275 mChoreographer.postCallback(Choreographer.CALLBACK_ANIMATION,
317 mChoreographer.removeCallbacks(Choreographer.CALLBACK_ANIMATION,
380 mChoreographer.removeCallbacks(Choreographer.CALLBACK_ANIMATION,
382 mChoreographer.postCallback(Choreographer.CALLBACK_ANIMATION,
/frameworks/base/core/java/android/animation/
H A DValueAnimator.java24 import android.view.Choreographer;
533 * The handler uses the Choreographer for executing periodic callbacks.
553 private final Choreographer mChoreographer;
557 mChoreographer = Choreographer.getInstance();
635 // Called by the Choreographer.
644 mChoreographer.postCallback(Choreographer.CALLBACK_ANIMATION, this, null);
684 return Choreographer.getFrameDelay();
700 Choreographer.setFrameDelay(frameDelay);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DNotificationPanel.java72 Choreographer mChoreo = new Choreographer();
334 private class Choreographer implements Animator.AnimatorListener { class in class:NotificationPanel
346 Choreographer() { method in class:NotificationPanel.Choreographer
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java113 import android.view.Choreographer;
521 final Choreographer mChoreographer = Choreographer.getInstance();
9675 Choreographer.CALLBACK_ANIMATION, mAnimator.mAnimationRunnable, null);

Completed in 275 milliseconds