Home
last modified time | relevance | path

Searched refs:colorLeft (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/box/
H A Dbox_component_helper.h39 …static void SetBorderColor(const RefPtr<Decoration> decoration, const Color& colorLeft, const Colo…
46 border.SetLeftColor(colorLeft, option);
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/base/
H A Dview_abstract_model_ng.h327 … void SetBorderColor(const std::optional<Color>& colorLeft, const std::optional<Color>& colorRight, in SetBorderColor() argument
331 borderColors.leftColor = colorLeft; in SetBorderColor()
451 …void SetOuterBorderColor(const std::optional<Color>& colorLeft, const std::optional<Color>& colorR… in SetOuterBorderColor() argument
455 borderColors.leftColor = colorLeft; in SetOuterBorderColor()
H A Dview_abstract_model.h114 …virtual void SetBorderColor(const std::optional<Color>& colorLeft, const std::optional<Color>& col…
149 …virtual void SetOuterBorderColor(const std::optional<Color>& colorLeft, const std::optional<Color>…
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/
H A Dview_abstract_model_impl.h66 … void SetBorderColor(const std::optional<Color>& colorLeft, const std::optional<Color>& colorRight,
83 …void SetOuterBorderColor(const std::optional<Color>& colorLeft, const std::optional<Color>& colorR… in SetOuterBorderColor() argument
H A Dview_abstract_model_impl.cpp436 void ViewAbstractModelImpl::SetBorderColor(const std::optional<Color>& colorLeft, in SetBorderColor() argument
441 …Color leftColor = colorLeft.has_value() ? colorLeft.value() : BoxComponentHelper::GetBorderColorTo… in SetBorderColor()