Searched refs:lineHeight (Results 1 - 25 of 40) sorted by relevance

12

/external/webkit/WebCore/css/
H A DFontValue.cpp52 if (lineHeight) {
56 result += lineHeight->cssText();
H A DFontValue.h46 RefPtr<CSSPrimitiveValue> lineHeight; member in class:WebCore::FontValue
/external/webkit/WebCore/rendering/
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 DRenderBR.h46 virtual int lineHeight(bool firstLine, bool isRootLineBox = false) const;
H A DRenderTextControlMultiLine.h44 virtual void adjustControlHeightBasedOnLineHeight(int lineHeight);
H A DRenderTextControlMultiLine.cpp89 void RenderTextControlMultiLine::adjustControlHeightBasedOnLineHeight(int lineHeight) argument
91 setHeight(height() + lineHeight * static_cast<HTMLTextAreaElement*>(node())->rows());
H A DInlineFlowBox.cpp362 int lineHeight = curr->lineHeight(false); local
364 if (maxAscent + maxDescent < lineHeight)
365 maxDescent = lineHeight - maxAscent;
368 if (maxAscent + maxDescent < lineHeight)
369 maxAscent = lineHeight - maxDescent;
395 int height = lineHeight(true);
413 int lineHeight; local
421 Length parentLineHeight = curr->renderer()->parent()->style()->lineHeight();
430 lineHeight
[all...]
H A DRenderListMarker.h60 virtual int lineHeight(bool firstLine, bool isRootLineBox = false) const;
H A DRenderReplaced.h59 virtual int lineHeight(bool firstLine, bool isRootLineBox = false) const;
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 DRenderSVGRoot.h50 virtual int lineHeight(bool b, bool isRootLineBox = false) const;
H A DRenderTableSection.h130 virtual int lineHeight(bool, bool) const { return 0; } function in class:WebCore::RenderTableSection
H A DRenderTextControl.h78 virtual void adjustControlHeightBasedOnLineHeight(int lineHeight) = 0;
H A DInlineBox.h209 inline int lineHeight(bool isRootLineBox) const { return renderer()->lineHeight(m_firstLine, isRootLineBox); } function in class:WebCore::InlineBox
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 DRenderInline.h127 virtual int lineHeight(bool firstLine, bool isRootLineBox = false) const;
H A DRenderText.h73 virtual int lineHeight(bool firstLine, bool isRootLineBox = false) const;
H A DRenderTextControlSingleLine.h79 virtual void adjustControlHeightBasedOnLineHeight(int lineHeight);
H A DRenderListMarker.cpp1369 int RenderListMarker::lineHeight(bool, bool) const function in class:WebCore::RenderListMarker
1372 return m_listItem->lineHeight(false, true);
1380 return font.ascent() + (lineHeight(false) - font.height())/2;
H A DRenderSVGRoot.cpp51 int RenderSVGRoot::lineHeight(bool, bool) const function in class:WebCore::RenderSVGRoot
H A DRenderReplaced.cpp214 int RenderReplaced::lineHeight(bool, bool) const function in class:WebCore::RenderReplaced
H A DRenderBoxModelObject.cpp791 vpos += -static_cast<int>(f.xHeight() / 2) - lineHeight(firstLine) / 2 + baselinePosition(firstLine);
794 if (!isReplaced()) // lineHeight - baselinePosition is always 0 for replaced elements, so don't bother wasting time in that case.
795 vpos -= (lineHeight(firstLine) - baselinePosition(firstLine));
797 vpos += -lineHeight(firstLine) / 2 + baselinePosition(firstLine);
799 vpos -= style()->verticalAlignLength().calcValue(lineHeight(firstLine));
/external/webkit/WebCore/bindings/objc/
H A DDOMCSS.h168 - (NSString *)lineHeight;
169 - (void)setLineHeight:(NSString *)lineHeight;
H A DDOMCSS.mm710 - (NSString *)lineHeight
715 - (void)setLineHeight:(NSString *)lineHeight
717 [self setProperty:@"line-height" value:lineHeight priority:@""];

Completed in 115 milliseconds

12