Home
last modified time | relevance | path

Searched refs:KeyframeSet (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/core/java/android/animation/
DKeyframeSet.java34 class KeyframeSet implements Keyframes { class
45 public KeyframeSet(Keyframe... keyframes) { in KeyframeSet() method in KeyframeSet
66 public static KeyframeSet ofInt(int... values) { in ofInt()
82 public static KeyframeSet ofFloat(float... values) { in ofFloat()
108 public static KeyframeSet ofKeyframe(Keyframe... keyframes) { in ofKeyframe()
136 return new KeyframeSet(keyframes); in ofKeyframe()
140 public static KeyframeSet ofObject(Object... values) { in ofObject()
152 return new KeyframeSet(keyframes); in ofObject()
181 public KeyframeSet clone() { in clone()
188 KeyframeSet newSet = new KeyframeSet(newKeyframes); in clone()
DPropertyValuesHolder.java219 Keyframes keyframes = KeyframeSet.ofPath(path); in ofMultiInt()
264 KeyframeSet keyframeSet = KeyframeSet.ofKeyframe(values); in ofMultiInt()
337 Keyframes keyframes = KeyframeSet.ofPath(path); in ofMultiFloat()
381 KeyframeSet keyframeSet = KeyframeSet.ofKeyframe(values); in ofMultiFloat()
424 pvh.mKeyframes = KeyframeSet.ofPath(path); in ofObject()
497 pvh.mKeyframes = KeyframeSet.ofPath(path); in ofObject()
523 KeyframeSet keyframeSet = KeyframeSet.ofKeyframe(values); in ofKeyframe()
544 KeyframeSet keyframeSet = KeyframeSet.ofKeyframe(values); in ofKeyframe()
590 mKeyframes = KeyframeSet.ofInt(values); in setIntValues()
608 mKeyframes = KeyframeSet.ofFloat(values); in setFloatValues()
[all …]
DObjectAnimator.java242 PathKeyframes keyframes = KeyframeSet.ofPath(path); in ofInt()
283 PathKeyframes keyframes = KeyframeSet.ofPath(path); in ofInt()
436 PathKeyframes keyframes = KeyframeSet.ofPath(path); in ofFloat()
478 PathKeyframes keyframes = KeyframeSet.ofPath(path); in ofFloat()
DFloatKeyframeSet.java34 class FloatKeyframeSet extends KeyframeSet implements Keyframes.FloatKeyframes {
DIntKeyframeSet.java34 class IntKeyframeSet extends KeyframeSet implements Keyframes.IntKeyframes {
DLayoutTransition.java902 if (pvh.mKeyframes instanceof KeyframeSet) { in setupChangeAnimation()
903 KeyframeSet keyframeSet = (KeyframeSet) pvh.mKeyframes; in setupChangeAnimation()
DAnimatorInflater.java431 PathKeyframes keyframeSet = KeyframeSet.ofPath(path, error); in setupObjectAnimator()
/frameworks/base/
Dpreloaded-classes191 android.animation.KeyframeSet