Searched defs:maxHeight (Results 1 - 13 of 13) sorted by relevance

/external/webkit/Source/WebCore/rendering/mathml/
H A DRenderMathMLRow.cpp46 int maxHeight = 0; local
52 if (blockHeight > maxHeight)
53 maxHeight = blockHeight;
57 if (box->offsetHeight() > maxHeight)
58 maxHeight = box->offsetHeight();
62 return maxHeight;
69 int maxHeight = 0; local
80 if (!block->hasBase() && !block->isRenderMathMLOperator() && block->offsetHeight() > maxHeight)
81 maxHeight = block->offsetHeight();
82 if (block->hasBase() && block->nonOperatorHeight() > maxHeight)
[all...]
H A DRenderMathMLSquareRoot.cpp79 int maxHeight = 0; local
88 if (box->offsetHeight() > maxHeight)
89 maxHeight = box->offsetHeight();
95 if (!maxHeight)
96 maxHeight = style()->fontSize();
103 if (maxHeight > thresholdHeight && thresholdHeight) {
104 float shift = (maxHeight - thresholdHeight) / static_cast<float>(thresholdHeight);
113 FloatPoint bottomLeft(tx + frontWidth * gRadicalBottomPointXPos , ty + maxHeight + gRadicalBasePad);
114 FloatPoint topLeft(tx + frontWidth * gRadicalTopLeftPointXPos , ty + gRadicalTopLeftPointYPos * maxHeight);
168 int maxHeight local
[all...]
H A DRenderMathMLSubSup.cpp156 int maxHeight = 0; local
160 if (height > maxHeight)
161 maxHeight = height;
164 int heightDiff = m_scripts ? (m_scripts->offsetHeight() - maxHeight) / 2 : 0;
H A DRenderMathMLRoot.cpp112 int maxHeight = indexBox->offsetHeight(); local
114 if (!maxHeight)
115 maxHeight = style()->fontSize();
133 if (maxHeight > thresholdHeight && thresholdHeight) {
134 float shift = (maxHeight - thresholdHeight) / static_cast<float>(thresholdHeight);
147 FloatPoint bottomLeft(start - gRadicalBottomPointXPos * frontWidth , ty + maxHeight + gRadicalBasePad);
148 FloatPoint topLeft(start - gRadicalTopLeftPointXPos * frontWidth , ty + gRadicalTopLeftPointYPos * maxHeight);
208 int maxHeight = toRenderBoxModelObject(lastChild())->offsetHeight(); local
214 if (!maxHeight)
215 maxHeight
[all...]
/external/webkit/Source/WebCore/rendering/style/
H A DStyleBoxData.h53 Length maxHeight() const { return m_maxHeight; } function in class:WebCore::StyleBoxData
H A DRenderStyle.h401 Length maxHeight() const { return m_box->maxHeight(); } function in class:WebCore::RenderStyle
/external/webkit/Source/WebCore/rendering/
H A DRenderScrollbarPart.cpp111 int maxHeight = style()->maxHeight().isUndefined() ? h : calcScrollbarThicknessUsing(style()->maxHeight(), visibleSize); local
112 setHeight(max(minHeight, min(maxHeight, h)));
H A DRootInlineBox.cpp249 int maxHeight = maxAscent + maxDescent; local
257 placeBoxesInBlockDirection(heightOfBlock, maxHeight, maxAscent, noQuirksMode, lineTop, lineBottom, setLineTop,
271 maxHeight = max(0, maxHeight);
273 return heightOfBlock + maxHeight;
H A DInlineFlowBox.cpp575 void InlineFlowBox::placeBoxesInBlockDirection(int top, int maxHeight, int maxAscent, bool strictMode, int& lineTop, int& lineBottom, bool& setLineTop, argument
605 curr->setLogicalTop(top + maxHeight - curr->lineHeight());
683 inlineFlowBox->placeBoxesInBlockDirection(top, maxHeight, maxAscent, strictMode, lineTop, lineBottom, setLineTop,
/external/skia/src/core/
H A DSkRegion_path.cpp29 bool init(int maxHeight, int maxTransitions);
100 bool SkRgnBuilder::init(int maxHeight, int maxTransitions) { argument
101 if ((maxHeight | maxTransitions) < 0) {
108 count.setMul(maxHeight + 1, 3 + maxTransitions);
/external/webkit/Tools/DumpRenderTree/chromium/
H A DImageDiff.cpp171 int maxHeight = max(baseline.height(), actual.height()); local
177 pixelsDifferent += (maxHeight - h) * maxWidth;
/external/webkit/Source/WebCore/css/
H A DCSSComputedStyleDeclaration.cpp1257 const Length& maxHeight = style->maxHeight(); local
1258 if (maxHeight.isFixed() && maxHeight.value() == undefinedLength)
1260 return primitiveValueCache->createValue(maxHeight);
/external/webkit/Source/WebCore/platform/chromium/
H A DPopupMenuChromium.cpp146 void setMaxHeight(int maxHeight) { m_maxHeight = maxHeight; } argument

Completed in 1694 milliseconds