Lines Matching refs:frameNo
47 bool result(float frameNo, NumType& out, LottieExpression* exp) in result()
49 auto bm_rt = evaluate(frameNo, exp); in result()
55 out = (*prop)(frameNo); in result()
62 bool result(float frameNo, Point& out, LottieExpression* exp) in result()
64 auto bm_rt = evaluate(frameNo, exp); in result()
68 out = (*prop)(frameNo); in result()
82 bool result(float frameNo, RGB24& out, LottieExpression* exp) in result()
84 auto bm_rt = evaluate(frameNo, exp); in result()
88 out = (*color)(frameNo); in result()
105 bool result(float frameNo, Fill* fill, LottieExpression* exp) in result()
107 auto bm_rt = evaluate(frameNo, exp); in result()
111 (*colorStop)(frameNo, fill, this); in result()
118 …bool result(float frameNo, Array<PathCommand>& cmds, Array<Point>& pts, Matrix* transform, const L… in result()
120 auto bm_rt = evaluate(frameNo, exp); in result()
124 (*pathset)(frameNo, cmds, pts, transform, roundness, offsetPath); in result()
140 jerry_value_t evaluate(float frameNo, LottieExpression* exp);
143 void buildComp(LottieComposition* comp, float frameNo, LottieExpression* exp);
144 void buildComp(jerry_value_t context, float frameNo, LottieLayer* comp, LottieExpression* exp);