Searched refs:refId (Results 1 – 9 of 9) sorted by relevance
/external/skia/modules/skottie/src/ |
D | Composition.cpp | 24 const auto refId = ParseDefault<SkString>(jlayer["refId"], SkString()); in ScopedAssetRef() local 25 if (refId.isEmpty()) { in ScopedAssetRef() 30 const auto* asset_info = abuilder->fAssets.find(refId); in ScopedAssetRef() 32 abuilder->log(Logger::Level::kError, nullptr, "Asset not found: '%s'.", refId.c_str()); in ScopedAssetRef() 38 "Asset cycle detected for: '%s'", refId.c_str()); in ScopedAssetRef()
|
D | SkottieTest.cpp | 763 "refId": "single_frame", in DEF_TEST() 771 "refId": "multi_frame", in DEF_TEST()
|
/external/smali/smalidea/src/test/java/org/jf/smalidea/findUsages/ |
D | UsageTypeTest.java | 42 int refId = entry.getKey(); in doTest() local 55 Assert.assertSame(expectedUsageTypesMap.get(refId), usageType); in doTest() 56 expectedUsageTypesMap.remove(refId); in doTest() 67 int refId = Integer.parseInt(m.group(2)); in getRefIndexes() local 68 refIndexes.put(refId, m.start() - correction); in getRefIndexes()
|
/external/lottie/lottie/src/main/java/com/airbnb/lottie/model/layer/ |
D | Layer.java | 42 @Nullable private final String refId; field in Layer 60 LayerType layerType, long parentId, @Nullable String refId, List<Mask> masks, in Layer() argument 72 this.refId = refId; in Layer() 115 return refId; in getRefId()
|
D | ImageLayer.java | 62 String refId = layerModel.getRefId(); in getBitmap() local 63 return lottieDrawable.getImageAsset(refId); in getBitmap()
|
/external/skqp/modules/skottie/src/ |
D | SkottieLayer.cpp | 245 const auto refId = ParseDefault<SkString>(jlayer["refId"], SkString()); in attachAssetRef() local 246 if (refId.isEmpty()) { in attachAssetRef() 251 if (refId.startsWith("$")) { in attachAssetRef() 252 return this->attachNestedAnimation(refId.c_str() + 1, ascope); in attachAssetRef() 255 const auto* asset_info = fAssets.find(refId); in attachAssetRef() 257 this->log(Logger::Level::kError, nullptr, "Asset not found: '%s'.", refId.c_str()); in attachAssetRef() 263 "Asset cycle detected for: '%s'", refId.c_str()); in attachAssetRef()
|
/external/skia/modules/skottie/tests/ |
D | AudioLayer.cpp | 37 "refId": "audio_0" in DEF_TEST() 44 "refId": "audio_0" in DEF_TEST()
|
D | Image.cpp | 35 "refId": "img_0", in DEF_TEST()
|
/external/lottie/lottie/src/main/java/com/airbnb/lottie/parser/ |
D | LayerParser.java | 75 String refId = null; in parse() local 109 refId = reader.nextString(); in parse() 264 return new Layer(shapes, composition, layerName, layerId, layerType, parentId, refId, in parse()
|