HomeSort by relevance Sort by last modified time
    Searched refs:isFirstLineStyle (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
EllipsisBox.cpp 39 RenderStyle* style = renderer().style(isFirstLineStyle());
124 y() + style->fontMetrics().ascent() - (markupBox->y() + markupBox->renderer().style(isFirstLineStyle())->fontMetrics().ascent()));
130 RenderStyle* style = renderer().style(isFirstLineStyle());
165 RenderStyle* style = renderer().style(isFirstLineStyle());
167 LayoutUnit mty = adjustedLocation.y() + style->fontMetrics().ascent() - (markupBox->y() + markupBox->renderer().style(isFirstLineStyle())->fontMetrics().ascent());
RootInlineBox.cpp 106 return boxModelObject()->baselinePosition(baselineType, isFirstLineStyle(), isHorizontal() ? HorizontalLine : VerticalLine, PositionOfInteriorLineBoxes);
111 return boxModelObject()->lineHeight(isFirstLineStyle(), isHorizontal() ? HorizontalLine : VerticalLine, PositionOfInteriorLineBoxes);
622 if (renderer().style(isFirstLineStyle())->lineBoxContain() & LineBoxContainReplaced) {
647 if (usedFonts && !usedFonts->isEmpty() && (includeFont || (box->renderer().style(isFirstLineStyle())->lineHeight().isNegative() && includeLeading))) {
648 usedFonts->append(box->renderer().style(isFirstLineStyle())->font().primaryFont());
686 int fontAscent = box->renderer().style(isFirstLineStyle())->fontMetrics().ascent(baselineType());
687 int fontDescent = box->renderer().style(isFirstLineStyle())->fontMetrics().descent(baselineType());
697 glyphOverflow->top = min(glyphOverflow->top, max(0, glyphOverflow->top - box->renderer().style(isFirstLineStyle())->fontMetrics().ascent(baselineType())));
698 glyphOverflow->bottom = min(glyphOverflow->bottom, max(0, glyphOverflow->bottom - box->renderer().style(isFirstLineStyle())->fontMetrics().descent(baselineType())));
702 LayoutUnit ascentWithMargin = box->renderer().style(isFirstLineStyle())->fontMetrics().ascent(baselineType())
    [all...]
InlineFlowBox.cpp 109 child->setFirstLineStyleBit(isFirstLineStyle());
121 RenderStyle* parentStyle = renderer().style(isFirstLineStyle());
122 RenderStyle* childStyle = child->renderer().style(isFirstLineStyle());
159 RenderStyle* childStyle = child->renderer().style(isFirstLineStyle());
166 } else if (!child->renderer().isBR() && (child->renderer().style(isFirstLineStyle())->boxShadow() || child->boxModelObject()->hasSelfPaintingLayer()
168 || child->renderer().style(isFirstLineStyle())->hasBorderImageOutsets()
169 || child->renderer().style(isFirstLineStyle())->hasOutline())) {
387 logicalLeft += rt.style(isFirstLineStyle())->font().fontDescription().wordSpacing();
444 if (renderer().style(isFirstLineStyle())->fontDescription().nonCJKGlyphOrientation() == NonCJKGlyphOrientationUpright
445 || renderer().style(isFirstLineStyle())->font().primaryFont()->hasVerticalGlyphs()
    [all...]
InlineTextBox.cpp 114 return toRenderBoxModelObject(renderer().parent())->baselinePosition(baselineType, isFirstLineStyle(), isHorizontal() ? HorizontalLine : VerticalLine, PositionOnContainingLine);
122 return toRenderBR(renderer()).lineHeight(isFirstLineStyle());
125 return toRenderBoxModelObject(renderer().parent())->lineHeight(isFirstLineStyle(), isHorizontal() ? HorizontalLine : VerticalLine, PositionOnContainingLine);
210 RenderStyle* styleToUse = textRenderer().style(isFirstLineStyle());
310 float widthOfVisibleText = toRenderText(renderer()).width(m_start, offset, textPos(), flowIsLTR ? LTR : RTL, isFirstLineStyle());
515 LayoutUnit widthOfVisibleText = toRenderText(renderer()).width(m_start, m_truncation, textPos(), isLeftToRightDirection() ? LTR : RTL, isFirstLineStyle());
526 RenderStyle* styleToUse = rendererToUse.style(isFirstLineStyle());
    [all...]
InlineFlowBox.h 146 return isHorizontal() ? renderer().style(isFirstLineStyle())->borderLeftWidth() : renderer().style(isFirstLineStyle())->borderTopWidth();
152 return isHorizontal() ? renderer().style(isFirstLineStyle())->borderRightWidth() : renderer().style(isFirstLineStyle())->borderBottomWidth();
InlineBox.cpp 126 return m_bitfields.isText() ? renderer().style(isFirstLineStyle())->fontMetrics().height() : 0;
132 const FontMetrics& fontMetrics = renderer().style(isFirstLineStyle())->fontMetrics();
RenderInline.cpp 575 int logicalTop = rootBox.logicalTop() + (rootBox.renderer().style(rootBox.isFirstLineStyle())->font().fontMetrics().ascent() - container->style(rootBox.isFirstLineStyle())->font().fontMetrics().ascent());
576 int logicalHeight = container->style(rootBox.isFirstLineStyle())->font().fontMetrics().height();
590 int logicalTop = rootBox.logicalTop() + (rootBox.renderer().style(rootBox.isFirstLineStyle())->font().fontMetrics().ascent() - container->style(rootBox.isFirstLineStyle())->font().fontMetrics().ascent());
591 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();
    [all...]
InlineBox.h 150 bool isFirstLineStyle() const { return m_bitfields.firstLine(); }
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorCSSAgent.cpp 710 RenderStyle* style = renderer->style(box->isFirstLineStyle());
    [all...]

Completed in 369 milliseconds