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

1 2

  /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/services/core/java/com/android/server/display/
RampAnimator.java 21 import android.view.Choreographer;
30 private final Choreographer mChoreographer;
47 mChoreographer = Choreographer.getInstance();
124 mChoreographer.postCallback(Choreographer.CALLBACK_ANIMATION, mAnimationCallback, null);
128 mChoreographer.removeCallbacks(Choreographer.CALLBACK_ANIMATION, mAnimationCallback, null);
132 @Override // Choreographer callback
DisplayPowerState.java 30 import android.view.Choreographer;
58 private final Choreographer mChoreographer;
78 mChoreographer = Choreographer.getInstance();
289 mChoreographer.postCallback(Choreographer.CALLBACK_TRAVERSAL,
  /frameworks/base/core/java/com/android/internal/view/animation/
FallbackLUTInterpolator.java 21 import android.view.Choreographer;
46 long frameIntervalNanos = Choreographer.getInstance().getFrameIntervalNanos();
  /external/chromium_org/ui/android/java/src/org/chromium/ui/
VSyncMonitor.java 11 import android.view.Choreographer;
48 // Choreographer is used to detect vsync on >= JB.
49 private final Choreographer mChoreographer;
50 private final Choreographer.FrameCallback mVSyncFrameCallback;
76 * @param enableJBVsync Whether to allow Choreographer-based notifications on JB and up.
86 // Use Choreographer on JB+ to get notified of vsync.
87 mChoreographer = Choreographer.getInstance();
88 mVSyncFrameCallback = new Choreographer.FrameCallback() {
  /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...]
RenderNodeAnimator.java 433 private final Choreographer mChoreographer;
437 mChoreographer = Choreographer.getInstance();
452 mChoreographer.postCallback(Choreographer.CALLBACK_ANIMATION, this, null);
ThreadedRenderer.java 100 private Choreographer mChoreographer;
122 mChoreographer = Choreographer.getInstance();
ViewRootImpl.java 197 Choreographer mChoreographer;
297 private Choreographer.FrameCallback mRenderProfiler;
390 mChoreographer = Choreographer.getInstance();
    [all...]
View.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
KeyguardBouncer.java 20 import android.view.Choreographer;
49 private Choreographer mChoreographer = Choreographer.getInstance();
78 mChoreographer.postCallbackDelayed(Choreographer.CALLBACK_ANIMATION, mShowRunnable,
95 mChoreographer.removeCallbacks(Choreographer.CALLBACK_ANIMATION, mShowRunnable, null);
  /cts/tests/tests/media/src/android/media/cts/
PresentationSyncTest.java 27 import android.view.Choreographer;
64 * This test does not use Choreographer. The longer the test runs, the farther out of
202 * Exercises the test code, driving it off of Choreographer. The animation is driven at
318 private class ChoRunner implements Choreographer.FrameCallback {
323 private Choreographer mChocho;
336 mChocho = Choreographer.getInstance();
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
AccessibilityInputFilter.java 23 import android.view.Choreographer;
89 private final Choreographer mChoreographer;
118 mChoreographer = Choreographer.getInstance();
231 mChoreographer.postCallback(Choreographer.CALLBACK_INPUT,
264 // Finished with this choreographer frame. Do the rest on the next one.
  /packages/screensavers/Basic/src/com/android/dreams/basic/
ColorsGLRenderer.java 22 import android.view.Choreographer;
48 final class ColorsGLRenderer implements Choreographer.FrameCallback {
61 private final Choreographer mChoreographer;
78 mChoreographer = Choreographer.getInstance();
  /frameworks/base/core/java/android/animation/
ValueAnimator.java 23 import android.view.Choreographer;
626 * The handler uses the Choreographer for executing periodic callbacks.
652 private final Choreographer mChoreographer;
656 mChoreographer = Choreographer.getInstance();
734 // Called by the Choreographer.
743 mChoreographer.postCallback(Choreographer.CALLBACK_ANIMATION, this, null);
783 return Choreographer.getFrameDelay();
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
TiledImageView.java 33 import android.view.Choreographer;
34 import android.view.Choreographer.FrameCallback;
240 Choreographer.getInstance().postFrameCallback(mFrameCallback);
  /packages/apps/Gallery2/src/com/android/photos/views/
TiledImageView.java 33 import android.view.Choreographer;
34 import android.view.Choreographer.FrameCallback;
240 Choreographer.getInstance().postFrameCallback(mFrameCallback);
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/photos/views/
TiledImageView.java 33 import android.view.Choreographer;
34 import android.view.Choreographer.FrameCallback;
252 Choreographer.getInstance().postFrameCallback(mFrameCallback);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DismissViewButton.java 26 import android.view.Choreographer;
  /build/target/board/generic/
BoardConfig.mk 49 # vsync. The system's vsync event drives Choreographer and SurfaceFlinger's
  /frameworks/base/core/java/android/widget/
TextView.java 101 import android.view.Choreographer;
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
Workspace.java 58 import android.view.Choreographer;
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
WindowManagerService.java 107 import android.view.Choreographer;
542 final Choreographer mChoreographer = Choreographer.getInstance();
    [all...]
  /external/robolectric/lib/main/
android.jar 
  /prebuilts/sdk/18/
android.jar 

Completed in 788 milliseconds

1 2