/external/lottie/LottieSample/src/androidTest/java/com/airbnb/lottie/samples/ |
D | LottieTest.kt | 20 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/ |
D | KeyPath.java | 43 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()
|
D | KeyPathElement.java | 34 KeyPath keyPath, int depth, List<KeyPath> accumulator, KeyPath currentPartialKeyPath); in resolveKeyPath()
|
/external/lottie/LottieSample/src/main/kotlin/com/airbnb/lottie/samples/ |
D | DynamicActivity.kt | 8 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>()
|
D | BullseyeActivity.kt | 9 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()
|
D | PlayerFragment.kt | 21 import com.airbnb.lottie.model.KeyPath in <lambda>() 444 animationView.resolveKeyPath(KeyPath("**")).forEachIndexed { index, keyPath -> in <lambda>()
|
/external/llvm-project/llvm/unittests/Option/ |
D | OptionMarshallingTest.cpp | 13 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/ |
D | ShapeLayer.java | 11 import com.airbnb.lottie.model.KeyPath; 39 protected void resolveChildKeyPath(KeyPath keyPath, int depth, List<KeyPath> accumulator, in resolveChildKeyPath() 40 KeyPath currentPartialKeyPath) { in resolveChildKeyPath()
|
D | CompositionLayer.java | 14 import com.airbnb.lottie.model.KeyPath; 190 protected void resolveChildKeyPath(KeyPath keyPath, int depth, List<KeyPath> accumulator, in resolveChildKeyPath() 191 KeyPath currentPartialKeyPath) { in resolveChildKeyPath()
|
D | BaseLayer.java | 18 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/ |
D | MiscUtils.java | 9 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/ |
D | EllipseContent.java | 11 import com.airbnb.lottie.model.KeyPath; 120 KeyPath keyPath, int depth, List<KeyPath> accumulator, KeyPath currentPartialKeyPath) { in resolveKeyPath()
|
D | RepeaterContent.java | 13 import com.airbnb.lottie.model.KeyPath; 130 KeyPath keyPath, int depth, List<KeyPath> accumulator, KeyPath currentPartialKeyPath) { in resolveKeyPath()
|
D | FillContent.java | 18 import com.airbnb.lottie.model.KeyPath; 119 KeyPath keyPath, int depth, List<KeyPath> accumulator, KeyPath currentPartialKeyPath) { in resolveKeyPath()
|
D | RectangleContent.java | 11 import com.airbnb.lottie.model.KeyPath; 158 public void resolveKeyPath(KeyPath keyPath, int depth, List<KeyPath> accumulator, in resolveKeyPath() 159 KeyPath currentPartialKeyPath) { in resolveKeyPath()
|
D | ContentGroup.java | 13 import com.airbnb.lottie.model.KeyPath; 223 KeyPath keyPath, int depth, List<KeyPath> accumulator, KeyPath currentPartialKeyPath) { in resolveKeyPath()
|
D | GradientFillContent.java | 23 import com.airbnb.lottie.model.KeyPath; 228 KeyPath keyPath, int depth, List<KeyPath> accumulator, KeyPath currentPartialKeyPath) { in resolveKeyPath()
|
D | PolystarContent.java | 10 import com.airbnb.lottie.model.KeyPath; 302 KeyPath keyPath, int depth, List<KeyPath> accumulator, KeyPath currentPartialKeyPath) { in resolveKeyPath()
|
D | BaseStrokeContent.java | 22 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/ |
D | KeyPathTest.java | 5 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/ |
D | LottieDrawable.java | 28 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,
|
D | LottieAnimationView.java | 28 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/ |
D | GlifLoadingLayout.java | 55 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/ |
D | OptParserEmitter.cpp | 69 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/ |
D | OptParser.td | 100 code KeyPath = ?; 149 !strconcat(accumulator, " || ", !cast<string>(option.KeyPath))); 154 code KeyPath = keypath;
|