/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid/ |
H A D | grid_layout_options.h | 36 int32_t rowStart = -1; member 42 return (rowStart == itemRect.rowStart) && (rowSpan == itemRect.rowSpan) && in operator ==() 49 // [rowStart, columnStart, rowSpan, columnSpan]
|
H A D | grid_item_model_ng.h | 42 static void SetRowStart(FrameNode* frameNode, int32_t rowStart);
|
H A D | grid_item_model_ng.cpp | 150 void GridItemModelNG::SetRowStart(FrameNode* frameNode, int32_t rowStart) in SetRowStart() argument 152 ACE_UPDATE_NODE_LAYOUT_PROPERTY(GridItemLayoutProperty, RowStart, rowStart, frameNode); in SetRowStart()
|
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/ |
H A D | cj_grid_item_ffi.cpp | 39 void FfiOHOSAceFrameworkGridItemSetRowStart(int32_t rowStart) in FfiOHOSAceFrameworkGridItemSetRowStart() argument 41 GridItemModel::GetInstance()->SetRowStart(rowStart); in FfiOHOSAceFrameworkGridItemSetRowStart()
|
H A D | cj_grid_item_ffi.h | 27 CJ_EXPORT void FfiOHOSAceFrameworkGridItemSetRowStart(int32_t rowStart);
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/grid/ |
H A D | grid_test_ng.cpp | 171 int32_t rowStart, int32_t rowEnd, int32_t colStart, int32_t colEnd, float width, float height) in CreateBigItem() 176 if (rowStart != NULL_VALUE) { in CreateBigItem() 177 itemModel.SetRowStart(rowStart); in CreateBigItem() 203 void GridTestNg::CreateBigRowItem(int32_t rowStart, int32_t rowEnd) in CreateBigRowItem() argument 205 CreateBigItem(rowStart, rowEnd, NULL_VALUE, NULL_VALUE, ITEM_WIDTH, NULL_VALUE); in CreateBigRowItem() 170 CreateBigItem( int32_t rowStart, int32_t rowEnd, int32_t colStart, int32_t colEnd, float width, float height) CreateBigItem() argument
|
H A D | grid_test_ng.h | 67 void CreateBigItem(int32_t rowStart = NULL_VALUE, int32_t rowEnd = NULL_VALUE, int32_t colStart = NULL_VALUE, 70 void CreateBigRowItem(int32_t rowStart, int32_t rowEnd);
|
H A D | grid_option_layout_test_ng.cpp | 569 EXPECT_EQ(retItemRect.rowStart, -1); in HWTEST_F() 653 itemRect.rowStart = gridItems[index][0]; in HWTEST_F() 688 tmpItemRect.rowStart = 1; in HWTEST_F() 714 EXPECT_EQ(retItemRect.rowStart, 1); in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/ |
H A D | grid_item_modifier.cpp | 53 void SetGridItemRowStart(ArkUINodeHandle node, int32_t rowStart) in SetGridItemRowStart() argument 57 GridItemModelNG::SetRowStart(frameNode, rowStart); in SetGridItemRowStart()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid/grid_layout/ |
H A D | grid_layout_algorithm.cpp | 240 rect.rowStart = childLayoutProperty->GetRowStart().value_or(-1); in GetItemRect() 242 rect.rowSpan = std::max(childLayoutProperty->GetRowEnd().value_or(-1) - rect.rowStart + 1, 1); in GetItemRect() 285 int32_t itemRowStart = rect.rowStart; in Measure() 379 if (!(rect.rowStart == -1 && rect.columnStart == -1 && rect.rowSpan == 1 && rect.columnSpan == 1)) { in PrintConflictingPositionLog() 383 itemIndex, rect.rowStart, rect.columnStart, rect.rowSpan, rect.columnSpan, rowIndex, colIndex, rowSpan, in PrintConflictingPositionLog()
|
/foundation/arkui/ace_engine/frameworks/core/components/declaration/div/ |
H A D | div_declaration.h | 40 int32_t rowStart = -1; member
|
H A D | div_declaration.cpp | 119 divStyle.rowStart = StringToInt(value); in SetSpecializedStyle()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_grid_item.h | 70 static void SetRowStart(int32_t rowStart);
|
H A D | js_grid_item.cpp | 104 void JSGridItem::SetRowStart(int32_t rowStart) in SetRowStart() argument 106 GridItemModel::GetInstance()->SetRowStart(rowStart); in SetRowStart() 182 JSClass<JSGridItem>::StaticMethod("rowStart", &JSGridItem::SetRowStart, opt); in JSBind()
|
H A D | js_grid.cpp | 96 JSRef<JSVal> rowStart = array->GetValueAt(GridItemRect::ROW_START); in ParseGridItemRect() local 97 if (rowStart->IsNumber()) { in ParseGridItemRect() 98 gridItemRect.rowStart = rowStart->ToNumber<int32_t>(); in ParseGridItemRect()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/ |
H A D | arkts_native_grid_bridge.cpp | 61 auto rowStart = array->GetValueAt(GridItemRect::ROW_START); in ParseGridItemRect() local 62 if (rowStart->IsNumber()) { in ParseGridItemRect() 63 gridItemRect.rowStart = rowStart->ToNumber<int32_t>(); in ParseGridItemRect()
|
/foundation/arkui/ui_lite/frameworks/draw/ |
H A D | draw_utils.cpp | 208 uint16_t rowStart = (posY >= letterInfo.mask.GetTop()) ? 0 : (letterInfo.mask.GetTop() - posY); in DrawColorLetter() local 216 Rect subRect(posX + colStart, posY + rowStart, colEnd - 1 + posX, rowEnd - 1 + posY); in DrawColorLetter() 278 uint16_t rowStart = (posY >= letterInfo.mask.GetTop()) ? 0 : (letterInfo.mask.GetTop() - posY); in DrawNormalLetter() local 286 Rect subRect(posX + colStart, posY + rowStart, colEnd - 1 + posX, rowEnd - 1 + posY); in DrawNormalLetter() 332 int16_t rowStart = subRect.GetY() - fontRect.GetY(); in DrawLetter() local 333 int16_t rowEnd = rowStart + subRect.GetHeight(); in DrawLetter() 339 fontMap += (rowStart * letterWidthInByte) + ((colStart * fontWeight) >> SHIFT_3); in DrawLetter() 350 for (int16_t i = rowStart; i < rowEnd; i++) { in DrawLetter()
|
/foundation/arkui/ace_engine/frameworks/core/components/grid_layout/ |
H A D | render_grid_layout.cpp | 1749 double rowStart = 0.0; 1752 rowStart = rowEnd; 1760 if (dragRelativelyY >= rowStart && dragRelativelyY <= rowEnd) {
|
/foundation/arkui/ace_engine/frameworks/core/interfaces/cjui/ |
H A D | cjui_api.h | 1160 void (*setGridItemRowStart)(ArkUINodeHandle node, ArkUI_Int32 rowStart);
|
/foundation/arkui/ace_engine/frameworks/core/interfaces/arkoala/ |
H A D | arkoala_api.h | 2707 void (*setGridItemRowStart)(ArkUINodeHandle node, ArkUI_Int32 rowStart);
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/ |
H A D | arkComponent.js | 26889 rowStart(value) {
|