Lines Matching defs:rowsMaxHeight
222 void FlexLayout::GetCrossAxisPosY(int16_t& posY, uint16_t& count, uint16_t* rowsMaxHeight, UIView* child)
224 if ((rowsMaxHeight == nullptr) || (child == nullptr)) {
235 offset += rowsMaxHeight[i];
240 offset += rowsMaxHeight[i];
245 offset += rowsMaxHeight[i];
247 offset = (rowsMaxHeight[0] - offset) / 2; // 2: half
249 offset += (rowsMaxHeight[i - 1] + rowsMaxHeight[i]) / 2; // 2: half
266 uint16_t* rowsMaxHeight = maxHeightsBuf;
274 rowsMaxHeight = new uint16_t[rowCount_]();
278 GetRowMaxHeight(rowCount_, rowsMaxHeight);
295 GetCrossAxisPosY(posY, count, rowsMaxHeight, child);
310 delete[] rowsMaxHeight;