Home
last modified time | relevance | path

Searched refs:currentColor (Results 1 - 25 of 30) sorted by relevance

12

/foundation/arkui/ace_engine/frameworks/core/components/svg/
H A Drosen_render_svg_filter.cpp36 ColorInterpolationType currentColor = ColorInterpolationType::SRGB; in OnAsPaint() local
38 GetImageFilter(AceType::DynamicCast<RenderSvgFe>(item), imageFilter, currentColor); in OnAsPaint() local
40 ConverImageFilterColor(imageFilter, currentColor, ColorInterpolationType::SRGB); in OnAsPaint()
50 ColorInterpolationType currentColor = ColorInterpolationType::SRGB; in OnAsPaint() local
52 GetImageFilter(AceType::DynamicCast<RenderSvgFe>(item), imageFilter, currentColor); in OnAsPaint() local
54 ConverImageFilterColor(imageFilter, currentColor, ColorInterpolationType::SRGB); in OnAsPaint()
64 const RefPtr<RenderSvgFe>& fe, sk_sp<SkImageFilter>& imageFilter, ColorInterpolationType& currentColor) in GetImageFilter()
67 const RefPtr<RenderSvgFe>& fe, std::shared_ptr<RSImageFilter>& imageFilter, ColorInterpolationType& currentColor) in GetImageFilter()
73 ColorInterpolationType srcColor = currentColor; in GetImageFilter()
74 InitFilterColor(fe, currentColor); in GetImageFilter()
63 GetImageFilter( const RefPtr<RenderSvgFe>& fe, sk_sp<SkImageFilter>& imageFilter, ColorInterpolationType& currentColor) GetImageFilter() argument
112 InitFilterColor(const RefPtr<RenderSvgFe>& fe, ColorInterpolationType& currentColor) InitFilterColor() argument
[all...]
H A Drosen_render_svg_filter.h45 const RefPtr<RenderSvgFe>& fe, sk_sp<SkImageFilter>& imageFilter, ColorInterpolationType& currentColor);
46 void InitFilterColor(const RefPtr<RenderSvgFe>& fe, ColorInterpolationType& currentColor);
52 std::shared_ptr<RSImageFilter>& imageFilter, ColorInterpolationType& currentColor);
53 void InitFilterColor(const RefPtr<RenderSvgFe>& fe, ColorInterpolationType& currentColor);
/foundation/arkui/ace_engine/frameworks/core/components_ng/svg/parse/
H A Dsvg_fe.cpp76 void InitFilterColor(const SvgFeCommonAttribute& fe, SvgColorInterpolationType& currentColor) in InitFilterColor() argument
79 currentColor = SvgColorInterpolationType::SRGB; in InitFilterColor()
81 currentColor = fe.colorInterpolationType; in InitFilterColor()
100 void SvgFe::GetImageFilter(std::shared_ptr<RSImageFilter>& imageFilter, SvgColorInterpolationType& currentColor, in GetImageFilter() argument
104 SvgColorInterpolationType srcColor = currentColor; in GetImageFilter()
106 InitFilterColor(feAttr_, currentColor); in GetImageFilter()
117 OnAsImageFilter(imageFilter, srcColor, currentColor, resultHash); in GetImageFilter()
118 currentColor = srcColor; in GetImageFilter()
H A Dsvg_fe_composite.cpp90 const SvgColorInterpolationType& srcColor, SvgColorInterpolationType& currentColor, in OnAsImageFilter()
96 ConverImageFilterColor(foreImageFilter, srcColor, currentColor); in OnAsImageFilter()
97 ConverImageFilterColor(backImageFilter, srcColor, currentColor); in OnAsImageFilter()
101 ConverImageFilterColor(imageFilter, srcColor, currentColor); in OnAsImageFilter()
108 ConverImageFilterColor(imageFilter, srcColor, currentColor); in OnAsImageFilter()
89 OnAsImageFilter(std::shared_ptr<RSImageFilter>& imageFilter, const SvgColorInterpolationType& srcColor, SvgColorInterpolationType& currentColor, std::unordered_map<std::string, std::shared_ptr<RSImageFilter>>& resultHash) const OnAsImageFilter() argument
H A Dsvg_fe_blend.cpp48 const SvgColorInterpolationType& srcColor, SvgColorInterpolationType& currentColor, in OnAsImageFilter()
55 ConverImageFilterColor(foreImageFilter, srcColor, currentColor); in OnAsImageFilter()
56 ConverImageFilterColor(backImageFilter, srcColor, currentColor); in OnAsImageFilter()
60 ConverImageFilterColor(imageFilter, srcColor, currentColor); in OnAsImageFilter()
47 OnAsImageFilter(std::shared_ptr<RSImageFilter>& imageFilter, const SvgColorInterpolationType& srcColor, SvgColorInterpolationType& currentColor, std::unordered_map<std::string, std::shared_ptr<RSImageFilter>>& resultHash) const OnAsImageFilter() argument
H A Dsvg_fe_color_matrix.h40 const ColorInterpolationType& srcColor, ColorInterpolationType& currentColor) const override;
43 const SvgColorInterpolationType& srcColor, SvgColorInterpolationType& currentColor,
H A Dsvg_fe.h46 void GetImageFilter(std::shared_ptr<RSImageFilter>& imageFilter, SvgColorInterpolationType& currentColor,
54 SvgColorInterpolationType& currentColor, in OnAsImageFilter()
53 OnAsImageFilter(std::shared_ptr<RSImageFilter>& imageFilter, const SvgColorInterpolationType& srcColor, SvgColorInterpolationType& currentColor, std::unordered_map<std::string, std::shared_ptr<RSImageFilter>>& resultHash) const OnAsImageFilter() argument
H A Dsvg_fe_offset.cpp30 const SvgColorInterpolationType& srcColor, SvgColorInterpolationType& currentColor, in OnAsImageFilter()
37 ConverImageFilterColor(imageFilter, srcColor, currentColor); in OnAsImageFilter()
29 OnAsImageFilter(std::shared_ptr<RSImageFilter>& imageFilter, const SvgColorInterpolationType& srcColor, SvgColorInterpolationType& currentColor, std::unordered_map<std::string, std::shared_ptr<RSImageFilter>>& resultHash) const OnAsImageFilter() argument
H A Dsvg_fe_flood.cpp30 const SvgColorInterpolationType& srcColor, SvgColorInterpolationType& currentColor, in OnAsImageFilter()
46 ConverImageFilterColor(imageFilter, srcColor, currentColor); in OnAsImageFilter()
29 OnAsImageFilter(std::shared_ptr<RSImageFilter>& imageFilter, const SvgColorInterpolationType& srcColor, SvgColorInterpolationType& currentColor, std::unordered_map<std::string, std::shared_ptr<RSImageFilter>>& resultHash) const OnAsImageFilter() argument
H A Dsvg_filter.cpp61 SvgColorInterpolationType currentColor = SvgColorInterpolationType::SRGB; in OnAsPaint() local
93 nodeFe->GetImageFilter(imageFilter, currentColor, resultHash, effectFilterArea); in OnAsPaint()
96 SvgFe::ConverImageFilterColor(imageFilter, currentColor, SvgColorInterpolationType::SRGB); in OnAsPaint()
H A Dsvg_fe_gaussian_blur.cpp29 const SvgColorInterpolationType& srcColor, SvgColorInterpolationType& currentColor, in OnAsImageFilter()
38 ConverImageFilterColor(imageFilter, srcColor, currentColor); in OnAsImageFilter()
28 OnAsImageFilter(std::shared_ptr<RSImageFilter>& imageFilter, const SvgColorInterpolationType& srcColor, SvgColorInterpolationType& currentColor, std::unordered_map<std::string, std::shared_ptr<RSImageFilter>>& resultHash) const OnAsImageFilter() argument
H A Dsvg_fe_offset.h33 SvgColorInterpolationType& currentColor,
H A Dsvg_fe_blend.h33 const SvgColorInterpolationType& srcColor, SvgColorInterpolationType& currentColor,
H A Dsvg_fe_composite.h33 const SvgColorInterpolationType& srcColor, SvgColorInterpolationType& currentColor,
H A Dsvg_fe_gaussian_blur.h32 SvgColorInterpolationType& currentColor,
H A Dsvg_fe_flood.h32 SvgColorInterpolationType& currentColor,
H A Dsvg_fe_color_matrix.cpp137 const SvgColorInterpolationType& srcColor, SvgColorInterpolationType& currentColor, in OnAsImageFilter()
148 ConverImageFilterColor(imageFilter, srcColor, currentColor); in OnAsImageFilter()
136 OnAsImageFilter(std::shared_ptr<RSImageFilter>& imageFilter, const SvgColorInterpolationType& srcColor, SvgColorInterpolationType& currentColor, std::unordered_map<std::string, std::shared_ptr<RSImageFilter>>& resultHash) const OnAsImageFilter() argument
/foundation/arkui/ace_engine/frameworks/core/components_v2/indexer/
H A Drender_indexer_item.cpp135 auto currentColor = box->GetColor(); in OnMouseHoverExitTest() local
136 CreateColorAnimation(colorAnimationExit_, currentColor, Color::TRANSPARENT); in OnMouseHoverExitTest()
137 if (currentColor == Color::FromString("#0C000000")) { in OnMouseHoverExitTest()
/foundation/arkui/ace_engine/frameworks/core/components/indexer/
H A Drender_indexer_item.cpp169 auto currentColor = box->GetColor(); in OnMouseHoverExitTest() local
170 CreateColorAnimation(colorAnimationExit_, currentColor, Color::TRANSPARENT); in OnMouseHoverExitTest()
171 if (currentColor == Color::FromString("#0C000000")) { in OnMouseHoverExitTest()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_gauge.cpp292 Color currentColor; in SetLabelConfig() local
293 ParseJsColor(labelColor, currentColor); in SetLabelConfig()
297 if (ParseJsColor(labelColor, currentColor)) { in SetLabelConfig()
298 GaugeModel::GetInstance()->SetMarkedTextColor(currentColor); in SetLabelConfig()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/picker/
H A Ddatepicker_column_pattern.cpp580 properties.currentColor = textLayoutProperty->GetTextColor().value(); in AddAnimationTextProperties()
589 properties.upColor = animationProperties_[currentIndex - 1].currentColor; in AddAnimationTextProperties()
590 animationProperties_[currentIndex - 1].downColor = properties.currentColor; in AddAnimationTextProperties()
611 animationProperties_[i - 1].currentColor = animationProperties_[i].currentColor; in FlushAnimationTextProperties()
619 animationProperties_[i].upColor = animationProperties_[i].currentColor; in FlushAnimationTextProperties()
621 animationProperties_[i].currentColor = in FlushAnimationTextProperties()
622 colorEvaluator->Evaluate(Color(), animationProperties_[i].currentColor, 0.5); in FlushAnimationTextProperties()
634 animationProperties_[i].downColor = animationProperties_[i].currentColor; in FlushAnimationTextProperties()
636 animationProperties_[i].currentColor in FlushAnimationTextProperties()
[all...]
H A Ddatepicker_column_pattern.h49 Color currentColor; member
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/time_picker/
H A Dtimepicker_column_pattern.cpp652 properties.currentColor = textLayoutProperty->GetTextColor().value(); in AddAnimationTextProperties()
658 properties.upColor = animationProperties_[currentIndex - 1].currentColor; in AddAnimationTextProperties()
659 animationProperties_[currentIndex - 1].downColor = properties.currentColor; in AddAnimationTextProperties()
680 animationProperties_[i - 1].currentColor = animationProperties_[i].currentColor; in FlushAnimationTextProperties()
688 animationProperties_[i].upColor = animationProperties_[i].currentColor; in FlushAnimationTextProperties()
690 animationProperties_[i].currentColor = in FlushAnimationTextProperties()
691 colorEvaluator->Evaluate(Color(), animationProperties_[i].currentColor, 0.5); in FlushAnimationTextProperties()
703 animationProperties_[i].downColor = animationProperties_[i].currentColor; in FlushAnimationTextProperties()
705 animationProperties_[i].currentColor in FlushAnimationTextProperties()
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_picker/
H A Dtextpicker_column_pattern.cpp669 animationProperties_[i - 1].currentColor = animationProperties_[i].currentColor; in FlushAnimationTextProperties()
676 animationProperties_[i].upColor = animationProperties_[i].currentColor; in FlushAnimationTextProperties()
678 animationProperties_[i].currentColor = in FlushAnimationTextProperties()
679 colorEvaluator->Evaluate(Color(), animationProperties_[i].currentColor, 0.5); in FlushAnimationTextProperties()
690 animationProperties_[i].downColor = animationProperties_[i].currentColor; in FlushAnimationTextProperties()
692 animationProperties_[i].currentColor = in FlushAnimationTextProperties()
693 colorEvaluator->Evaluate(Color(), animationProperties_[i].currentColor, 0.5); in FlushAnimationTextProperties()
700 animationProperties_[i].currentColor = animationProperties_[i - 1].currentColor; in FlushAnimationTextProperties()
[all...]
/foundation/arkui/ace_engine/frameworks/core/components/slider/
H A Drosen_render_slider.cpp250 auto currentColor = renderBlock->GetHoverColor(); in OnMouseHoverExitTest() local
251 CreateColorAnimation(colorAnimationExit_, currentColor, Color::TRANSPARENT, false); in OnMouseHoverExitTest()
252 if (currentColor == Color::FromRGBO(0, 0, 0, 0.05)) { in OnMouseHoverExitTest()

Completed in 14 milliseconds

12