Home
last modified time | relevance | path

Searched refs:frameTime (Results 1 – 12 of 12) sorted by relevance

/aosp14/frameworks/base/core/java/android/animation/
H A DValueAnimator.java1358 public void commitAnimationFrame(long frameTime) { in commitAnimationFrame() argument
1361 long adjustment = frameTime - mLastFrameTime; in commitAnimationFrame()
1511 public final boolean doAnimationFrame(long frameTime) {
1516 ? frameTime
1522 mPauseTime = frameTime;
1529 mStartTime += (frameTime - mPauseTime);
1536 if (mStartTime > frameTime && mSeekFraction == -1) {
1552 mStartTime = frameTime - seekTime;
1557 mLastFrameTime = frameTime;
1572 boolean pulseAnimationFrame(long frameTime) { in pulseAnimationFrame() argument
[all …]
H A DAnimationHandler.java335 private void doAnimationFrame(long frameTime) { in doAnimationFrame() argument
344 callback.doAnimationFrame(frameTime); in doAnimationFrame()
358 private void commitAnimationFrame(AnimationFrameCallback callback, long frameTime) { in commitAnimationFrame() argument
361 callback.commitAnimationFrame(frameTime); in commitAnimationFrame()
484 boolean doAnimationFrame(long frameTime); in doAnimationFrame() argument
501 void commitAnimationFrame(long frameTime); in commitAnimationFrame() argument
H A DAnimatorSet.java1142 public boolean doAnimationFrame(long frameTime) {
1153 mFirstFrame = frameTime;
1161 mPauseTime = frameTime;
1166 mFirstFrame += (frameTime - mPauseTime);
1176 mFirstFrame = (long) (frameTime - (mSeekState.getPlayTime() + mStartDelay)
1182 if (!mReversing && frameTime < mFirstFrame + mStartDelay * durationScale) {
1189 long unscaledPlayTime = (long) ((frameTime - mFirstFrame) / durationScale);
1190 mLastFrameTime = frameTime;
1240 public void commitAnimationFrame(long frameTime) {
1245 boolean pulseAnimationFrame(long frameTime) {
[all …]
H A DAnimator.java521 boolean pulseAnimationFrame(long frameTime) { in pulseAnimationFrame() argument
/aosp14/frameworks/base/core/jni/
H A Dandroid_view_InputEventReceiver.md23 … consumeBatches=false, frameTime=-1, ..)`. That is, when `handleEvent` runs, there is no informati…
33 …Batches=true, frameTime=<valid frame time>, ..)`. At this point, the `consume` function will retur…
46 - `consumeBatches=false, frameTime=-1`
47 - `consumeBatches=true, frameTime=<valid time>`
49 I.e., it is never called with `consumeBatches=true, frameTime=-1`.
H A Dandroid_view_InputEventReceiver.cpp86 status_t consumeEvents(JNIEnv* env, bool consumeBatches, nsecs_t frameTime,
301 bool consumeBatches, nsecs_t frameTime, bool* outConsumedBatch) { in consumeEvents() argument
304 getInputChannelName().c_str(), toString(consumeBatches), frameTime); in consumeEvents()
321 consumeBatches, frameTime, &seq, &inputEvent); in consumeEvents()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/util/
H A DNoRemeasureMotionLayout.kt45 Choreographer.getMainThreadInstance()?.frameTime == lastFrame
54 lastFrame = Choreographer.getMainThreadInstance()?.frameTime
/aosp14/frameworks/base/core/java/com/android/internal/dynamicanimation/animation/
H A DDynamicAnimation.java671 public boolean doAnimationFrame(long frameTime) { in doAnimationFrame() argument
674 mLastFrameTime = frameTime; in doAnimationFrame()
678 long deltaT = frameTime - mLastFrameTime; in doAnimationFrame()
679 mLastFrameTime = frameTime; in doAnimationFrame()
696 public void commitAnimationFrame(long frameTime) { in commitAnimationFrame() argument
697 doAnimationFrame(frameTime); in commitAnimationFrame()
/aosp14/frameworks/base/tests/ChoreographerTests/jni/
H A Dandroid_view_tests_ChoreographerNativeTest.cpp68 std::chrono::nanoseconds frameTime GUARDED_BY(mutex){0}; in GUARDED_BY()
86 cb->frameTime = std::chrono::nanoseconds{frameTimeNanos}; in vsyncCallback()
/aosp14/frameworks/base/packages/SystemUI/tests/utils/src/androidx/core/animation/
H A DAndroidXAnimatorIsolationRule.kt34 override fun onAnimationFrame(frameTime: Long) = onError()
/aosp14/frameworks/base/libs/hwui/
H A DProfileData.cpp45 static uint32_t frameCountIndexForFrameTime(nsecs_t frameTime) { in frameCountIndexForFrameTime() argument
46 uint32_t index = static_cast<uint32_t>(ns2ms(frameTime)); in frameCountIndexForFrameTime()
/aosp14/frameworks/base/core/java/android/view/
H A DViewRootImpl.java4703 long frameTime = nowTime - mFpsPrevTime; in trackFPS() local
4705 Log.v(mTag, "0x" + thisHash + "\tFrame time:\t" + frameTime); in trackFPS()