HomeSort by relevance Sort by last modified time
    Searched refs:Choreographer (Results 1 - 25 of 29) 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;
51 // Choreographer is used to detect vsync on >= JB.
52 private final Choreographer mChoreographer;
53 private final Choreographer.FrameCallback mVSyncFrameCallback;
79 * @param enableJBVsync Whether to allow Choreographer-based notifications on JB and up.
90 // Use Choreographer on JB+ to get notified of vsync.
91 mChoreographer = Choreographer.getInstance();
92 mVSyncFrameCallback = new Choreographer.FrameCallback() {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
KeyguardBouncer.java 20 import android.view.Choreographer;
48 private Choreographer mChoreographer = Choreographer.getInstance();
76 mChoreographer.postCallbackDelayed(Choreographer.CALLBACK_ANIMATION, mShowRunnable,
92 mChoreographer.removeCallbacks(Choreographer.CALLBACK_ANIMATION, mShowRunnable, null);
  /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 398 private final Choreographer mChoreographer;
402 mChoreographer = Choreographer.getInstance();
417 mChoreographer.postCallback(Choreographer.CALLBACK_ANIMATION, this, null);
ThreadedRenderer.java 97 private Choreographer mChoreographer;
119 mChoreographer = Choreographer.getInstance();
ViewRootImpl.java 197 Choreographer mChoreographer;
297 private Choreographer.FrameCallback mRenderProfiler;
390 mChoreographer = Choreographer.getInstance();
    [all...]
View.java     [all...]
  /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
189 * Exercises the test code, driving it off of Choreographer. The animation is driven at
305 private class ChoRunner implements Choreographer.FrameCallback {
310 private Choreographer mChocho;
323 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 22 import android.view.Choreographer;
570 * The handler uses the Choreographer for executing periodic callbacks.
596 private final Choreographer mChoreographer;
600 mChoreographer = Choreographer.getInstance();
678 // Called by the Choreographer.
687 mChoreographer.postCallback(Choreographer.CALLBACK_ANIMATION, this, null);
727 return Choreographer.getFrameDelay();
743 Choreographer.setFrameDelay(frameDelay);
    [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);
  /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 100 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 106 import android.view.Choreographer;
538 final Choreographer mChoreographer = Choreographer.getInstance();
    [all...]
  /external/robolectric/lib/main/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 

Completed in 1131 milliseconds

1 2