HomeSort by relevance Sort by last modified time
    Searched defs:Choreographer (Results 1 - 5 of 5) 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 30 * The choreographer receives timing pulses (such as vertical synchronization)
34 * Applications typically interact with the choreographer indirectly using
54 * choreographer directly in your application. Here are some examples.
60 * {@link Choreographer#postFrameCallback}.</li>
64 * Each {@link Looper} thread has its own choreographer. Other threads can
65 * post callbacks to run on the choreographer but they will run on the {@link Looper}
66 * to which the choreographer belongs.
69 public final class Choreographer {
70 private static final String TAG = "Choreographer";
86 // Thread local storage for the choreographer
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
NotificationPanel.java 73 Choreographer mChoreo = new Choreographer();
335 private class Choreographer implements Animator.AnimatorListener {
347 Choreographer() {
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 

Completed in 160 milliseconds