Searched refs:animationValue (Results 1 – 8 of 8) sorted by relevance
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/ |
H A D | cj_animate_param_ffi.cpp | 43 if (animationValue.duration.hasValue) { in ParseCjAnimation() 47 if (animationValue.delay.hasValue) { in ParseCjAnimation() 51 if (animationValue.iterations.hasValue) { in ParseCjAnimation() 55 if (animationValue.tempo.hasValue) { in ParseCjAnimation() 63 if (animationValue.playMode.hasValue) { in ParseCjAnimation() 67 if (animationValue.curve.hasValue) { in ParseCjAnimation() 76 …if (animationValue.min.hasValue && animationValue.max.hasValue && animationValue.expected.hasValue… in ParseCjAnimation() 78 animationValue.min.hasValue, in ParseCjAnimation() 79 animationValue.max.hasValue, in ParseCjAnimation() 80 animationValue.expected.hasValue in ParseCjAnimation() [all …]
|
H A D | cj_animate_param_ffi.h | 45 void ParseCjAnimation(NativeAnimateParam animationValue, AnimationOption& result);
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/animation/ |
H A D | rs_value_estimator.h | 108 property_->Set(animationValue); in UpdateAnimationValue() 120 return animationValue; in GetAnimationValue() 212 property_->Set(animationValue); in UpdateAnimationValue() 241 return animationValue; in GetAnimationValue() 253 auto animationValue = preKeyframeValue; in GetDurationKeyframeAnimationValue() local 278 animationValue = keyframeValue; in GetDurationKeyframeAnimationValue() 286 animationValue = preKeyframeValue; in GetDurationKeyframeAnimationValue() 289 return animationValue; in GetDurationKeyframeAnimationValue() 437 property_->Set(animationValue); in UpdateAnimationValue() 451 auto animationValue = currentValue; in GetAnimationValue() local [all …]
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/animation/ |
H A D | rs_render_property_animation.cpp | 142 std::shared_ptr<RSRenderPropertyBase> animationValue; in SetAnimationValue() local 144 animationValue = property_->Clone() + (value - lastValue_); in SetAnimationValue() 147 animationValue = value->Clone(); in SetAnimationValue() 150 SetPropertyValue(animationValue); in SetAnimationValue() 156 std::shared_ptr<RSRenderPropertyBase> animationValue; in GetAnimationValue() local 158 animationValue = GetPropertyValue() + (value - lastValue_); in GetAnimationValue() 160 animationValue = value->Clone(); in GetAnimationValue() 164 return animationValue; in GetAnimationValue()
|
H A D | rs_render_path_animation.cpp | 216 auto animationValue = in OnAnimate() local 218 UpdateVector4fPathValue(animationValue, position); in OnAnimate() 219 SetPathValue(animationValue, tangent); in OnAnimate()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_scroller.cpp | 127 auto animationValue = obj->GetProperty("animation"); in ScrollTo() local 128 if (animationValue->IsObject()) { in ScrollTo() 129 auto animationObj = JSRef<JSObject>::Cast(animationValue); in ScrollTo() 140 } else if (animationValue->IsBoolean()) { in ScrollTo() 141 smooth = animationValue->ToBoolean(); in ScrollTo()
|
/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/src/core/components/ |
H A D | component.cpp | 792 if (animationValue == nullptr) { in SetAnimationKeyFrames() 796 if (memcpy_s(animationValue, valLength, itemValue, valLength) != 0) { in SetAnimationKeyFrames() 797 ace_free(animationValue); in SetAnimationKeyFrames() 798 animationValue = nullptr; in SetAnimationKeyFrames() 801 animationValue[valLength] = '\0'; in SetAnimationKeyFrames() 806 valueTo = GetAnimatorValue(animationValue, animatorTo, true); in SetAnimationKeyFrames() 807 valueFrom = GetAnimatorValue(animationValue, animatorFrom, true); in SetAnimationKeyFrames() 809 valueTo = GetAnimatorValue(animationValue, animatorTo); in SetAnimationKeyFrames() 810 valueFrom = GetAnimatorValue(animationValue, animatorFrom); in SetAnimationKeyFrames() 812 ace_free(animationValue); in SetAnimationKeyFrames() [all …]
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/dialog/ |
H A D | js_custom_dialog_controller.cpp | 336 …const JsiExecutionContext& execContext, const JsiRef<JsiValue>& animationValue, AnimationOption& r… in ParseAnimation() argument 338 if (animationValue->IsNull() || !animationValue->IsObject()) { in ParseAnimation() 342 JSRef<JSObject> obj = JSRef<JSObject>::Cast(animationValue); in ParseAnimation()
|