Home
last modified time | relevance | path

Searched refs:ofFloat (Results 1 – 25 of 101) sorted by relevance

12345

/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
DRadialSelectorView.java334 kf0 = Keyframe.ofFloat(0f, 1); in getDisappearAnimator()
335 kf1 = Keyframe.ofFloat(midwayPoint, mTransitionMidRadiusMultiplier); in getDisappearAnimator()
336 kf2 = Keyframe.ofFloat(1f, mTransitionEndRadiusMultiplier); in getDisappearAnimator()
340 kf0 = Keyframe.ofFloat(0f, 1f); in getDisappearAnimator()
341 kf1 = Keyframe.ofFloat(1f, 0f); in getDisappearAnimator()
371 kf0 = Keyframe.ofFloat(0f, mTransitionEndRadiusMultiplier); in getReappearAnimator()
372 kf1 = Keyframe.ofFloat(delayPoint, mTransitionEndRadiusMultiplier); in getReappearAnimator()
373 kf2 = Keyframe.ofFloat(midwayPoint, mTransitionMidRadiusMultiplier); in getReappearAnimator()
374 kf3 = Keyframe.ofFloat(1f, 1); in getReappearAnimator()
378 kf0 = Keyframe.ofFloat(0f, 0f); in getReappearAnimator()
[all …]
DRadialTextsView.java295 kf0 = Keyframe.ofFloat(0f, 1); in renderAnimations()
296 kf1 = Keyframe.ofFloat(midwayPoint, mTransitionMidRadiusMultiplier); in renderAnimations()
297 kf2 = Keyframe.ofFloat(1f, mTransitionEndRadiusMultiplier); in renderAnimations()
301 kf0 = Keyframe.ofFloat(0f, 1f); in renderAnimations()
302 kf1 = Keyframe.ofFloat(1f, 0f); in renderAnimations()
318 kf0 = Keyframe.ofFloat(0f, mTransitionEndRadiusMultiplier); in renderAnimations()
319 kf1 = Keyframe.ofFloat(delayPoint, mTransitionEndRadiusMultiplier); in renderAnimations()
320 kf2 = Keyframe.ofFloat(midwayPoint, mTransitionMidRadiusMultiplier); in renderAnimations()
321 kf3 = Keyframe.ofFloat(1f, 1); in renderAnimations()
325 kf0 = Keyframe.ofFloat(0f, 0f); in renderAnimations()
[all …]
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/
DUtils.java127 Keyframe k0 = Keyframe.ofFloat(0f, 1f); in getPulseAnimator()
128 Keyframe k1 = Keyframe.ofFloat(0.275f, decreaseRatio); in getPulseAnimator()
129 Keyframe k2 = Keyframe.ofFloat(0.69f, increaseRatio); in getPulseAnimator()
130 Keyframe k3 = Keyframe.ofFloat(1f, 1f); in getPulseAnimator()
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
DKeyguardWidgetCarousel.java172 alpha = PropertyValuesHolder.ofFloat("contentAlpha", 1.0f);
173 outlineAlpha = PropertyValuesHolder.ofFloat("backgroundAlpha",
175 rotationY = PropertyValuesHolder.ofFloat("rotationY", 0f);
248 alpha = PropertyValuesHolder.ofFloat("contentAlpha", finalAlpha);
249 outlineAlpha = PropertyValuesHolder.ofFloat("backgroundAlpha", finalOutlineAlpha);
250 pivotX = PropertyValuesHolder.ofFloat("pivotX", mTmpTransform[0]);
251 pivotY = PropertyValuesHolder.ofFloat("pivotY", mTmpTransform[1]);
252 rotationY = PropertyValuesHolder.ofFloat("rotationY", mTmpTransform[2]);
DPasswordTextView.java535 widthAnimator = ValueAnimator.ofFloat(currentWidthFactor, 0.0f); in startWidthDisappearAnimation()
547 textAnimator = ValueAnimator.ofFloat(currentTextSizeFactor, 0.0f); in startTextDisappearAnimation()
559 ValueAnimator animator = ValueAnimator.ofFloat(currentDotSizeFactor, 0.0f); in startDotDisappearAnimation()
573 widthAnimator = ValueAnimator.ofFloat(currentWidthFactor, 1.0f); in startWidthAppearAnimation()
583 textAnimator = ValueAnimator.ofFloat(currentTextSizeFactor, 1.0f); in startTextAppearAnimation()
593 textTranslateAnimator = ValueAnimator.ofFloat(1.0f, 0.0f); in startTextAppearAnimation()
606 ValueAnimator overShootAnimator = ValueAnimator.ofFloat(currentDotSizeFactor, in startDotAppearAnimation()
613 ValueAnimator settleBackAnimator = ValueAnimator.ofFloat(DOT_OVERSHOOT_FACTOR, in startDotAppearAnimation()
624 ValueAnimator growAnimator = ValueAnimator.ofFloat(currentDotSizeFactor, 1.0f); in startDotAppearAnimation()
DKeyguardSecurityViewHelper.java37 Animator anim = ObjectAnimator.ofFloat(ecaView, "alpha", 0f); in showBouncer()
77 Animator anim = ObjectAnimator.ofFloat(ecaView, "alpha", 1f); in hideBouncer()
DKeyguardMessageArea.java202 Animator anim = ObjectAnimator.ofFloat(this, "alpha", 0f); in hideMessage()
223 Animator anim = ObjectAnimator.ofFloat(this, "alpha", 1f); in showMessage()
/frameworks/base/core/java/android/animation/
DKeyframeSet.java82 public static KeyframeSet ofFloat(float... values) { in ofFloat() method in KeyframeSet
87 keyframes[0] = (FloatKeyframe) Keyframe.ofFloat(0f); in ofFloat()
88 keyframes[1] = (FloatKeyframe) Keyframe.ofFloat(1f, values[0]); in ofFloat()
93 keyframes[0] = (FloatKeyframe) Keyframe.ofFloat(0f, values[0]); in ofFloat()
96 (FloatKeyframe) Keyframe.ofFloat((float) i / (numKeyframes - 1), values[i]); in ofFloat()
DObjectAnimator.java411 public static ObjectAnimator ofFloat(Object target, String propertyName, float... values) { in ofFloat() method in ObjectAnimator
434 public static ObjectAnimator ofFloat(Object target, String xPropertyName, String yPropertyName, in ofFloat() method in ObjectAnimator
456 public static <T> ObjectAnimator ofFloat(T target, Property<T, Float> property, in ofFloat() method in ObjectAnimator
476 public static <T> ObjectAnimator ofFloat(T target, Property<T, Float> xProperty, in ofFloat() method in ObjectAnimator
728 setValues(PropertyValuesHolder.ofFloat(mProperty, values)); in setFloatValues()
730 setValues(PropertyValuesHolder.ofFloat(mPropertyName, values)); in setFloatValues()
DKeyframe.java114 public static Keyframe ofFloat(float fraction, float value) { in ofFloat() method in Keyframe
130 public static Keyframe ofFloat(float fraction) { in ofFloat() method in Keyframe
/frameworks/base/graphics/java/android/graphics/drawable/
DRipple.java292 final ObjectAnimator radius = ObjectAnimator.ofFloat(this, "radiusGravity", 1); in enter()
298 final ObjectAnimator cX = ObjectAnimator.ofFloat(this, "xGravity", 1); in enter()
304 final ObjectAnimator cY = ObjectAnimator.ofFloat(this, "yGravity", 1); in enter()
457 final ObjectAnimator radiusAnim = ObjectAnimator.ofFloat(this, "radiusGravity", 1); in exitSoftware()
462 final ObjectAnimator xAnim = ObjectAnimator.ofFloat(this, "xGravity", 1); in exitSoftware()
467 final ObjectAnimator yAnim = ObjectAnimator.ofFloat(this, "yGravity", 1); in exitSoftware()
472 final ObjectAnimator opacityAnim = ObjectAnimator.ofFloat(this, "opacity", 0); in exitSoftware()
DRippleBackground.java212 final ObjectAnimator opacity = ObjectAnimator.ofFloat(this, "outerOpacity", 0, 1); in enter()
352 outerOpacityAnim = ObjectAnimator.ofFloat(this, in exitSoftware()
364 final ObjectAnimator outerFadeOutAnim = ObjectAnimator.ofFloat( in exitSoftware()
385 outerOpacityAnim = ObjectAnimator.ofFloat(this, "outerOpacity", 0); in exitSoftware()
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DViewLayersActivity.java53 final ObjectAnimator moveRight = ObjectAnimator.ofFloat(leftList, in onCreate()
59 final ObjectAnimator moveLeft = ObjectAnimator.ofFloat(rightList, in onCreate()
65 final ObjectAnimator rotate = ObjectAnimator.ofFloat(middleList, in onCreate()
DAnimated3dActivity.java45 ObjectAnimator animator = ObjectAnimator.ofFloat(view, "rotationY", 0.0f, 360.0f); in onCreate()
/frameworks/base/core/tests/coretests/src/android/animation/
DAnimatorSetEventsTest.java32 ObjectAnimator xAnim = ObjectAnimator.ofFloat(this, "translationX", 0, 100);
33 ObjectAnimator yAnim = ObjectAnimator.ofFloat(this, "translationY", 0, 100);
DValueAnimatorEventsTest.java25 mAnimator = ValueAnimator.ofFloat(0, 1); in setUp()
DObjectAnimatorEventsTest.java31 mAnimator = ObjectAnimator.ofFloat(button, "translationX", 0, 100); in setUp()
DAutoCancelTest.java45 returnVal = ObjectAnimator.ofFloat(this, properties[0], 0, 1); in setupAnimator()
49 pvhArray[i] = PropertyValuesHolder.ofFloat(properties[i], 0, 1); in setupAnimator()
/frameworks/base/core/java/com/android/internal/widget/
DAbsActionBarView.java150 ObjectAnimator anim = ObjectAnimator.ofFloat(this, "alpha", 1); in animateToVisibility()
155 ObjectAnimator splitAnim = ObjectAnimator.ofFloat(mMenuView, "alpha", 1); in animateToVisibility()
165 ObjectAnimator anim = ObjectAnimator.ofFloat(this, "alpha", 0); in animateToVisibility()
170 ObjectAnimator splitAnim = ObjectAnimator.ofFloat(mMenuView, "alpha", 0); in animateToVisibility()
/frameworks/base/docs/html/training/animation/
Dzoom.jd260 .play(ObjectAnimator.ofFloat(expandedImageView, View.X,
262 .with(ObjectAnimator.ofFloat(expandedImageView, View.Y,
264 .with(ObjectAnimator.ofFloat(expandedImageView, View.SCALE_X,
265 startScale, 1f)).with(ObjectAnimator.ofFloat(expandedImageView,
298 .ofFloat(expandedImageView, View.X, startBounds.left))
300 .ofFloat(expandedImageView,
303 .ofFloat(expandedImageView,
306 .ofFloat(expandedImageView,
/frameworks/base/core/java/android/widget/
DStackView.java256 PropertyValuesHolder slideInY = PropertyValuesHolder.ofFloat("YProgress", 0.0f); in transformViewForTransition()
257 PropertyValuesHolder slideInX = PropertyValuesHolder.ofFloat("XProgress", 0.0f); in transformViewForTransition()
276 PropertyValuesHolder slideOutY = PropertyValuesHolder.ofFloat("YProgress", 1.0f); in transformViewForTransition()
277 PropertyValuesHolder slideOutX = PropertyValuesHolder.ofFloat("XProgress", 0.0f); in transformViewForTransition()
353 … PropertyValuesHolder translationX = PropertyValuesHolder.ofFloat("translationX", transX); in transformViewAtIndex()
354 … PropertyValuesHolder translationY = PropertyValuesHolder.ofFloat("translationY", transY); in transformViewAtIndex()
355 PropertyValuesHolder scalePropX = PropertyValuesHolder.ofFloat("scaleX", scale); in transformViewAtIndex()
356 PropertyValuesHolder scalePropY = PropertyValuesHolder.ofFloat("scaleY", scale); in transformViewAtIndex()
865 … PropertyValuesHolder snapBackY = PropertyValuesHolder.ofFloat("YProgress", finalYProgress);
866 PropertyValuesHolder snapBackX = PropertyValuesHolder.ofFloat("XProgress", 0.0f);
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DDessertCaseView.java422 ObjectAnimator.ofFloat(v, View.SCALE_X, (float) scale),
423 ObjectAnimator.ofFloat(v, View.SCALE_Y, (float) scale)
430 ObjectAnimator.ofFloat(v, View.ROTATION, rot),
431 ObjectAnimator.ofFloat(v, View.X, i* mCellSize + (scale-1) * mCellSize /2),
432 ObjectAnimator.ofFloat(v, View.Y, j* mCellSize + (scale-1) * mCellSize /2)
DSearchPanelCircleView.java189 mCircleAnimator = ValueAnimator.ofFloat(mCircleSize, circleSize); in setCircleSize()
266 mOffsetAnimator = ValueAnimator.ofFloat(mOffset, offset); in setOffset()
403 mFadeOutAnimator = ValueAnimator.ofFloat(mBackgroundPaint.getAlpha() / 255.0f, 0.0f);
556 ValueAnimator animator = ValueAnimator.ofFloat(0.0f, 1.0f); in start()
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
DTweener.java84 props.add(PropertyValuesHolder.ofFloat(key, in to()
91 props.add(PropertyValuesHolder.ofFloat(key, floatValue)); in to()
/frameworks/base/core/java/android/transition/
DRotate.java55 return ObjectAnimator.ofFloat(view, View.ROTATION, in createAnimator()

12345