Searched defs:maxDescent (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DRenderFlexibleBox.cpp361 int maxAscent = 0, maxDescent = 0; local
394 maxDescent = max(maxDescent, descent);
397 setHeight(max(yPos + maxAscent + maxDescent, height()));
H A DRootInlineBox.cpp234 int maxDescent = 0; local
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.
H A DInlineFlowBox.cpp451 void InlineFlowBox::adjustMaxAscentAndDescent(int& maxAscent, int& maxDescent, int maxPositionTop, int maxPositionBottom) argument
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 value
478 computeLogicalBoxHeights(RootInlineBox* rootBox, int& maxPositionTop, int& maxPositionBottom, int& maxAscent, int& maxDescent, bool& setMaxAscent, bool& setMaxDescent, bool strictMode, GlyphOverflowAndFallbackFontsMap& textBoxDataMap, FontBaseline baselineType, VerticalPositionCache& verticalPositionCache) argument
[all...]

Completed in 118 milliseconds