Lines Matching refs:argsCnt
45 … _content(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt);
104 …_t _toComp(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _toComp() argument
407 …lue_t _add(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _add() argument
413 …lue_t _sub(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _sub() argument
419 …lue_t _mul(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _mul() argument
425 …lue_t _div(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _div() argument
431 static jerry_value_t _interp(float t, const jerry_value_t args[], int argsCnt) in _interp() argument
480 …_t _linear(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _linear() argument
483 return _interp(t, args, jerry_value_as_uint32(argsCnt)); in _linear()
487 …ue_t _ease(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _ease() argument
491 return _interp(t, args, jerry_value_as_uint32(argsCnt)); in _ease()
496 …_t _easeIn(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _easeIn() argument
500 return _interp(t, args, jerry_value_as_uint32(argsCnt)); in _easeIn()
504 …t _easeOut(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _easeOut() argument
508 return _interp(t, args, jerry_value_as_uint32(argsCnt)); in _easeOut()
512 …e_t _clamp(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _clamp() argument
526 …lue_t _dot(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _dot() argument
545 …e_t _cross(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _cross() argument
564 …_normalize(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _normalize() argument
591 …_t _length(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _length() argument
605 …_t _random(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _random() argument
612 …t _deg2rad(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _deg2rad() argument
618 …t _rad2deg(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _rad2deg() argument
624 …_t _effect(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _effect() argument
632 …pToSurface(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _fromCompToSurface() argument
640 …t _content(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _content() argument
664 …e_t _layer(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _layer() argument
690 …nearestKey(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _nearestKey() argument
704 … _property(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _property() argument
713 …pertyGroup(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _propertyGroup() argument
732 …alueAtTime(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _valueAtTime() argument
755 …cityAtTime(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _velocityAtTime() argument
789 …peedAtTime(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _speedAtTime() argument
825 …ool _loopOutCommon(LottieExpression* exp, const jerry_value_t args[], const jerry_length_t argsCnt) in _loopOutCommon() argument
829 if (argsCnt > 0) { in _loopOutCommon()
847 …t _loopOut(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _loopOut() argument
851 if (!_loopOutCommon(exp, args, argsCnt)) return jerry_undefined(); in _loopOut()
853 if (argsCnt > 1) exp->loop.key = jerry_value_as_int32(args[1]); in _loopOut()
861 …utDuration(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _loopOutDuration() argument
865 if (!_loopOutCommon(exp, args, argsCnt)) return jerry_undefined(); in _loopOutDuration()
867 if (argsCnt > 1) { in _loopOutDuration()
877 …bool _loopInCommon(LottieExpression* exp, const jerry_value_t args[], const jerry_length_t argsCnt) in _loopInCommon() argument
881 if (argsCnt > 0) { in _loopInCommon()
898 …_t _loopIn(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _loopIn() argument
902 if (!_loopInCommon(exp, args, argsCnt)) return jerry_undefined(); in _loopIn()
904 if (argsCnt > 1) exp->loop.key = jerry_value_as_int32(args[1]); in _loopIn()
912 …InDuration(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _loopInDuration() argument
916 if (argsCnt > 1) { in _loopInDuration()
920 if (!_loopInCommon(exp, args, argsCnt)) return jerry_undefined(); in _loopInDuration()
928 …lue_t _key(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _key() argument
956 …createPath(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _createPath() argument
974 …niformPath(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _uniformPath() argument
986 … _isClosed(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _isClosed() argument
1108 …ue_t _comp(const jerry_call_info_t* info, const jerry_value_t args[], const jerry_length_t argsCnt) in _comp() argument