Home
last modified time | relevance | path

Searched refs:KeyPath (Results 1 – 25 of 29) sorted by relevance

12

/external/lottie/LottieSample/src/androidTest/java/com/airbnb/lottie/samples/
DLottieTest.kt20 import com.airbnb.lottie.model.KeyPath in <lambda>()
445 KeyPath("Shape Layer 1", "Rectangle", "Fill 1"), in <lambda>()
451 KeyPath("Shape Layer 1", "Rectangle", "Fill 1"), in <lambda>()
457 KeyPath("Shape Layer 1", "Rectangle", "Fill 1"), in <lambda>()
463 KeyPath("Shape Layer 1", "Rectangle", "Stroke 1"), in <lambda>()
469 KeyPath("Shape Layer 1", "Rectangle", "Stroke 1"), in <lambda>()
475 KeyPath("Shape Layer 1", "Rectangle", "Stroke 1"), in <lambda>()
481 KeyPath("Shape Layer 1", "Rectangle"), in <lambda>()
487 KeyPath("Shape Layer 1", "Rectangle"), in <lambda>()
493 KeyPath("Shape Layer 1", "Rectangle"), in <lambda>()
[all …]
/external/lottie/lottie/src/main/java/com/airbnb/lottie/model/
DKeyPath.java43 public class KeyPath { class
48 public KeyPath(String... keys) { in KeyPath() method in KeyPath
55 private KeyPath(KeyPath keyPath) { in KeyPath() method in KeyPath
69 public KeyPath addKey(String key) { in addKey()
70 KeyPath newKeyPath = new KeyPath(this); in addKey()
79 public KeyPath resolve(KeyPathElement element) { in resolve()
80 KeyPath keyPath = new KeyPath(this); in resolve()
DKeyPathElement.java34 KeyPath keyPath, int depth, List<KeyPath> accumulator, KeyPath currentPartialKeyPath); in resolveKeyPath()
/external/lottie/LottieSample/src/main/kotlin/com/airbnb/lottie/samples/
DDynamicActivity.kt8 import com.airbnb.lottie.model.KeyPath in <lambda>()
48 animationView.resolveKeyPath(KeyPath("**")).forEach { in <lambda>()
60 animationView.addValueCallback(KeyPath("LeftArmWave"), in <lambda>()
65 val shirt = KeyPath("Shirt", "Group 5", "Fill 1") in <lambda>()
66 val leftArm = KeyPath("LeftArmWave", "LeftArm", "Group 6", "Fill 1") in <lambda>()
67 val rightArm = KeyPath("RightArm", "Group 6", "Fill 1") in <lambda>()
73 animationView.addValueCallback(KeyPath("Body"), in <lambda>()
DBullseyeActivity.kt9 import com.airbnb.lottie.model.KeyPath
20 …animationView.addValueCallback(KeyPath("First"), LottieProperty.TRANSFORM_POSITION, largeValueCall… in onCreate()
23 …animationView.addValueCallback(KeyPath("Fourth"), LottieProperty.TRANSFORM_POSITION, mediumValueCa… in onCreate()
26 …animationView.addValueCallback(KeyPath("Seventh"), LottieProperty.TRANSFORM_POSITION, smallValueCa… in onCreate()
DPlayerFragment.kt21 import com.airbnb.lottie.model.KeyPath in <lambda>()
444 animationView.resolveKeyPath(KeyPath("**")).forEachIndexed { index, keyPath -> in <lambda>()
/external/llvm-project/llvm/unittests/Option/
DOptionMarshallingTest.cpp13 const char *KeyPath; member
37 ASSERT_STREQ(MarshallingTable[0].KeyPath, "MarshalledFlagD"); in TEST()
38 ASSERT_STREQ(MarshallingTable[1].KeyPath, "MarshalledFlagC"); in TEST()
39 ASSERT_STREQ(MarshallingTable[2].KeyPath, "MarshalledFlagB"); in TEST()
40 ASSERT_STREQ(MarshallingTable[3].KeyPath, "MarshalledFlagA"); in TEST()
/external/lottie/lottie/src/main/java/com/airbnb/lottie/model/layer/
DShapeLayer.java11 import com.airbnb.lottie.model.KeyPath;
39 protected void resolveChildKeyPath(KeyPath keyPath, int depth, List<KeyPath> accumulator, in resolveChildKeyPath()
40 KeyPath currentPartialKeyPath) { in resolveChildKeyPath()
DCompositionLayer.java14 import com.airbnb.lottie.model.KeyPath;
190 protected void resolveChildKeyPath(KeyPath keyPath, int depth, List<KeyPath> accumulator, in resolveChildKeyPath()
191 KeyPath currentPartialKeyPath) { in resolveChildKeyPath()
DBaseLayer.java18 import com.airbnb.lottie.model.KeyPath;
565 KeyPath keyPath, int depth, List<KeyPath> accumulator, KeyPath currentPartialKeyPath) { in resolveKeyPath()
585 KeyPath keyPath, int depth, List<KeyPath> accumulator, KeyPath currentPartialKeyPath) { in resolveChildKeyPath()
/external/lottie/lottie/src/main/java/com/airbnb/lottie/utils/
DMiscUtils.java9 import com.airbnb.lottie.model.KeyPath;
100 public static void resolveKeyPath(KeyPath keyPath, int depth, List<KeyPath> accumulator, in resolveKeyPath()
101 KeyPath currentPartialKeyPath, KeyPathElementContent content) { in resolveKeyPath()
/external/lottie/lottie/src/main/java/com/airbnb/lottie/animation/content/
DEllipseContent.java11 import com.airbnb.lottie.model.KeyPath;
120 KeyPath keyPath, int depth, List<KeyPath> accumulator, KeyPath currentPartialKeyPath) { in resolveKeyPath()
DRepeaterContent.java13 import com.airbnb.lottie.model.KeyPath;
130 KeyPath keyPath, int depth, List<KeyPath> accumulator, KeyPath currentPartialKeyPath) { in resolveKeyPath()
DFillContent.java18 import com.airbnb.lottie.model.KeyPath;
119 KeyPath keyPath, int depth, List<KeyPath> accumulator, KeyPath currentPartialKeyPath) { in resolveKeyPath()
DRectangleContent.java11 import com.airbnb.lottie.model.KeyPath;
158 public void resolveKeyPath(KeyPath keyPath, int depth, List<KeyPath> accumulator, in resolveKeyPath()
159 KeyPath currentPartialKeyPath) { in resolveKeyPath()
DContentGroup.java13 import com.airbnb.lottie.model.KeyPath;
223 KeyPath keyPath, int depth, List<KeyPath> accumulator, KeyPath currentPartialKeyPath) { in resolveKeyPath()
DGradientFillContent.java23 import com.airbnb.lottie.model.KeyPath;
228 KeyPath keyPath, int depth, List<KeyPath> accumulator, KeyPath currentPartialKeyPath) { in resolveKeyPath()
DPolystarContent.java10 import com.airbnb.lottie.model.KeyPath;
302 KeyPath keyPath, int depth, List<KeyPath> accumulator, KeyPath currentPartialKeyPath) { in resolveKeyPath()
DBaseStrokeContent.java22 import com.airbnb.lottie.model.KeyPath;
304 KeyPath keyPath, int depth, List<KeyPath> accumulator, KeyPath currentPartialKeyPath) { in resolveKeyPath()
/external/lottie/lottie/src/test/java/com/airbnb/lottie/
DKeyPathTest.java5 import com.airbnb.lottie.model.KeyPath;
128 KeyPath keyPath = new KeyPath(keys); in assertSize()
129 List<KeyPath> resolvedKeyPaths = lottieDrawable.resolveKeyPath(keyPath); in assertSize()
/external/lottie/lottie/src/main/java/com/airbnb/lottie/
DLottieDrawable.java28 import com.airbnb.lottie.model.KeyPath;
938 public List<KeyPath> resolveKeyPath(KeyPath keyPath) {
943 List<KeyPath> keyPaths = new ArrayList<>();
944 compositionLayer.resolveKeyPath(keyPath, 0, keyPaths, new KeyPath());
956 final KeyPath keyPath, final T property, final LottieValueCallback<T> callback) {
971 List<KeyPath> elements = resolveKeyPath(keyPath);
995 public <T> void addValueCallback(KeyPath keyPath, T property,
DLottieAnimationView.java28 import com.airbnb.lottie.model.KeyPath;
194 KeyPath keyPath = new KeyPath("**"); in init()
828 public List<KeyPath> resolveKeyPath(KeyPath keyPath) { in resolveKeyPath()
839 public <T> void addValueCallback(KeyPath keyPath, T property, LottieValueCallback<T> callback) { in addValueCallback()
848 public <T> void addValueCallback(KeyPath keyPath, T property, in addValueCallback()
/external/setupdesign/lottie_loading_layout/src/com/google/android/setupdesign/
DGlifLoadingLayout.java55 import com.airbnb.lottie.model.KeyPath;
91 @VisibleForTesting Map<KeyPath, SimpleColorFilter> customizationMap = new HashMap<>();
586 public void addColorCallback(KeyPath keyPath, LottieValueCallback<ColorFilter> callback) { in addColorCallback()
594 public void addColorCallback(KeyPath keyPath, SimpleLottieValueCallback<ColorFilter> callback) { in addColorCallback()
615 new KeyPath(splitItem[0]), new SimpleColorFilter(Color.parseColor(splitItem[1]))); in loadCustomization()
628 for (KeyPath keyPath : customizationMap.keySet()) { in applyThemeCustomization()
/external/llvm-project/llvm/utils/TableGen/
DOptParserEmitter.cpp69 StringRef KeyPath; member in MarshallingInfo
107 OS << KeyPath; in emit()
163 Ret.KeyPath = R.getValueAsString("KeyPath"); in createMarshallingInfo()
/external/llvm-project/llvm/include/llvm/Option/
DOptParser.td100 code KeyPath = ?;
149 !strconcat(accumulator, " || ", !cast<string>(option.KeyPath)));
154 code KeyPath = keypath;

12