HomeSort by relevance Sort by last modified time
    Searched defs:Choreographer (Results 1 - 14 of 14) 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 explicit Choreographer(const sp<Looper>& looper);
68 Choreographer(const Choreographer&) = delete;
85 static thread_local Choreographer* gChoreographer;
86 Choreographer* Choreographer::getForThread()
    [all...]
  /frameworks/layoutlib/bridge/src/android/view/
Choreographer_Delegate.java 27 * Delegate used to provide new implementation of a select few methods of {@link Choreographer}
29 * Through the layoutlib_create tool, the original methods of Choreographer have been
34 private static final AtomicReference<Choreographer> mInstance = new AtomicReference<Choreographer>();
37 public static Choreographer getInstance() {
39 mInstance.compareAndSet(null, Choreographer.getInstance_Original());
51 static void scheduleVsyncLocked(Choreographer thisChoreographer) {
56 Choreographer thisChoreographer = Choreographer.getInstance();
63 thisChoreographer.doCallbacks(Choreographer.CALLBACK_INPUT, frameTimeNanos)
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
ChoreographerTest.java 32 import android.view.Choreographer;
47 private Choreographer mChoreographer;
52 mChoreographer = Choreographer.getInstance();
57 assertTrue(Choreographer.getFrameDelay() > 0);
59 long oldFrameDelay = Choreographer.getFrameDelay();
61 Choreographer.setFrameDelay(newFrameDelay);
62 assertEquals(newFrameDelay, Choreographer.getFrameDelay());
64 Choreographer.setFrameDelay(oldFrameDelay);
75 Choreographer.CALLBACK_ANIMATION, addedCallback1, null);
77 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;
215 mChoreographer = Choreographer.getInstance();
224 Choreographer.releaseInstance();
  /frameworks/base/core/java/android/view/
Choreographer.java 38 * The choreographer receives timing pulses (such as vertical synchronization)
42 * Applications typically interact with the choreographer indirectly using
62 * choreographer directly in your application. Here are some examples.
68 * {@link Choreographer#postFrameCallback}.</li>
72 * Each {@link Looper} thread has its own choreographer. Other threads can
73 * post callbacks to run on the choreographer but they will run on the {@link Looper}
74 * to which the choreographer belongs.
77 public final class Choreographer {
78 private static final String TAG = "Choreographer";
99 // 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/26/
android.jar 
  /prebuilts/sdk/27/
android.jar 
  /prebuilts/tools/common/m2/repository/com/google/android/android/4.1.1.4/
android-4.1.1.4.jar 
  /prebuilts/sdk/25/
android.jar 

Completed in 562 milliseconds