/foundation/arkui/ace_engine/frameworks/core/components_ng/property/ |
H A D | border_property.cpp | 44 res->Put("bottom", style[static_cast<int>(styleBottom.value_or(BorderStyle::SOLID))]); in ToJsonValue() 233 styleBottom = borderStyle; in SetBorderStyle() 239 (styleBottom == value.styleBottom); in operator ==()
|
H A D | border_property.h | 343 std::optional<BorderStyle> styleBottom; member
|
/foundation/arkui/ace_engine/frameworks/core/components/box/ |
H A D | box_component_helper.h | 190 const BorderStyle& styleRight, const BorderStyle& styleTop, const BorderStyle& styleBottom) in SetBorderStyle() 199 border.SetBottomStyle(styleBottom); in SetBorderStyle() 189 SetBorderStyle(const RefPtr<Decoration> decoration, const BorderStyle& styleLeft, const BorderStyle& styleRight, const BorderStyle& styleTop, const BorderStyle& styleBottom) SetBorderStyle() argument
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/base/ |
H A D | view_abstract_model_ng.h | 379 const std::optional<BorderStyle>& styleTop, const std::optional<BorderStyle>& styleBottom) override 385 borderStyles.styleBottom = styleBottom.value_or(BorderStyle::SOLID); 491 const std::optional<BorderStyle>& styleTop, const std::optional<BorderStyle>& styleBottom) override 497 borderStyles.styleBottom = styleBottom.value_or(BorderStyle::SOLID);
|
H A D | view_abstract_model.h | 125 const std::optional<BorderStyle>& styleBottom) = 0; 158 const std::optional<BorderStyle>& styleBottom) = 0;
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/ |
H A D | view_abstract_model_impl.h | 73 const std::optional<BorderStyle>& styleTop, const std::optional<BorderStyle>& styleBottom) override; 91 const std::optional<BorderStyle>& styleTop, const std::optional<BorderStyle>& styleBottom) override {}
|
H A D | view_abstract_model_impl.cpp | 484 const std::optional<BorderStyle>& styleBottom) in SetBorderStyle() 490 BorderStyle bottom = styleBottom.value_or(BorderStyle::SOLID); in SetBorderStyle() 482 SetBorderStyle(const std::optional<BorderStyle>& styleLeft, const std::optional<BorderStyle>& styleRight, const std::optional<BorderStyle>& styleTop, const std::optional<BorderStyle>& styleBottom) SetBorderStyle() argument
|
/foundation/arkui/ace_engine/test/unittest/core/property/ |
H A D | border_property_test_ng.cpp | 72 borderStyleProperty.styleBottom = BorderStyle::DASHED; in HWTEST_F()
|
/foundation/arkui/ace_engine/interfaces/napi/kits/promptaction/ |
H A D | prompt_action.cpp | 1032 std::optional<BorderStyle> styleBottom; in GetBorderStyleProps() local 1042 if (ParseStyle(env, bottomApi, styleBottom)) { in GetBorderStyleProps() 1043 styleProps.styleBottom = styleBottom; in GetBorderStyleProps()
|
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/ |
H A D | render_node_modifier.cpp | 282 .styleBottom = static_cast<BorderStyle>(bottom), in SetBorderStyle()
|
H A D | node_text_area_modifier.cpp | 1246 SetOptionalBorderStyle(borderStyles.styleBottom, values, valuesSize, offset); in SetAllOptionalBorderStyle() 1396 borderStyles.styleBottom = ConvertBorderStyle(styles[NUM_2]); in SetTextAreaBorderStyle()
|
H A D | node_common_modifier.cpp | 957 * styles[0] : styleLeft, styles[1] : styleRight, styles[2] : styleTop, styles[3] : styleBottom 973 borderStyles.styleBottom = ConvertBorderStyle(styles[NUM_2]); in SetBorderStyle() 1833 * colorAndStyle[offset + 14], option[offset + 15]: borderStyles styleBottom(hasValue, value) 1872 SetOptionalBorderStyle(borderStyles.styleBottom, colorAndStyle, colorAndStyleSize, colorAndStyleOffset); in SetBorder() 4704 SetOptionalBorderStyle(borderStyles.styleBottom, values, valuesSize, styleOffset); in SetOutlineStyle() 4735 * colorAndStyle[offset + 14], option[offset + 15]: OutlineStyles styleBottom(hasValue, value) 4777 SetOptionalBorderStyle(borderStyles.styleBottom, colorAndStyle, colorAndStyleSize, colorAndStyleOffset); in SetOutline() 5096 (*values)[NUM_2] = static_cast<ArkUI_Int32>(styles.styleBottom.value()); in GetBorderStyle()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/ |
H A D | arkts_utils.cpp | 1737 std::optional<BorderStyle> styleBottom; in ParseOuterBorderStyle() local 1751 styleBottom = ConvertBorderStyle(bottomArg->Int32Value(vm)); in ParseOuterBorderStyle() 1760 PushOuterBorderStyleVector(styleBottom, values); in ParseOuterBorderStyle()
|
H A D | arkts_native_common_bridge.cpp | 1072 std::optional<BorderStyle> styleBottom; in ParseOuterBorderStyle() local 1086 styleBottom = ConvertBorderStyle(bottomArg->Int32Value(vm)); in ParseOuterBorderStyle() 1095 PushOuterBorderStyleVector(styleBottom, values); in ParseOuterBorderStyle()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_view_abstract.cpp | 4709 std::optional<BorderStyle> styleBottom; in ParseBorderStyle() local 4725 styleBottom = ConvertBorderStyle(bottomValue->ToNumber<int32_t>()); in ParseBorderStyle() 4727 ViewAbstractModel::GetInstance()->SetBorderStyle(styleLeft, styleRight, styleTop, styleBottom); in ParseBorderStyle() 4748 std::optional<BorderStyle> styleBottom; in ParseOuterBorderStyle() local 4764 styleBottom = ConvertBorderStyle(bottomValue->ToNumber<int32_t>()); in ParseOuterBorderStyle() 4766 ViewAbstractModel::GetInstance()->SetOuterBorderStyle(styleLeft, styleRight, styleTop, styleBottom); in ParseOuterBorderStyle() 10316 ConvertOptionBorderStyle(bottomValue->ToNumber<int32_t>(), borderStyleProperty.styleBottom); in ParseBorderStyleProps()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/ |
H A D | arkComponent.js | 1164 let styleBottom; 1170 styleBottom = this.value.style; 1176 styleBottom = this.value.style.bottom; 1183 styleTop, styleRight, styleBottom, styleLeft); 6799 let styleBottom; 6805 styleBottom = this.value.style; 6810 styleBottom = this.value.style.bottom; 6830 styleBottom, 16869 let styleBottom; 16875 styleBottom [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/ |
H A D | rosen_render_context.cpp | 2445 static_cast<uint32_t>(value.styleBottom.value_or(BorderStyle::SOLID))); in SetBorderStyle() 2551 static_cast<Rosen::BorderStyle>(static_cast<uint32_t>(value.styleBottom.value_or(BorderStyle::SOLID)))); in SetOuterBorderStyle()
|