Home
last modified time | relevance | path

Searched refs:resolveKeyPath (Results 1 – 18 of 18) sorted by relevance

/external/lottie/lottie/src/main/java/com/airbnb/lottie/animation/content/
DRepeaterContent.java131 @Override public void resolveKeyPath( in resolveKeyPath() method in RepeaterContent
133 MiscUtils.resolveKeyPath(keyPath, depth, accumulator, currentPartialKeyPath, this); in resolveKeyPath()
DEllipseContent.java119 @Override public void resolveKeyPath( in resolveKeyPath() method in EllipseContent
121 MiscUtils.resolveKeyPath(keyPath, depth, accumulator, currentPartialKeyPath, this); in resolveKeyPath()
DRectangleContent.java165 public void resolveKeyPath(KeyPath keyPath, int depth, List<KeyPath> accumulator, in resolveKeyPath() method in RectangleContent
167 MiscUtils.resolveKeyPath(keyPath, depth, accumulator, currentPartialKeyPath, this); in resolveKeyPath()
DFillContent.java148 @Override public void resolveKeyPath( in resolveKeyPath() method in FillContent
150 MiscUtils.resolveKeyPath(keyPath, depth, accumulator, currentPartialKeyPath, this); in resolveKeyPath()
DContentGroup.java222 @Override public void resolveKeyPath( in resolveKeyPath() method in ContentGroup
242 element.resolveKeyPath(keyPath, newDepth, accumulator, currentPartialKeyPath); in resolveKeyPath()
DPolystarContent.java307 @Override public void resolveKeyPath( in resolveKeyPath() method in PolystarContent
309 MiscUtils.resolveKeyPath(keyPath, depth, accumulator, currentPartialKeyPath, this); in resolveKeyPath()
DGradientFillContent.java256 @Override public void resolveKeyPath( in resolveKeyPath() method in GradientFillContent
258 MiscUtils.resolveKeyPath(keyPath, depth, accumulator, currentPartialKeyPath, this); in resolveKeyPath()
DBaseStrokeContent.java343 @Override public void resolveKeyPath( in resolveKeyPath() method in BaseStrokeContent
345 MiscUtils.resolveKeyPath(keyPath, depth, accumulator, currentPartialKeyPath, this); in resolveKeyPath()
/external/lottie/lottie/src/main/java/com/airbnb/lottie/model/
DKeyPathElement.java33 void resolveKeyPath( in resolveKeyPath() method
/external/lottie/lottie/src/main/java/com/airbnb/lottie/model/layer/
DShapeLayer.java63 contentGroup.resolveKeyPath(keyPath, depth, accumulator, currentPartialKeyPath); in resolveChildKeyPath()
DCompositionLayer.java208 layers.get(i).resolveKeyPath(keyPath, depth, accumulator, currentPartialKeyPath); in resolveChildKeyPath()
DBaseLayer.java630 public void resolveKeyPath( in resolveKeyPath() method in BaseLayer
/external/lottie/sample/src/main/kotlin/com/airbnb/lottie/samples/
DDynamicActivity.kt48 binding.animationView.resolveKeyPath(KeyPath("**")).forEach { in <lambda>()
DPlayerFragment.kt438 … binding.animationView.resolveKeyPath(KeyPath("**")).forEachIndexed { index, keyPath -> in <lambda>()
/external/lottie/lottie/src/main/java/com/airbnb/lottie/utils/
DMiscUtils.java105 public static void resolveKeyPath(KeyPath keyPath, int depth, List<KeyPath> accumulator, in resolveKeyPath() method in MiscUtils
/external/lottie/lottie/src/main/java/com/airbnb/lottie/
DLottieDrawable.java1086 public List<KeyPath> resolveKeyPath(KeyPath keyPath) { in resolveKeyPath() method in LottieDrawable
1092 compositionLayer.resolveKeyPath(keyPath, 0, keyPaths, new KeyPath()); in resolveKeyPath()
1117 List<KeyPath> elements = resolveKeyPath(keyPath); in addValueCallback()
DLottieAnimationView.java922 public List<KeyPath> resolveKeyPath(KeyPath keyPath) { in resolveKeyPath() method in LottieAnimationView
923 return lottieDrawable.resolveKeyPath(keyPath); in resolveKeyPath()
/external/lottie/lottie/src/test/java/com/airbnb/lottie/
DKeyPathTest.java123 List<KeyPath> resolvedKeyPaths = lottieDrawable.resolveKeyPath(keyPath); in assertSize()