Home
last modified time | relevance | path

Searched refs:refId (Results 1 – 9 of 9) sorted by relevance

/external/skia/modules/skottie/src/
DComposition.cpp24 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()
DSkottieTest.cpp763 "refId": "single_frame", in DEF_TEST()
771 "refId": "multi_frame", in DEF_TEST()
/external/smali/smalidea/src/test/java/org/jf/smalidea/findUsages/
DUsageTypeTest.java42 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/
DLayer.java42 @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()
DImageLayer.java62 String refId = layerModel.getRefId(); in getBitmap() local
63 return lottieDrawable.getImageAsset(refId); in getBitmap()
/external/skqp/modules/skottie/src/
DSkottieLayer.cpp245 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/
DAudioLayer.cpp37 "refId": "audio_0" in DEF_TEST()
44 "refId": "audio_0" in DEF_TEST()
DImage.cpp35 "refId": "img_0", in DEF_TEST()
/external/lottie/lottie/src/main/java/com/airbnb/lottie/parser/
DLayerParser.java75 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()