HomeSort by relevance Sort by last modified time
    Searched refs:Choreographer (Results 1 - 11 of 11) sorted by null

  /cts/tests/tests/view/src/android/view/cts/
ChoreographerTest.java 20 import android.view.Choreographer;
28 private Choreographer mChoreographer = Choreographer.getInstance();
31 assertTrue(Choreographer.getFrameDelay() > 0);
33 long oldFrameDelay = Choreographer.getFrameDelay();
35 Choreographer.setFrameDelay(newFrameDelay);
36 assertEquals(newFrameDelay, Choreographer.getFrameDelay());
38 Choreographer.setFrameDelay(oldFrameDelay);
48 Choreographer.CALLBACK_ANIMATION, addedCallback1, null);
50 Choreographer.CALLBACK_ANIMATION, addedCallback2, null)
    [all...]
  /frameworks/base/core/java/android/view/
Choreographer.java 29 * The choreographer receives timing pulses (such as vertical synchronization)
33 * Applications typically interact with the choreographer indirectly using
53 * choreographer directly in your application. Here are some examples.
59 * {@link Choreographer#postFrameCallback}.</li>
63 * Each {@link Looper} thread has its own choreographer. Other threads can
64 * post callbacks to run on the choreographer but they will run on the {@link Looper}
65 * to which the choreographer belongs.
68 public final class Choreographer {
69 private static final String TAG = "Choreographer";
85 // Thread local storage for the choreographer
    [all...]
ViewRootImpl.java 213 Choreographer mChoreographer;
400 mChoreographer = Choreographer.getInstance();
    [all...]
View.java     [all...]
  /frameworks/base/core/java/android/animation/
ValueAnimator.java 24 import android.view.Choreographer;
526 * The handler uses the Choreographer for executing periodic callbacks.
543 private final Choreographer mChoreographer;
547 mChoreographer = Choreographer.getInstance();
635 // Called by the Choreographer.
644 mChoreographer.postCallback(Choreographer.CALLBACK_ANIMATION, this, null);
684 return Choreographer.getFrameDelay();
700 Choreographer.setFrameDelay(frameDelay);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
NotificationPanel.java 72 Choreographer mChoreo = new Choreographer();
313 private class Choreographer implements Animator.AnimatorListener {
325 Choreographer() {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
Choreographer.java 32 /* package */ class Choreographer implements Animator.AnimatorListener {
52 public Choreographer(RecentsPanelView root, View scrim, View content,
RecentsPanelView.java 87 private Choreographer mChoreo;
486 mChoreo = new Choreographer(this, mRecentsScrim, mRecentsContainer, mRecentsNoApps, this);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PhoneStatusBar.java 54 import android.view.Choreographer;
218 Choreographer mChoreographer;
266 mChoreographer.removeCallbacks(Choreographer.CALLBACK_ANIMATION,
268 mChoreographer.removeCallbacks(Choreographer.CALLBACK_ANIMATION,
270 mChoreographer.postCallback(Choreographer.CALLBACK_ANIMATION,
386 mChoreographer = Choreographer.getInstance();
    [all...]
  /frameworks/base/services/java/com/android/server/wm/
WindowManagerService.java 104 import android.view.Choreographer;
559 final Choreographer mChoreographer = Choreographer.getInstance();
    [all...]
  /prebuilts/sdk/current/
android.jar 

Completed in 985 milliseconds