/ohos5.0/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/ |
H A D | divider_modifier.cpp | 50 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 D | js_divider.cpp | 65 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 D | shape_model_ng.cpp | 69 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 D | shape_model_ng.h | 36 void SetStrokeLineCap(int lineCapStyle) override; 55 static void SetStrokeLineCap(FrameNode* frameNode, int lineCapStyle);
|
H A D | shape_abstract_model_ng.cpp | 56 void ShapeAbstractModelNG::SetStrokeLineCap(int lineCapStyle) in SetStrokeLineCap() argument 58 ACE_UPDATE_PAINT_PROPERTY(ShapePaintProperty, StrokeLineCap, lineCapStyle); in SetStrokeLineCap()
|
H A D | shape_abstract_model.h | 33 virtual void SetStrokeLineCap(int lineCapStyle);
|
H A D | shape_abstract_model_ng.h | 32 void SetStrokeLineCap(int lineCapStyle) override;
|
H A D | shape_model.h | 41 virtual void SetStrokeLineCap(int lineCapStyle);
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/ |
H A D | shape_abstract_model_impl.cpp | 56 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 D | shape_model_impl.cpp | 137 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 D | shape_abstract_model_impl.h | 28 void SetStrokeLineCap(int lineCapStyle) override;
|
H A D | shape_model_impl.h | 33 void SetStrokeLineCap(int lineCapStyle) override;
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/shape/ |
H A D | shape_component.h | 177 void SetStrokeLineCap(LineCapStyle lineCapStyle) in SetStrokeLineCap() argument 179 strokeState_.SetLineCap(lineCapStyle); in SetStrokeLineCap()
|
H A D | shape_container_component.h | 189 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 D | shape_container_composed_element.h | 31 static std::string LineCapStyleToString(LineCapStyle lineCapStyle);
|
H A D | shape_container_composed_element.cpp | 51 std::string ShapeContainerComposedElement::LineCapStyleToString(LineCapStyle lineCapStyle) in LineCapStyleToString() argument 59 auto pos = STYLE_MAP.find(lineCapStyle); in LineCapStyleToString()
|