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

  /frameworks/base/native/android/
choreographer.cpp 17 #define LOG_TAG "Choreographer"
24 #include <android/choreographer.h>
50 class Choreographer : public DisplayEventDispatcher, public MessageHandler {
61 static Choreographer* getForThread();
64 virtual ~Choreographer() = default;
67 Choreographer(const sp<Looper>& looper);
68 Choreographer(const Choreographer&) = delete;
85 static thread_local Choreographer* gChoreographer;
86 Choreographer* Choreographer::getForThread()
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
ChoreographerTest.java 20 import android.view.Choreographer;
28 private Choreographer mChoreographer;
36 mChoreographer = Choreographer.getInstance();
42 assertTrue(Choreographer.getFrameDelay() > 0);
44 long oldFrameDelay = Choreographer.getFrameDelay();
46 Choreographer.setFrameDelay(newFrameDelay);
47 assertEquals(newFrameDelay, Choreographer.getFrameDelay());
49 Choreographer.setFrameDelay(oldFrameDelay);
59 Choreographer.CALLBACK_ANIMATION, addedCallback1, null);
61 Choreographer.CALLBACK_ANIMATION, addedCallback2, null)
    [all...]
  /frameworks/base/core/java/com/android/internal/policy/
BackdropFrameRenderer.java 23 import android.view.Choreographer;
33 * executed via the Choreographer.
36 public class BackdropFrameRenderer extends Thread implements Choreographer.FrameCallback {
52 private Choreographer mChoreographer;
211 mChoreographer = Choreographer.getInstance();
220 Choreographer.releaseInstance();
  /frameworks/base/core/java/android/view/
Choreographer.java 34 * The choreographer receives timing pulses (such as vertical synchronization)
38 * Applications typically interact with the choreographer indirectly using
58 * choreographer directly in your application. Here are some examples.
64 * {@link Choreographer#postFrameCallback}.</li>
68 * Each {@link Looper} thread has its own choreographer. Other threads can
69 * post callbacks to run on the choreographer but they will run on the {@link Looper}
70 * to which the choreographer belongs.
73 public final class Choreographer {
74 private static final String TAG = "Choreographer";
95 // Thread local storage for the choreographer
    [all...]
  /external/robolectric/v1/lib/main/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 98 milliseconds