Searched refs:maxAscent (Results 1 – 8 of 8) sorted by relevance
/external/webkit/Source/WebCore/rendering/ |
D | InlineFlowBox.cpp | 451 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 …]
|
D | InlineFlowBox.h | 166 … 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…
|
D | RootInlineBox.cpp | 233 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()
|
D | RenderFlexibleBox.cpp | 351 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/ |
D | ChangeLog | 2242 maxAscent and maxDescent can be negative, so we need a notion of whether or not we have
|
/external/webkit/Source/WebKit/mac/ |
D | ChangeLog | 3940 maxAscent and maxDescent can be negative, so we need a notion of whether or not we have
|
/external/webkit/Source/WebKit2/ |
D | ChangeLog-2011-02-16 | 18066 maxAscent and maxDescent can be negative, so we need a notion of whether or not we have
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2010-12-06 | 11305 maxAscent and maxDescent can be negative, so we need a notion of whether or not we have
|