Home
last modified time | relevance | path

Searched refs:lineCapStyle (Results 1 – 16 of 16) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H A Ddivider_modifier.cpp50 auto lineCapStyle = DEFAULT_DIVIDER_LINE_CAP; in SetDividerLineCap() local
52 lineCapStyle = LineCap::SQUARE; in SetDividerLineCap()
54 lineCapStyle = LineCap::ROUND; in SetDividerLineCap()
56 lineCapStyle = DEFAULT_DIVIDER_LINE_CAP; in SetDividerLineCap()
58 DividerModelNG::LineCap(frameNode, lineCapStyle); in SetDividerLineCap()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_divider.cpp65 auto lineCapStyle = LineCap::BUTT; in SetLineCap() local
68 lineCapStyle = LineCap::SQUARE; in SetLineCap()
70 lineCapStyle = LineCap::ROUND; in SetLineCap()
73 lineCapStyle = LineCap::BUTT; in SetLineCap()
75 DividerModel::GetInstance()->LineCap(lineCapStyle); in SetLineCap()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/shape/
H A Dshape_model_ng.cpp69 void ShapeModelNG::SetStrokeLineCap(int lineCapStyle) in SetStrokeLineCap() argument
71 ShapeAbstractModelNG().SetStrokeLineCap(lineCapStyle); in SetStrokeLineCap()
131 void ShapeModelNG::SetStrokeLineCap(FrameNode* frameNode, int lineCapStyle) in SetStrokeLineCap() argument
133 ACE_UPDATE_NODE_PAINT_PROPERTY(ShapePaintProperty, StrokeLineCap, lineCapStyle, frameNode); in SetStrokeLineCap()
H A Dshape_model_ng.h36 void SetStrokeLineCap(int lineCapStyle) override;
55 static void SetStrokeLineCap(FrameNode* frameNode, int lineCapStyle);
H A Dshape_abstract_model_ng.cpp56 void ShapeAbstractModelNG::SetStrokeLineCap(int lineCapStyle) in SetStrokeLineCap() argument
58 ACE_UPDATE_PAINT_PROPERTY(ShapePaintProperty, StrokeLineCap, lineCapStyle); in SetStrokeLineCap()
H A Dshape_abstract_model.h33 virtual void SetStrokeLineCap(int lineCapStyle);
H A Dshape_abstract_model_ng.h32 void SetStrokeLineCap(int lineCapStyle) override;
H A Dshape_model.h41 virtual void SetStrokeLineCap(int lineCapStyle);
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/
H A Dshape_abstract_model_impl.cpp56 void ShapeAbstractModelImpl::SetStrokeLineCap(int lineCapStyle) in SetStrokeLineCap() argument
64 if (static_cast<int>(LineCapStyle::SQUARE) == lineCapStyle) { in SetStrokeLineCap()
66 } else if (static_cast<int>(LineCapStyle::ROUND) == lineCapStyle) { in SetStrokeLineCap()
H A Dshape_model_impl.cpp137 void ShapeModelImpl::SetStrokeLineCap(int lineCapStyle) in SetStrokeLineCap() argument
145 if (static_cast<int>(LineCapStyle::SQUARE) == lineCapStyle) { in SetStrokeLineCap()
147 } else if (static_cast<int>(LineCapStyle::ROUND) == lineCapStyle) { in SetStrokeLineCap()
H A Dshape_abstract_model_impl.h28 void SetStrokeLineCap(int lineCapStyle) override;
H A Dshape_model_impl.h33 void SetStrokeLineCap(int lineCapStyle) override;
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/shape/
H A Dshape_component.h177 void SetStrokeLineCap(LineCapStyle lineCapStyle) in SetStrokeLineCap() argument
179 strokeState_.SetLineCap(lineCapStyle); in SetStrokeLineCap()
H A Dshape_container_component.h189 void SetStrokeLineCap(LineCapStyle lineCapStyle) in SetStrokeLineCap() argument
191 strokeState_.SetLineCap(lineCapStyle); in SetStrokeLineCap()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_v2/inspector/
H A Dshape_container_composed_element.h31 static std::string LineCapStyleToString(LineCapStyle lineCapStyle);
H A Dshape_container_composed_element.cpp51 std::string ShapeContainerComposedElement::LineCapStyleToString(LineCapStyle lineCapStyle) in LineCapStyleToString() argument
59 auto pos = STYLE_MAP.find(lineCapStyle); in LineCapStyleToString()