Lines Matching defs:interval
37 int16_t& interval,
46 interval = 0;
60 interval = (length - validLengths[count]) / childsNum[count];
61 pos = interval / 2; // 2: half
63 interval = (length - validLengths[count]) / (childsNum[count] + 1);
64 pos = interval;
66 interval = (length - validLengths[count]) / (childsNum[count] - 1);
71 void FlexLayout::GetNoWrapStartPos(const int16_t& length, int16_t& majorPos, int16_t& interval)
77 GetStartPos(length, majorPos, interval, 0, &totalValidLength, &childrenNum);
81 int16_t& interval,
86 GetStartPos(GetWidth(), pos, interval, count, rowsWidth, rowsChildNum);
90 int16_t& interval,
95 GetStartPos(GetHeight(), pos, interval, count, columnsHeight, columnsChildNum);
258 int16_t interval = 0;
280 GetRowStartPos(posX, interval, count, rowsWidth, rowsChildNum);
282 GetNoWrapStartPos(GetWidth(), posX, interval);
291 GetRowStartPos(posX, interval, ++count, rowsWidth, rowsChildNum);
302 posX += child->GetRelativeRect().GetWidth() + right + interval;
446 int16_t interval = 0;
468 GetColumnStartPos(posY, interval, count, columnsHeight, columnsChildNum);
470 GetNoWrapStartPos(GetHeight(), posY, interval);
479 GetColumnStartPos(posY, interval, ++count, columnsHeight, columnsChildNum);
490 posY += child->GetRelativeRect().GetHeight() + bottom + interval;