HomeSort by relevance Sort by last modified time
    Searched refs:constructTextRun (Results 1 - 20 of 20) 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 68 TextRun constructTextRun(RenderStyle*, const SVGTextFragment&) const;
SVGInlineTextBox.cpp 95 TextRun textRun = constructTextRun(style, fragment);
135 FloatRect selectionRect = scaledFont.selectionRectForText(constructTextRun(style, fragment), textOrigin, fragment.height * scalingFactor, startPosition, endPosition);
427 TextRun SVGInlineTextBox::constructTextRun(RenderStyle* style, const SVGTextFragment& fragment) const
666 TextRun textRun = constructTextRun(style, fragment);
680 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 77 TextRun textRun = RenderBlock::constructTextRun(renderer(), font, m_str, style, TextRun::AllowTrailingExpansion);
128 return enclosingIntRect(font.selectionRectForText(RenderBlock::constructTextRun(renderer(), font, m_str, style, TextRun::AllowTrailingExpansion), IntPoint(x(), y() + root()->selectionTopAdjustedForPrecedingBlock()), root()->selectionHeightAdjustedForPrecedingBlock()));
150 context->drawHighlightForText(font, RenderBlock::constructTextRun(renderer(), font, m_str, style, TextRun::AllowTrailingExpansion), roundedIntPoint(LayoutPoint(x() + paintOffset.x(), y() + paintOffset.y() + top)), h, c);
RenderFileUploadControl.cpp 113 TextRun textRun = constructTextRun(this, font, displayedFilename, style(), TextRun::AllowTrailingExpansion, RespectDirection | RespectDirectionOverride);
162 // FIXME: Remove the need for this const_cast by making constructTextRun take a const RenderObject*.
164 float minDefaultLabelWidth = defaultWidthNumChars * font.width(constructTextRun(renderer, font, characterAsString, style(), TextRun::AllowTrailingExpansion));
167 float defaultLabelWidth = font.width(constructTextRun(renderer, font, label, style(), TextRun::AllowTrailingExpansion));
RenderCombineText.cpp 99 TextRun run = RenderBlock::constructTextRun(this, originalFont(), this, style());
InlineTextBox.h 106 TextRun constructTextRun(RenderStyle*, const Font&, StringBuilder* charactersWithHyphen = 0) const;
107 TextRun constructTextRun(RenderStyle*, const Font&, StringView, int maximumLength, StringBuilder* charactersWithHyphen = 0) const;
InlineTextBox.cpp 209 TextRun textRun = constructTextRun(styleToUse, font, respectHyphen ? &charactersWithHyphen : 0);
683 TextRun textRun = constructTextRun(styleToUse, font, string, maximumLength, hasHyphen() ? &charactersWithHyphen : 0);
    [all...]
RenderTextControl.cpp 217 TextRun textRun = constructTextRun(this, font, str, style(), TextRun::AllowTrailingExpansion);
RenderBlock.h 284 static TextRun constructTextRun(RenderObject* context, const Font& font, const String& string, RenderStyle* style,
287 static TextRun constructTextRun(RenderObject* context, const Font& font, const RenderText* text, RenderStyle* style,
290 static TextRun constructTextRun(RenderObject* context, const Font& font, const RenderText* text, unsigned offset, unsigned length, RenderStyle* style,
293 static TextRun constructTextRun(RenderObject* context, const Font& font, const RenderText* text, unsigned offset, RenderStyle* style,
296 static TextRun constructTextRun(RenderObject* context, const Font& font, const LChar* characters, int length, RenderStyle* style,
299 static TextRun constructTextRun(RenderObject* context, const Font& font, const UChar* characters, int length, RenderStyle* style,
    [all...]
RenderText.cpp 758 TextRun run = RenderBlock::constructTextRun(const_cast<RenderText*>(this), f, this, start, len, style());
813 float spaceWidth = font.width(RenderBlock::constructTextRun(this, font, &space, 1, style()));
    [all...]
RenderImage.cpp 130 IntSize paddedTextSize(paddingWidth + min(ceilf(font.width(RenderBlock::constructTextRun(this, font, m_altText, style()))), maxAltTextWidth), paddingHeight + min(font.fontMetrics().height(), maxAltTextHeight));
346 TextRun textRun = RenderBlock::constructTextRun(this, font, text, style());
RenderListMarker.cpp     [all...]
RenderDeprecatedFlexibleBox.cpp     [all...]
RenderBlockLineLayout.cpp     [all...]
RenderListBox.cpp 137 TextRun textRun = constructTextRun(this, itemFont, text, style(), TextRun::AllowTrailingExpansion);
RenderBlock.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/mac/
ComplexTextController.cpp 46 TextRun run = RenderBlock::constructTextRun(text, font, text, text->style());
52 , m_run(constructTextRun(text, font, xPos))
69 static TextRun constructTextRun(RenderText* text, const Font& font, float xPos)
71 TextRun run = RenderBlock::constructTextRun(text, font, text, text->style());

Completed in 103 milliseconds