HomeSort by relevance Sort by last modified time
    Searched refs:maxDescent (Results 1 - 5 of 5) sorted by null

  /frameworks/base/core/java/android/widget/
LinearLayout.java     [all...]
  /external/webkit/Source/WebCore/rendering/
InlineFlowBox.cpp 451 void InlineFlowBox::adjustMaxAscentAndDescent(int& maxAscent, int& maxDescent, int maxPositionTop, int maxPositionBottom)
461 if (maxAscent + maxDescent < lineHeight)
462 maxDescent = lineHeight - maxAscent;
465 if (maxAscent + maxDescent < lineHeight)
466 maxAscent = lineHeight - maxDescent;
469 if (maxAscent + maxDescent >= max(maxPositionTop, maxPositionBottom))
474 static_cast<InlineFlowBox*>(curr)->adjustMaxAscentAndDescent(maxAscent, maxDescent, maxPositionTop, maxPositionBottom);
479 int& maxAscent, int& maxDescent, bool& setMaxAscent, bool& setMaxDescent,
488 // the root box's baseline. The maxDescent value represents the distance of the lowest point of any box
496 // root line box, we only consider it to affect the maxAscent and maxDescent values if som
    [all...]
InlineFlowBox.h 166 int& maxAscent, int& maxDescent, bool& setMaxAscent, bool& setMaxDescent,
168 void adjustMaxAscentAndDescent(int& maxAscent, int& maxDescent,
RootInlineBox.cpp 234 int maxDescent = 0;
243 computeLogicalBoxHeights(this, maxPositionTop, maxPositionBottom, maxAscent, maxDescent, setMaxAscent, setMaxDescent, noQuirksMode,
246 if (maxAscent + maxDescent < max(maxPositionTop, maxPositionBottom))
247 adjustMaxAscentAndDescent(maxAscent, maxDescent, maxPositionTop, maxPositionBottom);
249 int maxHeight = maxAscent + maxDescent;
629 // the root box's baseline, then we contribute to the maxDescent value.
    [all...]
RenderFlexibleBox.cpp 351 int maxAscent = 0, maxDescent = 0;
381 maxDescent = max(maxDescent, descent);
384 setHeight(max(yPos + maxAscent + maxDescent, height()));
    [all...]

Completed in 1126 milliseconds