HomeSort by relevance Sort by last modified time
    Searched refs:Choreographer (Results 1 - 25 of 31) 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/packages/SystemUI/src/com/android/systemui/
DejankUtils.java 22 import android.view.Choreographer;
31 private static final Choreographer sChoreographer = Choreographer.getInstance();
71 sChoreographer.postCallback(Choreographer.CALLBACK_ANIMATION, sAnimationCallbackRunnable,
  /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 26 import android.view.Choreographer;
54 private final Choreographer mChoreographer;
73 mChoreographer = Choreographer.getInstance();
283 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();
  /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...]
RenderNodeAnimator.java 433 private final Choreographer mChoreographer;
437 mChoreographer = Choreographer.getInstance();
452 mChoreographer.postCallback(Choreographer.CALLBACK_ANIMATION, this, null);
ThreadedRenderer.java 108 private Choreographer mChoreographer;
319 final Choreographer choreographer = attachInfo.mViewRootImpl.mChoreographer; local
320 choreographer.mFrameInfo.markDrawStart();
340 final long[] frameInfo = choreographer.mFrameInfo.mFrameInfo;
ViewRootImpl.java 202 Choreographer mChoreographer;
308 private Choreographer.FrameCallback mRenderProfiler;
395 mChoreographer = Choreographer.getInstance();
    [all...]
View.java     [all...]
  /cts/tests/tests/transition/src/android/transition/cts/
BaseTransitionTest.java 28 import android.view.Choreographer;
29 import android.view.Choreographer.FrameCallback;
132 Choreographer.getInstance().postFrameCallbackDelayed(new FrameCallback() {
  /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 24 import android.view.Choreographer;
666 * The handler uses the Choreographer for executing periodic callbacks.
692 private final Choreographer mChoreographer;
697 mChoreographer = Choreographer.getInstance();
772 mChoreographer.postCallback(Choreographer.CALLBACK_COMMIT, mCommit, null);
    [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 30 import android.view.Choreographer;
31 import android.view.Choreographer.FrameCallback;
169 Choreographer.getInstance().postFrameCallback(mFrameCallback);
  /frameworks/data-binding/library/src/main/java/android/databinding/
ViewDataBinding.java 29 import android.view.Choreographer;
199 private Choreographer mChoreographer;
201 private final Choreographer.FrameCallback mFrameCallback;
226 mChoreographer = Choreographer.getInstance();
227 mFrameCallback = new Choreographer.FrameCallback() {
    [all...]
  /build/target/board/generic/
BoardConfig.mk 49 # vsync. The system's vsync event drives Choreographer and SurfaceFlinger's
  /frameworks/base/services/core/java/com/android/server/wm/
AppWindowAnimator.java 27 import android.view.Choreographer;
285 return -Choreographer.getInstance().getFrameIntervalNanos() / TimeUtils.NANOS_PER_MS;
WindowAnimator.java 42 import android.view.Choreographer;
69 final Choreographer.FrameCallback mAnimationFrameCallback;
119 mAnimationFrameCallback = new Choreographer.FrameCallback() {
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
KeyguardBouncer.java 20 import android.view.Choreographer;
  /frameworks/base/core/java/android/widget/
TextView.java 110 import android.view.Choreographer;
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
Workspace.java 52 import android.view.Choreographer;
    [all...]

Completed in 603 milliseconds

1 2