/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/cppview/ |
H A D | canvas_renderer.h | 75 void StrokeText(double x, double y, const std::string& text);
|
H A D | canvas_renderer.cpp | 207 void NativeCanvasRenderer::StrokeText(const double x, const double y, const std::string& text) in StrokeText() function in OHOS::Ace::Framework::NativeCanvasRenderer
|
/foundation/arkui/ui_lite/test/uitest/test_canvas/ |
H A D | ui_test_canvas.cpp | 377 canvas->StrokeText("CANVAS绘制图片", {0, 0}, fontStyle, paint); in UIKitCanvasTestDrawImage002() 1497 canvas->StrokeText("葡萄牙语:Hongmeng, teste", {0, HEIGHT_Y20}, fontStyle, paint); in RM011StrokeText001() 1498 canvas->StrokeText("西班牙语:Hong Meng, test", {0, HEIGHT_Y40}, fontStyle, paint); in RM011StrokeText001() 1499 canvas->StrokeText("法语:HongMeng, test", {0, HEIGHT_Y60}, fontStyle, paint); in RM011StrokeText001() 1500 canvas->StrokeText("瓜拉尼语:mitapoañda, pens", {0, HEIGHT_Y80}, fontStyle, paint); in RM011StrokeText001() 1501 canvas->StrokeText("荷兰语:Hongmeng, kom op.", {0, HEIGHT_Y100}, fontStyle, paint); in RM011StrokeText001() 1502 canvas->StrokeText("樊瓦什语:Кайалла", {0, HEIGHT_Y120}, fontStyle, paint); in RM011StrokeText001() 1503 canvas->StrokeText("白俄罗斯语:Прывітанне", {0, HEIGHT_Y140}, fontStyle, paint); in RM011StrokeText001() 1504 canvas->StrokeText("希腊语:Γεια.", {0, HEIGHT_Y160}, fontStyle, paint); in RM011StrokeText001() 1505 canvas->StrokeText("瑞典语 in RM011StrokeText001() [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/canvas/ |
H A D | offscreen_canvas_pattern.h | 56 void StrokeText(const std::string& text, double x, double y, std::optional<double> maxWidth);
|
H A D | offscreen_canvas_pattern.cpp | 135 void OffscreenCanvasPattern::StrokeText(const std::string& text, double x, double y, std::optional<double> maxWidth) in StrokeText() function in OHOS::Ace::NG::OffscreenCanvasPattern 138 offscreenPaintMethod_->StrokeText(text, x, y, maxWidth); in StrokeText()
|
H A D | canvas_pattern.h | 114 void StrokeText(const std::string& text, double x, double y, std::optional<double> maxWidth);
|
H A D | canvas_paint_op.cpp | 357 method->StrokeText(text, x, y, maxWidth); in Draw()
|
H A D | custom_paint_paint_method.h | 293 void StrokeText(const std::string& text, double x, double y, std::optional<double> maxWidth);
|
H A D | canvas_pattern.cpp | 431 void CanvasPattern::StrokeText(const std::string& text, double x, double y, std::optional<double> maxWidth) in StrokeText() function in OHOS::Ace::NG::CanvasPattern 435 paintMethod.StrokeText(text, x, y, maxWidth); in StrokeText()
|
H A D | offscreen_canvas_rendering_context_2d_model_ng.cpp | 40 pattern_->StrokeText(fillTextInfo.text, fillTextInfo.x, fillTextInfo.y, fillTextInfo.maxWidth); in SetStrokeText()
|
H A D | canvas_rendering_context_2d_model_ng.cpp | 115 pattern->StrokeText(fillTextInfo.text, fillTextInfo.x, fillTextInfo.y, fillTextInfo.maxWidth); in SetStrokeText()
|
/foundation/arkui/ace_engine/frameworks/core/components/custom_paint/ |
H A D | custom_paint_component.h | 86 void StrokeText(const std::string& text, const Offset& textOffset);
|
H A D | custom_paint_component.cpp | 123 void CanvasTaskPool::StrokeText(const std::string& text, const Offset& textOffset) in StrokeText() function in OHOS::Ace::CanvasTaskPool 126 interface.StrokeText(offset, text, textOffset.GetX(), textOffset.GetY()); in StrokeText()
|
H A D | render_custom_paint.h | 77 virtual void StrokeText(const Offset& offset, const std::string& text, double x, double y) = 0;
|
H A D | rosen_render_custom_paint.h | 67 void StrokeText(const Offset& offset, const std::string& text, double x, double y) override;
|
H A D | offscreen_canvas.h | 232 virtual void StrokeText(const std::string& text, double x, double y, const PaintState& state) = 0;
|
H A D | rosen_render_offscreen_canvas.h | 51 void StrokeText(const std::string& text, double x, double y, const PaintState& state) override;
|
/foundation/arkui/ui_lite/test/unittest/components/ |
H A D | ui_canvas_unit_test.cpp | 1104 * @tc.desc: Verify StrokeText function, equal. 1135 * @tc.desc: Verify StrokeText function, equal. 1156 canvas_->StrokeText("hello world", {POS_X, POS_Y}, fontStyle, *paint_); in HWTEST_F() 1292 canvas_->StrokeText("hello world", {POS_X, POS_Y}, fontStyle, *paint_); in HWTEST_F() 1365 canvas_->StrokeText("hello world", {POS_X, POS_Y}, fontStyle, *paint_); in HWTEST_F() 1440 canvas_->StrokeText("hello world", {POS_X, POS_Y}, fontStyle, *paint_); in HWTEST_F() 1517 canvas_->StrokeText("hello world", {POS_X, POS_Y}, fontStyle, *paint_); in HWTEST_F() 2145 canvas_->StrokeText("hello world", {POS_X, POS_Y}, fontStyle, *paint_); in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/canvas/ |
H A D | canvas_rendering_context_2d_model_impl.cpp | 39 pattern_->StrokeText(fillTextInfo.text, Offset(fillTextInfo.x, fillTextInfo.y)); in SetStrokeText()
|
H A D | offscreen_canvas_rendering_context_2d_model_impl.cpp | 41 pattern_->StrokeText(fillTextInfo.text, fillTextInfo.x, fillTextInfo.y, state); in SetStrokeText()
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/canvas/ |
H A D | canvas_test_ng.cpp | 370 * @tc.desc: CustomPaintPaintMethod::FillText && StrokeText 391 * @tc.steps: step2. StrokeText : HasShadow() == false in HWTEST_F() 397 offPattern->offscreenPaintMethod_->StrokeText("test", 0.0, 0.0, 50); in HWTEST_F() 399 * @tc.steps: step3. StrokeText : HasShadow() == true in HWTEST_F()
|
/foundation/arkui/ui_lite/interfaces/kits/components/ |
H A D | ui_canvas.h | 407 void StrokeText(const char* text, const Point& point, const FontStyle& fontStyle, const Paint& paint);
|
/foundation/arkui/ace_engine_lite/frameworks/src/core/components/ |
H A D | canvas_component.h | 303 static jerry_value_t StrokeText(const jerry_value_t func,
|
H A D | canvas_component.cpp | 172 {FUNC_STROKETEXT, StrokeText}, 1281 jerry_value_t CanvasComponent::StrokeText(const jerry_value_t func, in StrokeText() function in OHOS::ACELite::CanvasComponent 1327 component->canvas_.StrokeText(textValue, startPoint, component->fontStyle_, component->paint_); in StrokeText()
|
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/ |
H A D | cj_canvas_ffi.cpp | 457 context->StrokeText(x, y, text); in FfiOHOSAceFrameworkRenderingContextStrokeText()
|