Lines Matching defs:posY
222 void FlexLayout::GetCrossAxisPosY(int16_t& posY, uint16_t& count, uint16_t* rowsMaxHeight, UIView* child)
237 posY = top + offset;
242 posY = GetHeight() - child->GetRelativeRect().GetHeight() - bottom - offset;
251 posY = (GetHeight() - child->GetRelativeRect().GetHeight() - top - bottom) / 2 + top + offset; // 2: half
260 int16_t posY = 0;
295 GetCrossAxisPosY(posY, count, rowsMaxHeight, child);
298 posY - child->GetStyle(STYLE_MARGIN_TOP));
300 child->SetPosition(posX - left, posY - child->GetStyle(STYLE_MARGIN_TOP));
448 int16_t posY = 0;
468 GetColumnStartPos(posY, interval, count, columnsHeight, columnsChildNum);
470 GetNoWrapStartPos(GetHeight(), posY, interval);
477 posY += top;
478 if (((posY + child->GetRelativeRect().GetHeight() + bottom) > GetHeight()) && (wrap_ == WRAP)) {
479 GetColumnStartPos(posY, interval, ++count, columnsHeight, columnsChildNum);
480 posY += top;
486 GetHeight() - posY - child->GetRelativeRect().GetHeight() - bottom);
488 child->SetPosition(posX - child->GetStyle(STYLE_MARGIN_LEFT), posY - top);
490 posY += child->GetRelativeRect().GetHeight() + bottom + interval;