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

  /frameworks/base/core/java/android/widget/
LinearLayout.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderFlexibleBox.cpp 43 LineContext(LayoutUnit crossAxisOffset, LayoutUnit crossAxisExtent, size_t numberOfChildren, LayoutUnit maxAscent)
47 , maxAscent(maxAscent)
54 LayoutUnit maxAscent;
    [all...]
InlineFlowBox.h 186 int& maxAscent, int& maxDescent, bool& setMaxAscent, bool& setMaxDescent,
188 void adjustMaxAscentAndDescent(int& maxAscent, int& maxDescent,
190 void placeBoxesInBlockDirection(LayoutUnit logicalTop, LayoutUnit maxHeight, int maxAscent, bool strictMode, LayoutUnit& lineTop, LayoutUnit& lineBottom, bool& setLineTop,
InlineFlowBox.cpp 474 void InlineFlowBox::adjustMaxAscentAndDescent(int& maxAscent, int& maxDescent, int maxPositionTop, int maxPositionBottom)
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,
510 // The maxAscent value represents the distance of the highest point of any box (typically including line-height) from
519 // root line box, we only consider it to affect the maxAscent and maxDescent values if som
    [all...]
RenderDeprecatedFlexibleBox.cpp 372 LayoutUnit maxAscent = 0, maxDescent = 0;
399 maxAscent = max(maxAscent, ascent);
405 setHeight(max(yPos + maxAscent + maxDescent, height()));
472 childY += child->marginTop() + (maxAscent - ascent);
    [all...]
RootInlineBox.cpp 243 int maxAscent = 0;
253 computeLogicalBoxHeights(this, maxPositionTop, maxPositionBottom, maxAscent, maxDescent, setMaxAscent, setMaxDescent, noQuirksMode,
256 if (maxAscent + maxDescent < max(maxPositionTop, maxPositionBottom))
257 adjustMaxAscentAndDescent(maxAscent, maxDescent, maxPositionTop, maxPositionBottom);
259 LayoutUnit maxHeight = maxAscent + maxDescent;
267 placeBoxesInBlockDirection(heightOfBlock, maxHeight, maxAscent, noQuirksMode, lineTop, lineBottom, setLineTop,
    [all...]

Completed in 396 milliseconds