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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextMetrics.h 42 static TextRun constructTextRun(RenderSVGInlineText*, unsigned position, unsigned length);
SVGTextMetrics.cpp 64 TextRun SVGTextMetrics::constructTextRun(RenderSVGInlineText* text, unsigned position, unsigned length)
101 return SVGTextMetrics(text, constructTextRun(text, position, length));
SVGInlineTextBox.h 66 TextRun constructTextRun(RenderStyle*, const SVGTextFragment&) const;
SVGInlineTextBox.cpp 96 TextRun textRun = constructTextRun(style, fragment);
136 FloatRect selectionRect = scaledFont.selectionRectForText(constructTextRun(style, fragment), textOrigin, fragment.height * scalingFactor, startPosition, endPosition);
439 TextRun SVGInlineTextBox::constructTextRun(RenderStyle* style, const SVGTextFragment& fragment) const
679 TextRun textRun = constructTextRun(style, fragment);
693 TextRun selectionTextRun = constructTextRun(selectionStyle, fragment);
SVGTextMetricsBuilder.cpp 103 m_run = SVGTextMetrics::constructTextRun(text, 0, text->textLength());
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
EllipsisBox.cpp 84 TextRun textRun = RenderBlockFlow::constructTextRun(renderer(), font, m_str, style, TextRun::AllowTrailingExpansion);
135 return enclosingIntRect(font.selectionRectForText(RenderBlockFlow::constructTextRun(renderer(), font, m_str, style, TextRun::AllowTrailingExpansion), IntPoint(logicalLeft(), logicalTop() + root()->selectionTopAdjustedForPrecedingBlock()), root()->selectionHeightAdjustedForPrecedingBlock()));
160 context->drawHighlightForText(font, RenderBlockFlow::constructTextRun(renderer(), font, m_str, style, TextRun::AllowTrailingExpansion), localOrigin, h, c);
RenderFileUploadControl.cpp 108 TextRun textRun = constructTextRun(this, font, displayedFilename, style(), TextRun::AllowTrailingExpansion, RespectDirection | RespectDirectionOverride);
156 // FIXME: Remove the need for this const_cast by making constructTextRun take a const RenderObject*.
158 float minDefaultLabelWidth = defaultWidthNumChars * font.width(constructTextRun(renderer, font, characterAsString, style(), TextRun::AllowTrailingExpansion));
161 float defaultLabelWidth = font.width(constructTextRun(renderer, font, label, style(), TextRun::AllowTrailingExpansion));
RenderBlockFlow.h 127 static TextRun constructTextRun(RenderObject* context, const Font&, const String&, RenderStyle*,
130 static TextRun constructTextRun(RenderObject* context, const Font&, const RenderText*, RenderStyle*,
133 static TextRun constructTextRun(RenderObject* context, const Font&, const RenderText*, unsigned offset, unsigned length, RenderStyle*,
136 static TextRun constructTextRun(RenderObject* context, const Font&, const RenderText*, unsigned offset, RenderStyle*,
139 static TextRun constructTextRun(RenderObject* context, const Font&, const LChar* characters, int length, RenderStyle*,
142 static TextRun constructTextRun(RenderObject* context, const Font&, const UChar* characters, int length, RenderStyle*,
RenderCombineText.cpp 99 TextRun run = RenderBlockFlow::constructTextRun(this, originalFont(), this, style());
InlineTextBox.h 109 TextRun constructTextRun(RenderStyle*, const Font&, StringBuilder* charactersWithHyphen = 0) const;
110 TextRun constructTextRun(RenderStyle*, const Font&, StringView, int maximumLength, StringBuilder* charactersWithHyphen = 0) const;
InlineTextBox.cpp 213 TextRun textRun = constructTextRun(styleToUse, font, respectHyphen ? &charactersWithHyphen : 0);
667 TextRun textRun = constructTextRun(styleToUse, font, string, maximumLength, hasHyphen() ? &charactersWithHyphen : 0);
    [all...]
RenderTextControl.cpp 228 TextRun textRun = constructTextRun(this, font, str, style(), TextRun::AllowTrailingExpansion);
RenderText.cpp 763 TextRun run = RenderBlockFlow::constructTextRun(const_cast<RenderText*>(this), f, this, start, len, style());
818 float spaceWidth = font.width(RenderBlockFlow::constructTextRun(this, font, &space, 1, style()));
    [all...]
RenderImage.cpp 133 IntSize paddedTextSize(paddingWidth + min(ceilf(font.width(RenderBlockFlow::constructTextRun(this, font, m_altText, style()))), maxAltTextWidth), paddingHeight + min(font.fontMetrics().height(), maxAltTextHeight));
363 TextRun textRun = RenderBlockFlow::constructTextRun(this, font, m_altText, style(), TextRun::AllowTrailingExpansion | TextRun::ForbidLeadingExpansion, DefaultTextRunFlags | RespectDirection);
RenderListMarker.cpp     [all...]
RenderDeprecatedFlexibleBox.cpp     [all...]
RenderBlockFlow.cpp     [all...]
RenderListBox.cpp 137 TextRun textRun = constructTextRun(this, itemFont, text, style(), TextRun::AllowTrailingExpansion);
RenderBlockLineLayout.cpp     [all...]
RenderBlock.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/line/
BreakingContextInlineHeaders.h 59 m_layout = m_font->createLayoutForMacComplexText(RenderBlockFlow::constructTextRun(renderText, *m_font, renderText, renderText->style()), renderText->textLength(), xPos, collapseWhiteSpace);
698 return font.width(RenderBlockFlow::constructTextRun(renderer, font, style->hyphenString().string(), style));
710 TextRun run = RenderBlockFlow::constructTextRun(text, font, text, from, len, text->style());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
ComplexTextController.cpp 49 , m_run(constructTextRun(run, textLength, font, xPos))
66 static TextRun constructTextRun(const TextRun& textRun, unsigned textLength, const Font& font, float xPos)

Completed in 254 milliseconds