Searched refs:isFirstLineStyle (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DEllipsisBox.cpp40 RenderStyle* style = renderer().style(isFirstLineStyle());
98 y() + style->fontMetrics().ascent() - (markupBox->y() + markupBox->renderer().style(isFirstLineStyle())->fontMetrics().ascent()));
104 RenderStyle* style = renderer().style(isFirstLineStyle());
138 RenderStyle* style = renderer().style(isFirstLineStyle());
140 LayoutUnit mty = adjustedLocation.y() + style->fontMetrics().ascent() - (markupBox->y() + markupBox->renderer().style(isFirstLineStyle())->fontMetrics().ascent());
H A DInlineTextBox.cpp122 return toRenderBoxModelObject(renderer().parent())->baselinePosition(baselineType, isFirstLineStyle(), isHorizontal() ? HorizontalLine : VerticalLine, PositionOnContainingLine);
130 return toRenderBR(renderer()).lineHeight(isFirstLineStyle());
133 return toRenderBoxModelObject(renderer().parent())->lineHeight(isFirstLineStyle(), isHorizontal() ? HorizontalLine : VerticalLine, PositionOnContainingLine);
218 RenderStyle* styleToUse = renderer().style(isFirstLineStyle());
318 float widthOfVisibleText = renderer().width(m_start, offset, textPos(), flowIsLTR ? LTR : RTL, isFirstLineStyle());
423 LayoutUnit widthOfVisibleText = renderer().width(m_start, m_truncation, textPos(), isLeftToRightDirection() ? LTR : RTL, isFirstLineStyle());
432 RenderStyle* styleToUse = renderer().style(isFirstLineStyle());
888 width = renderer().width(m_start, m_truncation, textPos(), isLeftToRightDirection() ? LTR : RTL, isFirstLineStyle());
896 if (isFirstLineStyle())
902 RenderStyle* styleToUse = renderer().style(isFirstLineStyle());
[all...]
H A DInlineFlowBox.cpp110 child->setFirstLineStyleBit(isFirstLineStyle());
122 RenderStyle* parentStyle = renderer().style(isFirstLineStyle());
123 RenderStyle* childStyle = child->renderer().style(isFirstLineStyle());
160 RenderStyle* childStyle = child->renderer().style(isFirstLineStyle());
167 } else if (!child->renderer().isBR() && (child->renderer().style(isFirstLineStyle())->boxShadow() || child->boxModelObject()->hasSelfPaintingLayer()
169 || child->renderer().style(isFirstLineStyle())->hasBorderImageOutsets()
170 || child->renderer().style(isFirstLineStyle())->hasOutline())) {
390 space = rt.style(isFirstLineStyle())->font().fontDescription().wordSpacing();
453 if (renderer().style(isFirstLineStyle())->fontDescription().nonCJKGlyphOrientation() == NonCJKGlyphOrientationUpright
454 || renderer().style(isFirstLineStyle())
[all...]
H A DRootInlineBox.cpp95 return boxModelObject()->baselinePosition(baselineType, isFirstLineStyle(), isHorizontal() ? HorizontalLine : VerticalLine, PositionOfInteriorLineBoxes);
100 return boxModelObject()->lineHeight(isFirstLineStyle(), isHorizontal() ? HorizontalLine : VerticalLine, PositionOfInteriorLineBoxes);
615 if (renderer().style(isFirstLineStyle())->lineBoxContain() & LineBoxContainReplaced) {
640 if (usedFonts && !usedFonts->isEmpty() && (includeFont || (box->renderer().style(isFirstLineStyle())->lineHeight().isNegative() && includeLeading))) {
641 usedFonts->append(box->renderer().style(isFirstLineStyle())->font().primaryFont());
679 int fontAscent = box->renderer().style(isFirstLineStyle())->fontMetrics().ascent(baselineType());
680 int fontDescent = box->renderer().style(isFirstLineStyle())->fontMetrics().descent(baselineType());
690 glyphOverflow->top = std::min(glyphOverflow->top, std::max(0, glyphOverflow->top - box->renderer().style(isFirstLineStyle())->fontMetrics().ascent(baselineType())));
691 glyphOverflow->bottom = std::min(glyphOverflow->bottom, std::max(0, glyphOverflow->bottom - box->renderer().style(isFirstLineStyle())->fontMetrics().descent(baselineType())));
695 LayoutUnit ascentWithMargin = box->renderer().style(isFirstLineStyle())
[all...]
H A DInlineFlowBox.h144 return isHorizontal() ? renderer().style(isFirstLineStyle())->borderLeftWidth() : renderer().style(isFirstLineStyle())->borderTopWidth();
150 return isHorizontal() ? renderer().style(isFirstLineStyle())->borderRightWidth() : renderer().style(isFirstLineStyle())->borderBottomWidth();
H A DRenderInline.cpp593 int logicalTop = rootBox.logicalTop() + (rootBox.renderer().style(rootBox.isFirstLineStyle())->font().fontMetrics().ascent() - container->style(rootBox.isFirstLineStyle())->font().fontMetrics().ascent());
594 int logicalHeight = container->style(rootBox.isFirstLineStyle())->font().fontMetrics().height();
608 int logicalTop = rootBox.logicalTop() + (rootBox.renderer().style(rootBox.isFirstLineStyle())->font().fontMetrics().ascent() - container->style(rootBox.isFirstLineStyle())->font().fontMetrics().ascent());
609 int logicalHeight = container->style(rootBox.isFirstLineStyle())->font().fontMetrics().height();
626 int logicalTop = rootBox.logicalTop() + (rootBox.renderer().style(rootBox.isFirstLineStyle())->font().fontMetrics().ascent() - container->style(rootBox.isFirstLineStyle())->font().fontMetrics().ascent());
627 int logicalHeight = container->style(rootBox.isFirstLineStyle())->font().fontMetrics().height();
H A DInlineBox.cpp126 return m_bitfields.isText() ? renderer().style(isFirstLineStyle())->fontMetrics().height() : 0;
132 const FontMetrics& fontMetrics = renderer().style(isFirstLineStyle())->fontMetrics();
H A DInlineBox.h151 bool isFirstLineStyle() const { return m_bitfields.firstLine(); } function in class:blink::InlineBox
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DInlineFlowBoxPainter.cpp186 RenderStyle* styleToUse = m_inlineFlowBox.renderer().style(m_inlineFlowBox.isFirstLineStyle());
191 shouldPaintBoxDecorationBackground = m_inlineFlowBox.isFirstLineStyle() && styleToUse != m_inlineFlowBox.renderer().style();
225 BoxPainter::paintBorder(*m_inlineFlowBox.boxModelObject(), paintInfo, paintRect, m_inlineFlowBox.renderer().style(m_inlineFlowBox.isFirstLineStyle()), BackgroundBleedNone, m_inlineFlowBox.includeLogicalLeftEdge(), m_inlineFlowBox.includeLogicalRightEdge());
249 BoxPainter::paintBorder(*m_inlineFlowBox.boxModelObject(), paintInfo, LayoutRect(stripX, stripY, stripWidth, stripHeight), m_inlineFlowBox.renderer().style(m_inlineFlowBox.isFirstLineStyle()));
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorCSSAgent.cpp752 RenderStyle* style = renderer->style(box->isFirstLineStyle());

Completed in 866 milliseconds