Searched refs:cellLength (Results 1 - 12 of 12) sorted by relevance
/foundation/graphic/graphic_utils_lite/interfaces/kits/gfx_utils/diagram/scanline/ |
H A D | geometry_scanline.h | 105 void AddCells(int32_t x, uint32_t cellLength, const uint8_t* covers) in AddCells() argument 108 if (memcpy_s(&arrayCovers_[x], cellLength * sizeof(uint8_t), covers, cellLength * sizeof(uint8_t)) != EOK) { in AddCells() 113 curSpanBlock_->spanLength += static_cast<int16_t>(cellLength); in AddCells() 117 curSpanBlock_->spanLength = static_cast<int16_t>(cellLength); in AddCells() 120 lastScaneLineXCoord_ = x + cellLength - 1; in AddCells()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid/grid_adaptive/ |
H A D | grid_adaptive_layout_algorithm.cpp | 42 auto cellLength = gridLayoutProperty->GetCellLength(); in Measure() local 43 if (cellLength.has_value() && cellLength > 0) { in Measure() 44 auto cellLengthInPx = static_cast<float>(Dimension(cellLength.value(), DimensionUnit::VP).ConvertToPx()); in Measure()
|
/foundation/arkui/ace_engine/frameworks/core/components/grid_layout/ |
H A D | grid_layout_component.h | 238 void SetCellLength(int32_t cellLength) in SetCellLength() argument 240 cellLength_ = cellLength; in SetCellLength()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_grid.h | 46 static void CellLength(int32_t cellLength);
|
H A D | js_grid.cpp | 374 JSClass<JSGrid>::StaticMethod("cellLength", &JSGrid::CellLength, opt); in JSBind() 477 void JSGrid::CellLength(int32_t cellLength) in CellLength() argument 479 GridModel::GetInstance()->SetCellLength(cellLength); in CellLength()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid/ |
H A D | grid_model_ng.h | 93 static void SetCellLength(FrameNode* frameNode, int32_t cellLength);
|
H A D | grid_model_ng.cpp | 462 void GridModelNG::SetCellLength(FrameNode* frameNode, int32_t cellLength) in SetCellLength() argument 464 ACE_UPDATE_NODE_LAYOUT_PROPERTY(GridLayoutProperty, CellLength, cellLength, frameNode); in SetCellLength()
|
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/ |
H A D | grid_modifier.cpp | 234 void SetGridCellLength(ArkUINodeHandle node, int32_t cellLength) in SetGridCellLength() argument 238 GridModelNG::SetCellLength(frameNode, cellLength); in SetGridCellLength()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/ |
H A D | arkts_native_grid_bridge.cpp | 496 int32_t cellLength = arg_cellLength->Int32Value(vm); in SetCellLength() local 497 GetArkUINodeModifiers()->getGridModifier()->setGridCellLength(nativeNode, cellLength); in SetCellLength()
|
/foundation/arkui/ace_engine/frameworks/core/interfaces/cjui/ |
H A D | cjui_api.h | 1126 void (*setGridCellLength)(ArkUINodeHandle node, ArkUI_Int32 cellLength);
|
/foundation/arkui/ace_engine/frameworks/core/interfaces/arkoala/ |
H A D | arkoala_api.h | 2668 void (*setGridCellLength)(ArkUINodeHandle node, ArkUI_Int32 cellLength);
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/ |
H A D | arkComponent.js | 5810 cellLength(value) {
|
Completed in 62 milliseconds