Searched defs:lineHeight (Results 1 - 19 of 19) sorted by relevance

/external/webkit/WebCore/css/
H A DFontValue.h46 RefPtr<CSSPrimitiveValue> lineHeight; member in class:WebCore::FontValue
/external/webkit/WebCore/rendering/
H A DRenderTableCol.h53 virtual int lineHeight(bool) const { return 0; } function in class:WebCore::RenderTableCol
H A DRenderTableRow.h53 virtual int lineHeight(bool, bool) const { return 0; } function in class:WebCore::RenderTableRow
H A DRenderBR.cpp48 int RenderBR::lineHeight(bool firstLine, bool /*isRootLineBox*/) const function in class:WebCore::RenderBR
55 Length lh = s->lineHeight();
59 m_lineHeight = RenderObject::lineHeight(false);
70 m_lineHeight = RenderObject::lineHeight(false);
H A DRenderTextControlMultiLine.cpp89 void RenderTextControlMultiLine::adjustControlHeightBasedOnLineHeight(int lineHeight) argument
91 setHeight(height() + lineHeight * static_cast<HTMLTextAreaElement*>(node())->rows());
H A DRenderReplaced.cpp214 int RenderReplaced::lineHeight(bool, bool) const function in class:WebCore::RenderReplaced
H A DRenderSVGRoot.cpp51 int RenderSVGRoot::lineHeight(bool, bool) const function in class:WebCore::RenderSVGRoot
H A DRenderTableSection.h130 virtual int lineHeight(bool, bool) const { return 0; } function in class:WebCore::RenderTableSection
H A DInlineBox.h209 inline int lineHeight(bool isRootLineBox) const { return renderer()->lineHeight(m_firstLine, isRootLineBox); } function in class:WebCore::InlineBox
H A DRenderInline.cpp862 int RenderInline::lineHeight(bool firstLine, bool /*isRootLineBox*/) const function in class:WebCore::RenderInline
H A DRenderTextControlSingleLine.cpp411 void RenderTextControlSingleLine::adjustControlHeightBasedOnLineHeight(int lineHeight) argument
419 lineHeight = max(lineHeight, resultsRenderer->height());
428 lineHeight = max(lineHeight, cancelRenderer->height());
431 setHeight(height() + lineHeight);
511 if (textBlockStyle->font().lineSpacing() > lineHeight(true, true))
H A DInlineFlowBox.cpp360 int lineHeight = curr->lineHeight(false); local
362 if (maxAscent + maxDescent < lineHeight)
363 maxDescent = lineHeight - maxAscent;
366 if (maxAscent + maxDescent < lineHeight)
367 maxAscent = lineHeight - maxDescent;
393 int height = lineHeight(true);
411 int lineHeight; local
419 Length parentLineHeight = curr->renderer()->parent()->style()->lineHeight();
428 lineHeight
[all...]
H A DRenderBlockLineLayout.cpp580 const int lineHeight = style()->computedLineHeight(); local
583 (fontSize <= lineHeight) && !style()->hasBackgroundImage() &&
984 setHeight(height() + lineHeight(true, true));
H A DRenderListMarker.cpp1368 int RenderListMarker::lineHeight(bool, bool) const function in class:WebCore::RenderListMarker
1371 return m_listItem->lineHeight(false, true);
1379 return font.ascent() + (lineHeight(false) - font.height())/2;
H A DRenderText.cpp1025 int RenderText::lineHeight(bool firstLine, bool) const function in class:WebCore::RenderText
1028 return parent()->lineHeight(firstLine, true);
H A DRenderObject.cpp2094 int RenderObject::lineHeight(bool firstLine, bool /*isRootLineBox*/) const function in class:WebCore::RenderObject
2102 return f.ascent() + (lineHeight(firstLine, isRootLineBox) - f.height()) / 2;
H A DRenderBlock.cpp3733 int columnSlop = lineHeight(false) / 2;
4449 int RenderBlock::lineHeight(bool firstLine, bool isRootLineBox) const function in class:WebCore::RenderBlock
5010 int height = lineHeight(true);
/external/webkit/WebKit/android/nav/
H A DSelectText.cpp227 SkFixed lineHeight = SkIntToFixed(bottom() - top()); local
228 return lineSpacing >= lineHeight + (lineHeight >> 1); // 1.5
/external/webkit/WebCore/rendering/style/
H A DRenderStyle.h460 Length lineHeight() const { return inherited->line_height; } function in class:WebCore::RenderStyle
463 Length lh = lineHeight();

Completed in 8837 milliseconds