/foundation/graphic/graphic_utils_lite/interfaces/kits/gfx_utils/diagram/depiction/ |
H A D | depict_stroke.h | 74 * lineJoin Property sets the type of corner created. When two lines meet, 78 void SetLineJoin(LineJoin lineJoin) in SetLineJoin() 80 BaseType::GetGenerator().SetLineJoin(lineJoin); in SetLineJoin() 84 * lineJoin Property returns the type of corner created. When two lines meet,
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/render/ |
H A D | shape_painter.cpp | 52 int lineJoin = shapePaintProperty.GetStrokeLineJoinValue(); in SetPen() local 53 if (static_cast<int>(RSPen::JoinStyle::BEVEL_JOIN) == lineJoin) { in SetPen() 55 } else if (static_cast<int>(RSPen::JoinStyle::MITER_JOIN) == lineJoin) { in SetPen()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/ |
H A D | sk_painter.cpp | 102 int lineJoin = shapePaintProperty.GetStrokeLineJoinValue(); in SetPen() local 103 if (static_cast<int>(LineJoinStyle::ROUND) == lineJoin) { in SetPen() 105 } else if (static_cast<int>(LineJoinStyle::BEVEL) == lineJoin) { in SetPen() 175 int lineJoin = shapePaintProperty.GetStrokeLineJoinValue(); in SetPen() local 176 if (static_cast<int>(LineJoinStyle::ROUND) == lineJoin) { in SetPen() 178 } else if (static_cast<int>(LineJoinStyle::BEVEL) == lineJoin) { in SetPen()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/rosen/ |
H A D | drawing_painter.cpp | 73 int lineJoin = shapePaintProperty.GetStrokeLineJoinValue(); in SetPen() local 74 if (static_cast<int>(LineJoinStyle::ROUND) == lineJoin) { in SetPen() 76 } else if (static_cast<int>(LineJoinStyle::BEVEL) == lineJoin) { in SetPen()
|
/foundation/graphic/graphic_utils_lite/interfaces/kits/gfx_utils/diagram/vertexprimitive/ |
H A D | geometry_math_stroke.h | 221 LineJoin lineJoin = lineJoin_; in CalcJoin() local 222 if (lineJoin == MITER_JOIN) { in CalcJoin() 224 lineJoin = BEVEL_JOIN; in CalcJoin() 228 if (lineJoin == ROUND_JOIN || lineJoin == BEVEL_JOIN) { in CalcJoin() 243 switch (lineJoin) { in CalcJoin()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_shape.h | 41 static void SetStrokeLineJoin(int lineJoin);
|
H A D | js_shape_abstract.h | 34 static void SetStrokeLineJoin(int lineJoin);
|
H A D | js_shape_abstract.cpp | 138 void JSShapeAbstract::SetStrokeLineJoin(int lineJoin) in SetStrokeLineJoin() argument 140 ShapeAbstractModel::GetInstance()->SetStrokeLineJoin(lineJoin); in SetStrokeLineJoin()
|
H A D | js_shape.cpp | 228 void JSShape::SetStrokeLineJoin(int lineJoin) in SetStrokeLineJoin() argument 230 ShapeModel::GetInstance()->SetStrokeLineJoin(lineJoin); in SetStrokeLineJoin()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/shape/ |
H A D | shape_paint_property.h | 105 std::array<std::string, 3> lineJoin = { "LineJoinStyle.Miter", "LineJoinStyle.Round", "LineJoinStyle.Bevel" }; variable 106 json->PutExtAttr("strokeLineJoin", lineJoin.at(propStrokeLineJoin_.value_or(0) % 3).c_str(), filter);
|
/foundation/arkui/ace_engine/frameworks/core/components/common/properties/ |
H A D | paint_state.h | 346 void SetLineJoin(LineJoinStyle lineJoin) in SetLineJoin() argument 348 lineJoin_ = lineJoin; in SetLineJoin()
|
H A D | svg_paint_state.h | 215 void SetLineJoin(LineJoinStyle lineJoin, bool isSelf = true) in SetLineJoin() argument 217 lineJoin_ = lineJoin; in SetLineJoin()
|
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/ |
H A D | cj_shape_ffi.h | 48 CJ_EXPORT void FfiOHOSAceFrameworkShapeSetStrokeLineJoin(int32_t lineJoin);
|
H A D | cj_shape_ffi.cpp | 139 void FfiOHOSAceFrameworkShapeSetStrokeLineJoin(int32_t lineJoin) in FfiOHOSAceFrameworkShapeSetStrokeLineJoin() argument 141 ShapeModel::GetInstance()->SetStrokeLineJoin(static_cast<int32_t>(LINE_JOIN_STYLE_LIST[lineJoin])); in FfiOHOSAceFrameworkShapeSetStrokeLineJoin()
|
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/cppview/ |
H A D | canvas_renderer.h | 55 void SetLineJoin(const LineJoinStyle lineJoin);
|
H A D | canvas_renderer.cpp | 90 void NativeCanvasRenderer::SetLineJoin(const LineJoinStyle lineJoin) in SetLineJoin() argument 92 renderingContext2DModel_->SetLineJoin(lineJoin); in SetLineJoin()
|
/foundation/graphic/graphic_utils_lite/frameworks/diagram/common/ |
H A D | paint.cpp | 144 void Paint::SetLineJoin(LineJoin lineJoin) in SetLineJoin() argument 146 lineJoin_ = lineJoin; in SetLineJoin()
|
/foundation/arkui/ace_engine_lite/frameworks/src/core/base/ |
H A D | js_fwk_common.cpp | 1275 int8_t ParseLineJoin(const char *lineJoin) in ParseLineJoin() argument 1277 if (lineJoin == nullptr) { in ParseLineJoin() 1280 if (strcasecmp(lineJoin, LINEJOIN_MITER) == 0) { in ParseLineJoin() 1283 if (strcasecmp(lineJoin, LINEJOIN_ROUND) == 0) { in ParseLineJoin() 1286 if (strcasecmp(lineJoin, LINEJOIN_BEVEL) == 0) { in ParseLineJoin()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/canvas/ |
H A D | canvas_rendering_context_2d_model_impl.cpp | 159 void CanvasRenderingContext2DModelImpl::SetLineJoin(const LineJoinStyle& lineJoin) in SetLineJoin() argument 162 pattern_->UpdateLineJoin(lineJoin); in SetLineJoin()
|
H A D | offscreen_canvas_rendering_context_2d_model_impl.cpp | 161 void OffscreenCanvasRenderingContext2DModelImpl::SetLineJoin(const LineJoinStyle& lineJoin) in SetLineJoin() argument 164 pattern_->SetLineJoin(lineJoin); in SetLineJoin()
|
H A D | offscreen_canvas_rendering_context_2d_model_impl.h | 55 void SetLineJoin(const LineJoinStyle& lineJoin) override;
|
H A D | canvas_rendering_context_2d_model_impl.h | 55 void SetLineJoin(const LineJoinStyle& lineJoin) override;
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/canvas/ |
H A D | canvas_rendering_context_2d_model_ng.h | 61 void SetLineJoin(const LineJoinStyle& lineJoin) override;
|
H A D | offscreen_canvas_rendering_context_2d_model_ng.h | 58 void SetLineJoin(const LineJoinStyle& lineJoin) override;
|
/foundation/graphic/graphic_utils_lite/interfaces/kits/gfx_utils/diagram/common/ |
H A D | paint.h | 374 void SetLineJoin(LineJoin lineJoin);
|