Home
last modified time | relevance | path

Searched refs:AnimatableGradientColorValue (Results 1 – 7 of 7) sorted by relevance

/external/lottie/lottie/src/test/java/com/airbnb/lottie/model/animatable/
DAnimatableGradientColorValueTest.java10 …assertArrayEquals(new float[]{1, 2}, AnimatableGradientColorValue.mergePositions(new float[]{1, 2}… in testMergeTheSame()
15 …assertArrayEquals(new float[]{1, 2, 3, 4}, AnimatableGradientColorValue.mergePositions(new float[]… in testMergeDifferent()
20 …assertArrayEquals(new float[]{1, 2, 3}, AnimatableGradientColorValue.mergePositions(new float[]{1,… in testMergeOneOverlap()
/external/lottie/lottie/src/main/java/com/airbnb/lottie/model/content/
DGradientFill.java12 import com.airbnb.lottie.model.animatable.AnimatableGradientColorValue;
21 private final AnimatableGradientColorValue gradientColor;
31 AnimatableGradientColorValue gradientColor, in GradientFill()
59 public AnimatableGradientColorValue getGradientColor() { in getGradientColor()
DGradientStroke.java10 import com.airbnb.lottie.model.animatable.AnimatableGradientColorValue;
21 private final AnimatableGradientColorValue gradientColor;
34 AnimatableGradientColorValue gradientColor, in GradientStroke()
63 public AnimatableGradientColorValue getGradientColor() { in getGradientColor()
/external/lottie/lottie/src/main/java/com/airbnb/lottie/parser/
DAnimatableValueParser.java7 import com.airbnb.lottie.model.animatable.AnimatableGradientColorValue;
66 static AnimatableGradientColorValue parseGradientColor( in parseGradientColor()
68 AnimatableGradientColorValue animatableGradientColorValue = new AnimatableGradientColorValue( in parseGradientColor()
DGradientFillParser.java6 import com.airbnb.lottie.model.animatable.AnimatableGradientColorValue;
39 AnimatableGradientColorValue color = null; in parse()
DGradientStrokeParser.java6 import com.airbnb.lottie.model.animatable.AnimatableGradientColorValue;
51 AnimatableGradientColorValue color = null; in parse()
/external/lottie/lottie/src/main/java/com/airbnb/lottie/model/animatable/
DAnimatableGradientColorValue.java12 public class AnimatableGradientColorValue extends BaseAnimatableValue<GradientColor, class
14 public AnimatableGradientColorValue(List<Keyframe<GradientColor>> keyframes) { in AnimatableGradientColorValue() method in AnimatableGradientColorValue