Lines Matching refs:bottom

104     int16_t bottom;
116 bottom = child->GetStyle(STYLE_MARGIN_BOTTOM);
117 totalValidLength += (child->GetRelativeRect().GetHeight() + top + bottom);
156 int16_t bottom;
169 bottom = child->GetStyle(STYLE_MARGIN_BOTTOM);
177 height = MATH_MAX(height, child->GetRelativeRect().GetHeight() + top + bottom);
231 int16_t bottom = child->GetStyle(STYLE_MARGIN_BOTTOM);
242 posY = GetHeight() - child->GetRelativeRect().GetHeight() - bottom - offset;
251 posY = (GetHeight() - child->GetRelativeRect().GetHeight() - top - bottom) / 2 + top + offset; // 2: half
320 int16_t bottom;
327 bottom = child->GetStyle(STYLE_MARGIN_BOTTOM);
329 if ((pos + child->GetRelativeRect().GetHeight() + bottom) > GetHeight()) {
333 pos += child->GetRelativeRect().GetHeight() + bottom;
345 int16_t bottom;
357 bottom = child->GetStyle(STYLE_MARGIN_BOTTOM);
359 if ((pos + child->GetRelativeRect().GetHeight() + bottom) > GetHeight()) {
367 pos += child->GetRelativeRect().GetHeight() + bottom;
378 int16_t bottom;
390 bottom = child->GetStyle(STYLE_MARGIN_BOTTOM);
392 if ((pos + child->GetRelativeRect().GetHeight() + bottom) > GetHeight()) {
400 height += child->GetRelativeRect().GetHeight() + top + bottom;
404 pos += child->GetRelativeRect().GetHeight() + bottom;
476 int16_t bottom = child->GetStyle(STYLE_MARGIN_BOTTOM);
478 if (((posY + child->GetRelativeRect().GetHeight() + bottom) > GetHeight()) && (wrap_ == WRAP)) {
486 GetHeight() - posY - child->GetRelativeRect().GetHeight() - bottom);
490 posY += child->GetRelativeRect().GetHeight() + bottom + interval;