HomeSort by relevance Sort by last modified time
    Searched full:endvalue (Results 51 - 75 of 117) sorted by null

1 23 4 5

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
StackScrollerDecorView.java 174 float endValue = nowVisible ? 1.0f : 0.0f;
176 view.setAlpha(endValue);
186 .alpha(endValue)
  /development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
InsertionListView.java 364 public Rect evaluate(float fraction, Rect startValue, Rect endValue) {
365 return new Rect(interpolate(startValue.left, endValue.left, fraction),
366 interpolate(startValue.top, endValue.top, fraction),
367 interpolate(startValue.right, endValue.right, fraction),
368 interpolate(startValue.bottom, endValue.bottom, fraction));
  /frameworks/base/core/java/com/android/internal/transition/
EpicenterTranslateClipReveal.java 265 public State evaluate(float fraction, State startValue, State endValue) {
266 mTemp.upper = startValue.upper + (int) ((endValue.upper - startValue.upper) * fraction);
267 mTemp.lower = startValue.lower + (int) ((endValue.lower - startValue.lower) * fraction);
268 mTemp.trans = startValue.trans + (int) ((endValue.trans - startValue.trans) * fraction);
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
CustomEvaluator.java 86 public Object evaluate(float fraction, Object startValue, Object endValue) {
88 XYHolder endXY = (XYHolder) endValue;
  /frameworks/base/core/java/android/animation/
PathKeyframes.java 146 private static float interpolate(float fraction, float startValue, float endValue) {
147 float diff = endValue - startValue;
PropertyValuesHolder.java     [all...]
  /frameworks/support/transition/src/main/java/androidx/transition/
TransitionUtils.java 164 public Matrix evaluate(float fraction, Matrix startValue, Matrix endValue) {
166 endValue.getValues(mTempEndValues);
ChangeImageTransform.java 56 public Matrix evaluate(float fraction, Matrix startValue, Matrix endValue) {
  /development/samples/devbytes/animation/ListViewDraggingAnimation/src/com/example/android/listviewdragginganimation/
DynamicListView.java 457 public Rect evaluate(float fraction, Rect startValue, Rect endValue) {
458 return new Rect(interpolate(startValue.left, endValue.left, fraction),
459 interpolate(startValue.top, endValue.top, fraction),
460 interpolate(startValue.right, endValue.right, fraction),
461 interpolate(startValue.bottom, endValue.bottom, fraction));
  /frameworks/support/navigation/ui/src/main/java/androidx/navigation/ui/
NavigationUI.java 301 float endValue = showAsDrawerIndicator ? 0f : 1f;
308 startValue, endValue);
311 mArrowDrawable.setProgress(endValue);
  /frameworks/base/core/java/android/transition/
TransitionUtils.java 206 public Matrix evaluate(float fraction, Matrix startValue, Matrix endValue) {
208 endValue.getValues(mTempEndValues);
ChangeImageTransform.java 55 public Matrix evaluate(float fraction, Matrix startValue, Matrix endValue) {
  /frameworks/support/leanback/kitkat/androidx/leanback/transition/
SlideKitkat.java 268 float terminalValue, float endValue, int finalVisibility) {
272 mEndValue = endValue;
  /frameworks/base/graphics/java/android/graphics/drawable/
AnimatedVectorDrawable.java     [all...]
  /cts/tests/tests/animation/src/android/animation/cts/
ObjectAnimatorTest.java 206 int endValue = 0;
207 int[] values = {startValue, endValue};
    [all...]
ValueAnimatorTest.java 415 public PointF evaluate(float fraction, PointF startValue, PointF endValue) {
416 tmpValue.x = fraction * startValue.x + (1f - fraction) * endValue.x;
417 tmpValue.y = fraction * startValue.y + (1f - fraction) * endValue.y;
  /frameworks/support/swiperefreshlayout/src/main/java/androidx/swiperefreshlayout/widget/
CircularProgressDrawable.java 473 private int evaluateColorChange(float fraction, int startValue, int endValue) {
479 int endA = (endValue >> 24) & 0xff;
480 int endR = (endValue >> 16) & 0xff;
481 int endG = (endValue >> 8) & 0xff;
482 int endB = endValue & 0xff;
  /packages/apps/TV/common/src/com/android/tv/common/ui/setup/animation/
SetupAnimationHelper.java 196 public Integer evaluate(float fraction, Integer startValue, Integer endValue) {
  /external/pdfium/core/fxcodec/codec/
fx_codec_jpx_unittest.cpp 34 const float endValue = 0.003f;
38 for (Float_t f = startValue; f.f < endValue; f.i++) {
  /frameworks/base/services/core/java/com/android/server/display/
ColorDisplayService.java 612 public float[] evaluate(float fraction, float[] startValue, float[] endValue) {
614 mResultMatrix[i] = MathUtils.lerp(startValue[i], endValue[i], fraction);
  /external/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp 162 const MachineOperand *Endvalue,
491 const MachineOperand *EndValue,
642 const MachineOperand *EndValue = nullptr;
646 EndValue = &Op2;
648 EndValue = &Op1;
653 if (!EndValue)
656 Cmp = getComparisonKind(CondOpc, InitialValue, EndValue, IVBump);
671 if (EndValue->isReg()) {
672 unsigned R = EndValue->getReg();
679 return computeCount(L, InitialValue, EndValue, IVReg, IVBump, Cmp)
    [all...]
  /device/linaro/bootloader/edk2/UefiCpuPkg/Universal/Acpi/S3Resume2Pei/
S3Resume.c 292 UINT64 EndValue;
301 Freq = GetPerformanceCounterProperties (&StartValue, &EndValue);
339 if (EndValue >= StartValue) {
    [all...]
  /external/libxml2/
relaxng.c 310 xmlChar *endvalue; /* the end value when operating on string */ member in struct:_xmlRelaxNGValidState
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
ViewState.java 406 float endValue) {
407 PropertyAnimator.startAnimation(view, property, endValue, NO_NEW_ANIMATIONS);
  /packages/apps/Launcher3/src/com/android/launcher3/
AutoInstallsLayout.java 640 private static String convertToDistanceFromEnd(String value, int endValue) {
644 return Integer.toString(endValue + x);

Completed in 1526 milliseconds

1 23 4 5