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

  /frameworks/base/core/java/android/animation/
KeyframeSet.java 30 class KeyframeSet {
41 public KeyframeSet(Keyframe... keyframes) {
50 public static KeyframeSet ofInt(int... values) {
65 public static KeyframeSet ofFloat(float... values) {
80 public static KeyframeSet ofKeyframe(Keyframe... keyframes) {
81 // if all keyframes of same primitive type, create the appropriate KeyframeSet
108 return new KeyframeSet(keyframes);
112 public static KeyframeSet ofObject(Object... values) {
124 return new KeyframeSet(keyframes);
140 public KeyframeSet clone()
    [all...]
PropertyValuesHolder.java 75 KeyframeSet mKeyframeSet = null;
249 KeyframeSet keyframeSet = KeyframeSet.ofKeyframe(values);
250 if (keyframeSet instanceof IntKeyframeSet) {
251 return new IntPropertyValuesHolder(propertyName, (IntKeyframeSet) keyframeSet);
252 } else if (keyframeSet instanceof FloatKeyframeSet) {
253 return new FloatPropertyValuesHolder(propertyName, (FloatKeyframeSet) keyframeSet);
257 pvh.mKeyframeSet = keyframeSet;
280 KeyframeSet keyframeSet = KeyframeSet.ofKeyframe(values)
    [all...]
FloatKeyframeSet.java 28 * <p>This type-specific subclass of KeyframeSet, along with the other type-specific subclass for
33 class FloatKeyframeSet extends KeyframeSet {
IntKeyframeSet.java 28 * <p>This type-specific subclass of KeyframeSet, along with the other type-specific subclass for
33 class IntKeyframeSet extends KeyframeSet {
LayoutTransition.java     [all...]

Completed in 72 milliseconds