Home
last modified time | relevance | path

Searched refs:UpdateSpan (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/grid_row/old_cases/
H A Dgrid_row_test_ng.cpp103 colLayoutFront->UpdateSpan(V2::GridContainerSize(1)); in SetUp()
108 colLayoutBack->UpdateSpan(V2::GridContainerSize(1)); in SetUp()
151 layoutProperty->UpdateSpan(V2::GridContainerSize(span)); in TestGridColWidth()
166 firstColLayoutProperty->UpdateSpan(V2::GridContainerSize(span)); in TestGridColGeometry()
546 firstColLayoutProperty->UpdateSpan(V2::GridContainerSize(1));
594 firstColLayoutProperty->UpdateSpan(V2::GridContainerSize(1));
642 firstColLayoutProperty->UpdateSpan(V2::GridContainerSize(1));
690 firstColLayoutProperty->UpdateSpan(V2::GridContainerSize(1));
738 firstColLayoutProperty->UpdateSpan(V2::GridContainerSize(1));
789 firstColLayoutProperty->UpdateSpan(V2::GridContainerSize(1));
[all …]
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/property/
H A Dgrid_property_test_ng.cpp97 bool result = gridProperty->UpdateSpan(SPANTWO, type);
104 bool result_Span = gridProperty->UpdateSpan(SPANONE, type);
137 bool result = gridProperty->UpdateSpan(SPANONE, type);
186 gridProperty->UpdateSpan(SPANONE, type);
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/property/
H A Dgrid_property.h85 bool UpdateSpan(int32_t span, GridSizeType type = GridSizeType::UNDEFINED);
H A Dgrid_property.cpp63 bool GridProperty::UpdateSpan(int32_t span, GridSizeType type) in UpdateSpan() function in OHOS::Ace::NG::GridProperty
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/layout/
H A Dlayout_property_test_ng.cpp476 bool spanResult = layoutProperty->gridProperty_->UpdateSpan(SPAN_ONE.value(), GridSizeType::XS);
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/layout/
H A Dlayout_property.cpp506 bool isSpanUpdated = (span.has_value() && gridProperty_->UpdateSpan(span.value(), type)); in UpdateGridProperty()