Searched refs:isFirstLineStyle (Results 1 – 10 of 10) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | EllipsisBox.cpp | 40 RenderStyle* style = renderer().style(isFirstLineStyle()); in paint() 98 …tMetrics().ascent() - (markupBox->y() + markupBox->renderer().style(isFirstLineStyle())->fontMetri… in paintMarkupBox() 104 RenderStyle* style = renderer().style(isFirstLineStyle()); in selectionRect() 138 RenderStyle* style = renderer().style(isFirstLineStyle()); in nodeAtPoint() 140 …tMetrics().ascent() - (markupBox->y() + markupBox->renderer().style(isFirstLineStyle())->fontMetri… in nodeAtPoint()
|
D | InlineFlowBox.cpp | 110 child->setFirstLineStyleBit(isFirstLineStyle()); in addToLine() 122 RenderStyle* parentStyle = renderer().style(isFirstLineStyle()); in addToLine() 123 RenderStyle* childStyle = child->renderer().style(isFirstLineStyle()); in addToLine() 160 RenderStyle* childStyle = child->renderer().style(isFirstLineStyle()); in addToLine() 167 …} else if (!child->renderer().isBR() && (child->renderer().style(isFirstLineStyle())->boxShadow() … in addToLine() 169 || child->renderer().style(isFirstLineStyle())->hasBorderImageOutsets() in addToLine() 170 || child->renderer().style(isFirstLineStyle())->hasOutline())) { in addToLine() 390 space = rt.style(isFirstLineStyle())->font().fontDescription().wordSpacing(); in placeBoxRangeInInlineDirection() 453 …if (renderer().style(isFirstLineStyle())->fontDescription().nonCJKGlyphOrientation() == NonCJKGlyp… in requiresIdeographicBaseline() 454 || renderer().style(isFirstLineStyle())->font().primaryFont()->hasVerticalGlyphs()) in requiresIdeographicBaseline() [all …]
|
D | InlineTextBox.cpp | 122 …BoxModelObject(renderer().parent())->baselinePosition(baselineType, isFirstLineStyle(), isHorizont… in baselinePosition() 130 return toRenderBR(renderer()).lineHeight(isFirstLineStyle()); in lineHeight() 133 …return toRenderBoxModelObject(renderer().parent())->lineHeight(isFirstLineStyle(), isHorizontal() … in lineHeight() 218 RenderStyle* styleToUse = renderer().style(isFirstLineStyle()); in localSelectionRect() 318 …ibleText = renderer().width(m_start, offset, textPos(), flowIsLTR ? LTR : RTL, isFirstLineStyle()); in placeEllipsisBox() 423 ….width(m_start, m_truncation, textPos(), isLeftToRightDirection() ? LTR : RTL, isFirstLineStyle()); in paint() 432 RenderStyle* styleToUse = renderer().style(isFirstLineStyle()); in paint() 888 ….width(m_start, m_truncation, textPos(), isLeftToRightDirection() ? LTR : RTL, isFirstLineStyle()); in paintDecoration() 896 if (isFirstLineStyle()) in paintDecoration() 902 RenderStyle* styleToUse = renderer().style(isFirstLineStyle()); in paintDecoration() [all …]
|
D | RootInlineBox.cpp | 95 …return boxModelObject()->baselinePosition(baselineType, isFirstLineStyle(), isHorizontal() ? Horiz… in baselinePosition() 100 …return boxModelObject()->lineHeight(isFirstLineStyle(), isHorizontal() ? HorizontalLine : Vertical… in lineHeight() 615 if (renderer().style(isFirstLineStyle())->lineBoxContain() & LineBoxContainReplaced) { in ascentAndDescentForBox() 640 … && !usedFonts->isEmpty() && (includeFont || (box->renderer().style(isFirstLineStyle())->lineHeigh… in ascentAndDescentForBox() 641 usedFonts->append(box->renderer().style(isFirstLineStyle())->font().primaryFont()); in ascentAndDescentForBox() 679 … int fontAscent = box->renderer().style(isFirstLineStyle())->fontMetrics().ascent(baselineType()); in ascentAndDescentForBox() 680 …int fontDescent = box->renderer().style(isFirstLineStyle())->fontMetrics().descent(baselineType()); in ascentAndDescentForBox() 690 …erflow->top, std::max(0, glyphOverflow->top - box->renderer().style(isFirstLineStyle())->fontMetri… in ascentAndDescentForBox() 691 …->bottom, std::max(0, glyphOverflow->bottom - box->renderer().style(isFirstLineStyle())->fontMetri… in ascentAndDescentForBox() 695 …LayoutUnit ascentWithMargin = box->renderer().style(isFirstLineStyle())->fontMetrics().ascent(base… in ascentAndDescentForBox() [all …]
|
D | InlineFlowBox.h | 144 …turn isHorizontal() ? renderer().style(isFirstLineStyle())->borderLeftWidth() : renderer().style(i… in borderLogicalLeft() 150 …turn isHorizontal() ? renderer().style(isFirstLineStyle())->borderRightWidth() : renderer().style(… in borderLogicalRight()
|
D | RenderInline.cpp | 593 …Box.renderer().style(rootBox.isFirstLineStyle())->font().fontMetrics().ascent() - container->style… in generateCulledLineBoxRects() 594 … int logicalHeight = container->style(rootBox.isFirstLineStyle())->font().fontMetrics().height(); in generateCulledLineBoxRects() 608 …Box.renderer().style(rootBox.isFirstLineStyle())->font().fontMetrics().ascent() - container->style… in generateCulledLineBoxRects() 609 … int logicalHeight = container->style(rootBox.isFirstLineStyle())->font().fontMetrics().height(); in generateCulledLineBoxRects() 626 …Box.renderer().style(rootBox.isFirstLineStyle())->font().fontMetrics().ascent() - container->style… in generateCulledLineBoxRects() 627 … int logicalHeight = container->style(rootBox.isFirstLineStyle())->font().fontMetrics().height(); in generateCulledLineBoxRects()
|
D | InlineBox.cpp | 126 … return m_bitfields.isText() ? renderer().style(isFirstLineStyle())->fontMetrics().height() : 0; in logicalHeight() 132 const FontMetrics& fontMetrics = renderer().style(isFirstLineStyle())->fontMetrics(); in logicalHeight()
|
D | InlineBox.h | 151 bool isFirstLineStyle() const { return m_bitfields.firstLine(); } in isFirstLineStyle() function
|
/external/chromium_org/third_party/WebKit/Source/core/paint/ |
D | InlineFlowBoxPainter.cpp | 186 RenderStyle* styleToUse = m_inlineFlowBox.renderer().style(m_inlineFlowBox.isFirstLineStyle()); in paintBoxDecorationBackground() 191 …shouldPaintBoxDecorationBackground = m_inlineFlowBox.isFirstLineStyle() && styleToUse != m_inlineF… in paintBoxDecorationBackground() 225 …ntInfo, paintRect, m_inlineFlowBox.renderer().style(m_inlineFlowBox.isFirstLineStyle()), Backgroun… in paintBoxDecorationBackground() 249 …Y, stripWidth, stripHeight), m_inlineFlowBox.renderer().style(m_inlineFlowBox.isFirstLineStyle())); in paintBoxDecorationBackground()
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InspectorCSSAgent.cpp | 752 RenderStyle* style = renderer->style(box->isFirstLineStyle()); in collectPlatformFontsForRenderer()
|