Home
last modified time | relevance | path

Searched refs:outerBorderWidth_ (Results 1 – 7 of 7) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/menu/
H A Dmenu_theme.h85 theme->outerBorderWidth_ = pattern->GetAttr<double>("menu_outer_border_width", 1.0); in ParsePattern()
261 return outerBorderWidth_; in GetOuterBorderWidth()
359 double outerBorderWidth_ = 1.0f; variable
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/layout/
H A Dlayout_property.h109 return outerBorderWidth_; in GetOuterBorderWidthProperty()
434 std::unique_ptr<BorderWidthProperty> outerBorderWidth_; variable
H A Dlayout_property.cpp157 outerBorderWidth_.reset(); in Reset()
985 if (!outerBorderWidth_) { in UpdateOuterBorderWidth()
986 outerBorderWidth_ = std::make_unique<BorderWidthProperty>(); in UpdateOuterBorderWidth()
988 if (outerBorderWidth_->UpdateWithCheck(value)) { in UpdateOuterBorderWidth()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/bubble/
H A Dbubble_paint_method.cpp185 paint.SetWidth(outerBorderWidth_); in PaintBubble()
239 paint.SetWidth(outerBorderWidth_); in PaintOuterBorder()
398 borderOffset = outerBorderWidth_; in GetInnerBorderOffset()
412 borderOffset = -outerBorderWidth_; in GetBorderOffset()
504 borderOffset = -outerBorderWidth_; in BuildTopDoubleBorderPath()
H A Dbubble_paint_method.h155 float outerBorderWidth_ = Dimension(0.8_vp).ConvertToPx(); variable
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/layout/
H A Dlayout_property_test_ng.cpp1355 layoutProperty->outerBorderWidth_ = std::make_unique<BorderWidthProperty>();
1356 layoutProperty->outerBorderWidth_->leftDimen = Dimension(1.0f, DimensionUnit::PX);
1360 EXPECT_EQ(layoutProperty->outerBorderWidth_->leftDimen, Dimension(2.0f, DimensionUnit::FP));
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/bubble/
H A Dbubble_test_ng.cpp2117 EXPECT_EQ(bubblePaintMethod.GetBorderOffset(), -bubblePaintMethod.outerBorderWidth_);