Home
last modified time | relevance | path

Searched refs:jkfs (Results 1 – 6 of 6) sorted by relevance

/external/skia/modules/skottie/src/animator/
DKeyframeAnimator.cpp92 const skjson::ArrayValue& jkfs) { in parseKeyframes() argument
132 if (!parsed && i > 0 && i == jkfs.size() - 1) { in parseKeyframes()
133 const skjson::ObjectValue* prev_kf = jkfs[i - 1]; in parseKeyframes()
143 fKFs.reserve(jkfs.size()); in parseKeyframes()
145 for (size_t i = 0; i < jkfs.size(); ++i) { in parseKeyframes()
146 const skjson::ObjectValue* jkf = jkfs[i]; in parseKeyframes()
180 SkASSERT(fKFs.size() == jkfs.size()); in parseKeyframes()
DAnimator.cpp81 const skjson::ArrayValue* jkfs = jpropK; in bindImpl() local
82 if (jkfs && jkfs->size() > 0) { in bindImpl()
83 animator = builder.make(abuilder, *jkfs); in bindImpl()
DTextKeyframeAnimator.cpp24 const skjson::ArrayValue& jkfs) override { in make() argument
25 SkASSERT(jkfs.size() > 0); in make()
27 fValues.reserve(jkfs.size()); in make()
28 if (!this->parseKeyframes(abuilder, jkfs)) { in make()
DVectorKeyframeAnimator.cpp153 const skjson::ArrayValue& jkfs) { in make() argument
154 SkASSERT(jkfs.size() > 0); in make()
157 const skjson::ObjectValue* jkf0 = jkfs[0]; in make()
164 const auto total_size = safe.mul(fVecLen, jkfs.size()); in make()
172 if (!this->parseKeyframes(abuilder, jkfs)) { in make()
177 SkASSERT(fCurrentVec <= jkfs.size()); in make()
DScalarKeyframeAnimator.cpp25 const skjson::ArrayValue& jkfs) override { in make() argument
26 SkASSERT(jkfs.size() > 0); in make()
27 if (!this->parseKeyframes(abuilder, jkfs)) { in make()
DVec2KeyframeAnimator.cpp36 const skjson::ArrayValue& jkfs) override { in make() argument
37 SkASSERT(jkfs.size() > 0); in make()
39 fValues.reserve(jkfs.size()); in make()
40 if (!this->parseKeyframes(abuilder, jkfs)) { in make()