Searched defs:maxDescent (Results 1 - 4 of 4) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
H A D | RenderDeprecatedFlexibleBox.cpp | 392 LayoutUnit maxAscent = 0, maxDescent = 0; local 422 maxDescent = max(maxDescent, descent); 425 setHeight(max(yPos + maxAscent + maxDescent, height()));
|
H A D | RenderFlexibleBox.cpp | 1089 LayoutUnit maxAscent = 0, maxDescent = 0; // Used when align-items: baseline. local 1120 maxDescent = std::max(maxDescent, descent); 1122 childCrossAxisMarginBoxExtent = maxAscent + maxDescent;
|
H A D | RootInlineBox.cpp | 248 int maxDescent = 0; local 257 computeLogicalBoxHeights(this, maxPositionTop, maxPositionBottom, maxAscent, maxDescent, setMaxAscent, setMaxDescent, noQuirksMode, 260 if (maxAscent + maxDescent < max(maxPositionTop, maxPositionBottom)) 261 adjustMaxAscentAndDescent(maxAscent, maxDescent, maxPositionTop, maxPositionBottom); 263 LayoutUnit maxHeight = maxAscent + maxDescent; 797 // the root box's baseline, then we contribute to the maxDescent value.
|
H A D | InlineFlowBox.cpp | 474 void InlineFlowBox::adjustMaxAscentAndDescent(int& maxAscent, int& maxDescent, int maxPositionTop, int maxPositionBottom) argument 484 if (maxAscent + maxDescent < lineHeight) 485 maxDescent = lineHeight - maxAscent; 488 if (maxAscent + maxDescent < lineHeight) 489 maxAscent = lineHeight - maxDescent; 492 if (maxAscent + maxDescent >= max(maxPositionTop, maxPositionBottom)) 497 toInlineFlowBox(curr)->adjustMaxAscentAndDescent(maxAscent, maxDescent, maxPositionTop, maxPositionBottom); 502 int& maxAscent, int& maxDescent, bool& setMaxAscent, bool& setMaxDescent, 511 // the root box's baseline. The maxDescent value represents the distance of the lowest point of any box 519 // root line box, we only consider it to affect the maxAscent and maxDescent value 501 computeLogicalBoxHeights(RootInlineBox* rootBox, LayoutUnit& maxPositionTop, LayoutUnit& maxPositionBottom, int& maxAscent, int& maxDescent, bool& setMaxAscent, bool& setMaxDescent, bool strictMode, GlyphOverflowAndFallbackFontsMap& textBoxDataMap, FontBaseline baselineType, VerticalPositionCache& verticalPositionCache) argument [all...] |
Completed in 78 milliseconds