HomeSort by relevance Sort by last modified time
    Searched refs:normalizedTime (Results 1 - 17 of 17) sorted by null

  /frameworks/base/services/core/java/com/android/server/wm/animation/
ClipRectTBAnimation.java 58 float normalizedTime;
60 normalizedTime = ((float) (currentTime - (getStartTime() + startOffset))) /
64 normalizedTime = currentTime < getStartTime() ? 0.0f : 1.0f;
66 mNormalizedTime = normalizedTime;
  /frameworks/av/packages/MediaComponents/src/com/android/support/mediarouter/app/
OverlayListView.java 231 float normalizedTime = (currentTime - mStartTime) / (float) mDuration;
232 normalizedTime = Math.max(0.0f, Math.min(1.0f, normalizedTime));
234 normalizedTime = 0.0f;
236 float interpolatedTime = (mInterpolator == null) ? normalizedTime
237 : mInterpolator.getInterpolation(normalizedTime);
246 if (mIsAnimationStarted && normalizedTime >= 1.0f) {
  /frameworks/support/mediarouter/src/main/java/androidx/mediarouter/app/
OverlayListView.java 231 float normalizedTime = (currentTime - mStartTime) / (float) mDuration;
232 normalizedTime = Math.max(0.0f, Math.min(1.0f, normalizedTime));
234 normalizedTime = 0.0f;
236 float interpolatedTime = (mInterpolator == null) ? normalizedTime
237 : mInterpolator.getInterpolation(normalizedTime);
246 if (mIsAnimationStarted && normalizedTime >= 1.0f) {
  /frameworks/base/core/java/android/view/animation/
Animation.java 876 float normalizedTime;
878 normalizedTime = ((float) (currentTime - (mStartTime + startOffset))) /
882 normalizedTime = currentTime < mStartTime ? 0.0f : 1.0f;
885 final boolean expired = normalizedTime >= 1.0f || isCanceled();
888 if (!mFillEnabled) normalizedTime = Math.max(Math.min(normalizedTime, 1.0f), 0.0f);
890 if ((normalizedTime >= 0.0f || mFillBefore) && (normalizedTime <= 1.0f || mFillAfter)) {
899 if (mFillEnabled) normalizedTime = Math.max(Math.min(normalizedTime, 1.0f), 0.0f)
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
dtitvfmt.h     [all...]
  /frameworks/av/include/media/
VolumeShaper.h 402 * normalizedTime always increases as time or framecount increases.
403 * normalizedTime is nominally from MIN_CURVE_TIME to MAX_CURVE_TIME when
406 * is computed as MAX_CURVE_TIME - normalizedTime, clamped to
409 void setNormalizedTime(S normalizedTime) {
411 ? MAX_CURVE_TIME - normalizedTime : normalizedTime);
692 S normalizedTime = (getFlags() & VolumeShaper::Operation::FLAG_REVERSE) != 0 ?
695 - static_cast<double>(normalizedTime) / scale));
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
DateIntervalFormat.java     [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DateIntervalFormat.java     [all...]
  /prebuilts/misc/common/robolectric/android-all/
android-all-8.0.0_r4-robolectric-0.jar 
android-all-o-preview-4-robolectric-0.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
icu4j-53.1.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
icu4j-53.1.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
icu4j-53.1.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
icu4j-53.1.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/
icu4j-53.1.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/
icu4j-54.1.1.jar 

Completed in 693 milliseconds