Home
last modified time | relevance | path

Searched defs:originalValue (Results 1 – 17 of 17) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/animation/
H A Dsvg_animate.cpp90 std::function<void(T)>&& callback, const T& originalValue, const RefPtr<Animator>& animator) in CreatePropertyAnimate()
127 double originalValue = 0.0; in CreateMotionAnimate() local
147 std::function<void(T)>&& callback, const T& originalValue, const RefPtr<Animator>& animator) in CreateDiscreteAnimate()
194 … SvgAnimate::DiscreteAnimate(const RefPtr<KeyframeAnimation<T>>& animation, const T& originalValue) in DiscreteAnimate()
217 …gAnimate::DiscreteWithValues(const RefPtr<KeyframeAnimation<T>>& animation, const T& originalValue) in DiscreteWithValues()
243 …nimate::DiscreteWithKeyTimes(const RefPtr<KeyframeAnimation<T>>& animation, const T& originalValue) in DiscreteWithKeyTimes()
270 std::function<void(T)>&& callback, const T& originalValue, const RefPtr<Animator>& animator) in CreateLinearAnimate()
302 std::function<void(T)>&& callback, const T& originalValue, const RefPtr<Animator>& animator) in LinearAnimateFromTo()
395 std::function<void(T)>&& callback, const T& originalValue, const RefPtr<Animator>& animator) in CreatePacedAnimate()
432 std::function<void(T)>&& callback, const T& originalValue, const RefPtr<Animator>& animator) in CreateSplineAnimate()
[all …]
H A Dsvg_animate.h95 T GetStartValue(const T& originalValue) const in GetStartValue()
109 Color GetStartValue(const Color& originalValue) const in GetStartValue()
119 Dimension GetStartValue(const Dimension& originalValue) const in GetStartValue()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/svg/
H A Drender_svg_base.cpp312 …enderSvgBase::PrepareTransformAnimation(const RefPtr<SvgAnimate>& svgAnimate, double originalValue) in PrepareTransformAnimation()
321 …SvgBase::PrepareTransformValueAnimation(const RefPtr<SvgAnimate>& svgAnimate, double originalValue) in PrepareTransformValueAnimation()
346 …SvgBase::PrepareTransformFrameAnimation(const RefPtr<SvgAnimate>& svgAnimate, double originalValue) in PrepareTransformFrameAnimation()
392 …SvgBase::PreparePresentationAnimation(const RefPtr<SvgAnimate>& svgAnimate, const T& originalValue) in PreparePresentationAnimation()
443 Color originalValue = COLOR_PROPER_GETTERS.find(attrName)->second(*this); in PrepareBaseAnimation() local
446 Dimension originalValue = DIMENSION_PROPER_GETTERS.find(attrName)->second(*this); in PrepareBaseAnimation() local
449 double originalValue = DOUBLE_PROPER_GETTERS.find(attrName)->second(*this); in PrepareBaseAnimation() local
452 double originalValue = 0.0; in PrepareBaseAnimation() local
462 const RefPtr<SvgAnimate>& svgAnimate, const T& originalValue, std::function<void(T)>&& callback) in CreatePropertyAnimation()
524 const std::string& originalValue, bool& isBy) in PrepareWeightAnimate()
H A Drender_svg.cpp93 Dimension originalValue; in PrepareSelfAnimation() local
120 double originalValue = opacity_ * (1.0 / UINT8_MAX); in OpacityAnimation() local
H A Drender_svg_path.cpp75 double originalValue = 0.0; in PrepareSelfAnimation() local
H A Drender_svg_polygon.cpp78 double originalValue = 0.0; in PrepareSelfAnimation() local
H A Drender_svg_rect.cpp53 Dimension originalValue; in PrepareSelfAnimation() local
H A Drender_svg_circle.cpp57 Dimension originalValue; in PrepareSelfAnimation() local
H A Drender_svg_filter.cpp55 double originalValue; in PrepareSelfAnimation() local
H A Drender_svg_ellipse.cpp59 Dimension originalValue; in PrepareSelfAnimation() local
H A Drender_svg_line.cpp65 Dimension originalValue; in PrepareSelfAnimation() local
H A Drender_svg_text_path.cpp56 Dimension originalValue; in PrepareSelfAnimation() local
H A Drender_svg_mask.cpp73 double originalValue; in PrepareSelfAnimation() local
H A Drender_svg_pattern.cpp75 double originalValue; in PrepareSelfAnimation() local
H A Drender_svg_text.cpp62 Dimension originalValue; in PrepareSelfAnimation() local
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/svg/parse/
H A Dsvg_node.cpp564 Color originalValue = COLOR_GETTERS.find(attrName)->second(attributes_); local
567 Dimension originalValue = DIMENSION_GETTERS.find(attrName)->second(attributes_); local
570 double originalValue = DOUBLE_GETTERS.find(attrName)->second(attributes_); local
581 void SvgNode::AnimateOnAttribute(const RefPtr<SvgAnimation>& animate, const T& originalValue)
633 void SvgNode::AnimateTransform(const RefPtr<SvgAnimation>& animate, double originalValue)
642 void SvgNode::AnimateFrameTransform(const RefPtr<SvgAnimation>& animate, double originalValue)
685 void SvgNode::AnimateFromToTransform(const RefPtr<SvgAnimation>& animate, double originalValue)
H A Dsvg_animation.cpp207 void SvgAnimation::CreatePropertyAnimation(const T& originalValue, std::function<void(T)>&& callbac… in CreatePropertyAnimation()