Lines Matching refs:loop
827 exp->loop.mode = LottieExpression::LoopMode::OutCycle; in _loopOutCommon()
831 if (!strcmp(name, EXP_CYCLE)) exp->loop.mode = LottieExpression::LoopMode::OutCycle; in _loopOutCommon()
832 … else if (!strcmp(name, EXP_PINGPONG)) exp->loop.mode = LottieExpression::LoopMode::OutPingPong; in _loopOutCommon()
833 else if (!strcmp(name, EXP_OFFSET)) exp->loop.mode = LottieExpression::LoopMode::OutOffset; in _loopOutCommon()
834 … else if (!strcmp(name, EXP_CONTINUE)) exp->loop.mode = LottieExpression::LoopMode::OutContinue; in _loopOutCommon()
838 …if (exp->loop.mode != LottieExpression::LoopMode::OutCycle && exp->loop.mode != LottieExpression::… in _loopOutCommon()
839 TVGLOG("LOTTIE", "Not supported loopOut type = %d", exp->loop.mode); in _loopOutCommon()
853 if (argsCnt > 1) exp->loop.key = jerry_value_as_int32(args[1]); in _loopOut()
868 exp->loop.in = exp->comp->frameAtTime((float)jerry_value_as_int32(args[1])); in _loopOutDuration()
879 exp->loop.mode = LottieExpression::LoopMode::InCycle; in _loopInCommon()
883 if (!strcmp(name, EXP_CYCLE)) exp->loop.mode = LottieExpression::LoopMode::InCycle; in _loopInCommon()
884 … else if (!strcmp(name, EXP_PINGPONG)) exp->loop.mode = LottieExpression::LoopMode::InPingPong; in _loopInCommon()
885 else if (!strcmp(name, EXP_OFFSET)) exp->loop.mode = LottieExpression::LoopMode::InOffset; in _loopInCommon()
886 … else if (!strcmp(name, EXP_CONTINUE)) exp->loop.mode = LottieExpression::LoopMode::InContinue; in _loopInCommon()
890 …if (exp->loop.mode != LottieExpression::LoopMode::InCycle && exp->loop.mode != LottieExpression::L… in _loopInCommon()
891 TVGLOG("LOTTIE", "Not supported loopIn type = %d", exp->loop.mode); in _loopInCommon()
904 if (argsCnt > 1) exp->loop.key = jerry_value_as_int32(args[1]); in _loopIn()
917 exp->loop.in = exp->comp->frameAtTime((float)jerry_value_as_int32(args[1])); in _loopInDuration()