Searched refs:colStart (Results 1 – 3 of 3) sorted by relevance
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/grid/ |
H A D | grid_test_ng.cpp | 169 int32_t rowStart, int32_t rowEnd, int32_t colStart, int32_t colEnd, float width, float height) in CreateBigItem() argument 180 if (colStart != NULL_VALUE) { in CreateBigItem() 181 itemModel.SetColumnStart(colStart); in CreateBigItem() 196 void GridTestNg::CreateBigColItem(int32_t colStart, int32_t colEnd) in CreateBigColItem() argument 198 CreateBigItem(NULL_VALUE, NULL_VALUE, colStart, colEnd, NULL_VALUE, ITEM_HEIGHT); in CreateBigColItem()
|
H A D | grid_test_ng.h | 67 …void CreateBigItem(int32_t rowStart = NULL_VALUE, int32_t rowEnd = NULL_VALUE, int32_t colStart = … 69 void CreateBigColItem(int32_t colStart, int32_t colEnd);
|
/ohos5.0/foundation/arkui/ui_lite/frameworks/draw/ |
H A D | draw_utils.cpp | 211 … uint16_t colStart = (posX >= letterInfo.mask.GetLeft()) ? 0 : (letterInfo.mask.GetLeft() - posX); in DrawColorLetter() local 216 Rect subRect(posX + colStart, posY + rowStart, colEnd - 1 + posX, rowEnd - 1 + posY); in DrawColorLetter() 281 … uint16_t colStart = (posX >= letterInfo.mask.GetLeft()) ? 0 : (letterInfo.mask.GetLeft() - posX); in DrawNormalLetter() local 286 Rect subRect(posX + colStart, posY + rowStart, colEnd - 1 + posX, rowEnd - 1 + posY); in DrawNormalLetter() 334 int16_t colStart = subRect.GetX() - fontRect.GetX(); in DrawLetter() local 335 int16_t colEnd = colStart + subRect.GetWidth(); in DrawLetter() 339 fontMap += (rowStart * letterWidthInByte) + ((colStart * fontWeight) >> SHIFT_3); in DrawLetter() 341 uint8_t offsetInFont = (colStart * fontWeight) % FONT_WEIGHT_8; in DrawLetter() 351 int16_t col = colStart; in DrawLetter() 374 screenBuffer += (screenBufferWidth - (colEnd - colStart)) * bufferPxSize; in DrawLetter()
|