/foundation/arkui/ace_engine/frameworks/core/components/box/ |
H A D | box_component_helper.h | 203 static BorderStyle GetBorderStyle(const RefPtr<Decoration> decoration) in GetBorderStyle() function in OHOS::Ace::BoxComponentHelper 209 return border.Left().GetBorderStyle(); in GetBorderStyle() 218 return border.Left().GetBorderStyle(); in GetBorderStyleLeft() 227 return border.Right().GetBorderStyle(); in GetBorderStyleRight() 236 return border.Top().GetBorderStyle(); in GetBorderStyleTop() 245 return border.Bottom().GetBorderStyle(); in GetBorderStyleBottom()
|
H A D | render_box.h | 177 BorderStyle GetBorderStyle(const BorderEdgeHelper& helper) const;
|
H A D | rosen_render_box.cpp | 736 BorderStyle leftStyle = border.Left().GetBorderStyle(); 737 return leftStyle == border.Top().GetBorderStyle() && leftStyle == border.Right().GetBorderStyle() && 738 leftStyle == border.Bottom().GetBorderStyle();
|
/foundation/arkui/ace_engine/frameworks/core/components/common/properties/ |
H A D | border_edge.h | 42 BorderStyle GetBorderStyle() const in GetBorderStyle() function in OHOS::Ace::final 60 (borderEdge.GetWidth().Unit() == width_.Unit()) && (borderEdge.GetBorderStyle() == style_); in operator ==()
|
H A D | border.h | 71 return left_.GetBorderStyle() == BorderStyle::SOLID && bottom_.GetBorderStyle() == BorderStyle::SOLID && in IsAllSolidStyle() 72 right_.GetBorderStyle() == BorderStyle::SOLID && top_.GetBorderStyle() == BorderStyle::SOLID; in IsAllSolidStyle()
|
/foundation/arkui/ace_engine/frameworks/core/components_v2/inspector/ |
H A D | image_composed_element.h | 45 std::string GetBorderStyle() const override;
|
H A D | image_composed_element.cpp | 189 std::string ImageComposedElement::GetBorderStyle() const in GetBorderStyle() function in OHOS::Ace::V2::ImageComposedElement 196 int32_t style = static_cast<int32_t>(border.Left().GetBorderStyle()); in GetBorderStyle()
|
H A D | inspector_node.h | 131 virtual std::string GetBorderStyle() const = 0;
|
H A D | inspector_composed_element.h | 144 std::string GetBorderStyle() const override;
|
H A D | inspector_composed_element.cpp | 92 { "borderStyle", [](const InspectorNode& inspector) { return inspector.GetBorderStyle(); } }, 619 jsonValue->Put("style", GetBorderStyle().c_str()); in GetUnifyBorder() 813 std::string InspectorComposedElement::GetBorderStyle() const in GetBorderStyle() function in OHOS::Ace::V2::InspectorComposedElement 816 int32_t style = static_cast<int32_t>(border.Left().GetBorderStyle()); in GetBorderStyle()
|
/foundation/arkui/ace_engine/frameworks/core/components/common/painter/ |
H A D | rosen_decoration_painter.cpp | 1886 rsNode->SetBorderStyle(static_cast<uint32_t>(border.Left().GetBorderStyle()), in PaintBorder() 1887 static_cast<uint32_t>(border.Top().GetBorderStyle()), static_cast<uint32_t>(border.Right().GetBorderStyle()), in PaintBorder() 1888 static_cast<uint32_t>(border.Bottom().GetBorderStyle())); in PaintBorder() 2142 if (border.Top().GetBorderStyle() != BorderStyle::SOLID || border.Right().GetBorderStyle() != BorderStyle::SOLID || in CanUseFillStyle() 2143 border.Bottom().GetBorderStyle() != BorderStyle::SOLID || in CanUseFillStyle() 2144 border.Left().GetBorderStyle() != BorderStyle::SOLID) { in CanUseFillStyle() 2166 if (border.Left().GetBorderStyle() != border.Top().GetBorderStyle() || in CanUsePathRRect() [all...] |
/foundation/arkui/ace_engine/frameworks/core/animation/ |
H A D | animatable_properties.h | 59 BorderStyle GetBorderStyle(const BorderEdgeHelper& helper) const;
|
H A D | property_animatable_helper.h | 71 if (edge.GetBorderStyle() == value) { in Set()
|
H A D | animatable_properties.cpp | 336 animatableProperties->GetBorderStyle(setter)); in UpdatePropAnimation() 653 BorderStyle AnimatableProperties::GetBorderStyle(const BorderEdgeHelper& helper) const in GetBorderStyle() function in OHOS::Ace::AnimatableProperties 659 return renderNode->GetBorderStyle(helper); in GetBorderStyle()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/modifier/ |
H A D | rs_modifier_extractor.h | 66 Vector4<uint32_t> GetBorderStyle() const;
|
H A D | rs_modifier_extractor.cpp | 209 Vector4<uint32_t> RSModifierExtractor::GetBorderStyle() const in GetBorderStyle() function in OHOS::Rosen::RSModifierExtractor
|
/foundation/arkui/ace_engine/frameworks/core/components/counter/ |
H A D | counter_theme.h | 125 const NG::BorderStyleProperty& GetBorderStyle() const in GetBorderStyle() function in OHOS::Ace::CounterTheme
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/security_component/ |
H A D | security_component_test_ng.cpp | 344 auto borderStyle = buttonRender->GetBorderStyle().value_or(BorderStyleProperty()); in HWTEST_F() 473 auto borderStyle = buttonRender->GetBorderStyle().value_or(BorderStyleProperty()); in HWTEST_F() 531 auto borderStyle = buttonRender->GetBorderStyle().value_or(BorderStyleProperty()); in HWTEST_F() 573 auto borderStyle = buttonRender->GetBorderStyle().value_or(BorderStyleProperty()); in HWTEST_F() 792 auto borderStyle = buttonRender->GetBorderStyle().value_or(BorderStyleProperty()); in HWTEST_F() 922 auto borderStyle = buttonRender->GetBorderStyle().value_or(BorderStyleProperty()); in HWTEST_F() 980 auto borderStyle = buttonRender->GetBorderStyle().value_or(BorderStyleProperty()); in HWTEST_F() 1022 auto borderStyle = buttonRender->GetBorderStyle().value_or(BorderStyleProperty()); in HWTEST_F() 1220 auto borderStyle = buttonRender->GetBorderStyle().value_or(BorderStyleProperty()); in HWTEST_F() 1349 auto borderStyle = buttonRender->GetBorderStyle() in HWTEST_F() [all...] |
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_client/fuzztest/rsmodifierextractor_fuzzer/ |
H A D | rsmodifierextractor_fuzzer.cpp | 97 modifierExtractor.GetBorderStyle();
in DoGet001()
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/overlay/ |
H A D | overlay_manager_test_update_ng.cpp | 1078 EXPECT_EQ(renderContext->GetBorderStyle().has_value(), false); in HWTEST_F() 1091 EXPECT_EQ(renderContext->GetBorderStyle().value(), BORDER_STYLE_TEST); in HWTEST_F() 1098 EXPECT_EQ(renderContext->GetBorderStyle().value(), NEW_BORDER_STYLE_TEST); in HWTEST_F() 1294 EXPECT_EQ(renderContext->GetBorderStyle().has_value(), false); in HWTEST_F() 1306 EXPECT_EQ(renderContext->GetBorderStyle().value(), BORDER_STYLE_TEST); in HWTEST_F() 1313 EXPECT_EQ(renderContext->GetBorderStyle().value(), NEW_BORDER_STYLE_TEST); in HWTEST_F() 1509 EXPECT_EQ(renderContext->GetBorderStyle().has_value(), false); in HWTEST_F() 1521 EXPECT_EQ(renderContext->GetBorderStyle().value(), BORDER_STYLE_TEST); in HWTEST_F() 1528 EXPECT_EQ(renderContext->GetBorderStyle().value(), NEW_BORDER_STYLE_TEST); in HWTEST_F() 1724 EXPECT_EQ(renderContext->GetBorderStyle() in HWTEST_F() [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/counter/ |
H A D | counter_model_ng.cpp | 80 buttonNode->GetRenderContext()->UpdateBorderStyle(counterTheme->GetBorderStyle()); in CreateButtonChild() 108 contentNode->GetRenderContext()->UpdateBorderStyle(counterTheme->GetBorderStyle()); in CreateContentNodeChild()
|
/foundation/arkui/ace_engine/frameworks/core/components/bubble/ |
H A D | rosen_render_bubble.cpp | 761 if (edge.GetBorderStyle() == BorderStyle::DOTTED) { in PaintBorder() 766 } else if (edge.GetBorderStyle() == BorderStyle::DASHED) { in PaintBorder() 807 if (edge.GetBorderStyle() == BorderStyle::DOTTED) { in PaintBorder() 811 } else if (edge.GetBorderStyle() == BorderStyle::DASHED) { in PaintBorder()
|
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_client/unittest/modifier/ |
H A D | rs_modifier_test.cpp | 1230 ASSERT_EQ(node->GetStagingProperties().GetBorderStyle(), value); in HWTEST_F() 1234 ASSERT_EQ(node->GetStagingProperties().GetBorderStyle(), node1->GetStagingProperties().GetBorderStyle()); in HWTEST_F() 1251 ASSERT_EQ(node->GetStagingProperties().GetBorderStyle(), value); in HWTEST_F() 1255 ASSERT_EQ(node->GetStagingProperties().GetBorderStyle(), value); in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/bubble/ |
H A D | bubble_paint_method.cpp | 104 if (edge.GetBorderStyle() == BorderStyle::DOTTED) { in PaintBorder() 116 } else if (edge.GetBorderStyle() == BorderStyle::DASHED) { in PaintBorder()
|
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_client/unittest/ui/ |
H A D | rs_canvas_node_test.cpp | 2886 EXPECT_TRUE(canvasNode->GetStagingProperties().GetBorderStyle() == borderStyle); in HWTEST_F() 2899 EXPECT_TRUE(canvasNode->GetStagingProperties().GetBorderStyle() == borderStyle); in HWTEST_F() 2912 EXPECT_TRUE(canvasNode->GetStagingProperties().GetBorderStyle() == borderStyle); in HWTEST_F() 2925 EXPECT_TRUE(canvasNode->GetStagingProperties().GetBorderStyle() == borderStyle); in HWTEST_F()
|