Home
last modified time | relevance | path

Searched refs:maxAscent (Results 1 – 8 of 8) sorted by relevance

/external/webkit/Source/WebCore/rendering/
DInlineFlowBox.cpp451 void InlineFlowBox::adjustMaxAscentAndDescent(int& maxAscent, int& maxDescent, int maxPositionTop, … in adjustMaxAscentAndDescent() argument
461 if (maxAscent + maxDescent < lineHeight) in adjustMaxAscentAndDescent()
462 maxDescent = lineHeight - maxAscent; in adjustMaxAscentAndDescent()
465 if (maxAscent + maxDescent < lineHeight) in adjustMaxAscentAndDescent()
466 maxAscent = lineHeight - maxDescent; in adjustMaxAscentAndDescent()
469 if (maxAscent + maxDescent >= max(maxPositionTop, maxPositionBottom)) in adjustMaxAscentAndDescent()
474 …static_cast<InlineFlowBox*>(curr)->adjustMaxAscentAndDescent(maxAscent, maxDescent, maxPositionTop… in adjustMaxAscentAndDescent()
479 … int& maxAscent, int& maxDescent, bool& setMaxAscent, bool& setMaxDescent, in computeLogicalBoxHeights() argument
508 if (maxAscent < ascent || !setMaxAscent) { in computeLogicalBoxHeights()
509 maxAscent = ascent; in computeLogicalBoxHeights()
[all …]
DInlineFlowBox.h166 … int& maxAscent, int& maxDescent, bool& setMaxAscent, bool& setMaxDescent,
168 void adjustMaxAscentAndDescent(int& maxAscent, int& maxDescent,
170 …void placeBoxesInBlockDirection(int logicalTop, int maxHeight, int maxAscent, bool strictMode, int…
DRootInlineBox.cpp233 int maxAscent = 0; in alignBoxesInBlockDirection() local
243 …computeLogicalBoxHeights(this, maxPositionTop, maxPositionBottom, maxAscent, maxDescent, setMaxAsc… in alignBoxesInBlockDirection()
246 if (maxAscent + maxDescent < max(maxPositionTop, maxPositionBottom)) in alignBoxesInBlockDirection()
247 adjustMaxAscentAndDescent(maxAscent, maxDescent, maxPositionTop, maxPositionBottom); in alignBoxesInBlockDirection()
249 int maxHeight = maxAscent + maxDescent; in alignBoxesInBlockDirection()
257 …placeBoxesInBlockDirection(heightOfBlock, maxHeight, maxAscent, noQuirksMode, lineTop, lineBottom,… in alignBoxesInBlockDirection()
DRenderFlexibleBox.cpp351 int maxAscent = 0, maxDescent = 0; in layoutHorizontalBox() local
378 maxAscent = max(maxAscent, ascent); in layoutHorizontalBox()
384 setHeight(max(yPos + maxAscent + maxDescent, height())); in layoutHorizontalBox()
442 childY += child->marginTop() + (maxAscent - ascent); in layoutHorizontalBox()
/external/webkit/Source/WebKit/win/
DChangeLog2242 maxAscent and maxDescent can be negative, so we need a notion of whether or not we have
/external/webkit/Source/WebKit/mac/
DChangeLog3940 maxAscent and maxDescent can be negative, so we need a notion of whether or not we have
/external/webkit/Source/WebKit2/
DChangeLog-2011-02-1618066 maxAscent and maxDescent can be negative, so we need a notion of whether or not we have
/external/webkit/Source/WebCore/
DChangeLog-2010-12-0611305 maxAscent and maxDescent can be negative, so we need a notion of whether or not we have