HomeSort by relevance Sort by last modified time
    Searched defs:Choreographer (Results 1 - 6 of 6) 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 33 * The choreographer receives timing pulses (such as vertical synchronization)
37 * Applications typically interact with the choreographer indirectly using
57 * choreographer directly in your application. Here are some examples.
63 * {@link Choreographer#postFrameCallback}.</li>
67 * Each {@link Looper} thread has its own choreographer. Other threads can
68 * post callbacks to run on the choreographer but they will run on the {@link Looper}
69 * to which the choreographer belongs.
72 public final class Choreographer {
73 private static final String TAG = "Choreographer";
89 // Thread local storage for the choreographer
    [all...]
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 426 milliseconds