HomeSort by relevance Sort by last modified time
    Searched defs:textRun (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
EllipsisBox.cpp 26 #include "core/platform/graphics/TextRun.h"
77 TextRun textRun = RenderBlock::constructTextRun(renderer(), font, m_str, style, TextRun::AllowTrailingExpansion);
78 TextRunPaintInfo textRunPaintInfo(textRun);
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 32 #include "core/platform/graphics/TextRun.h"
113 TextRun textRun = constructTextRun(this, font, displayedFilename, style(), TextRun::AllowTrailingExpansion, RespectDirection | RespectDirectionOverride);
114 textRun.disableRoundingHacks();
125 float textWidth = font.width(textRun);
139 TextRunPaintInfo textRunPaintInfo(textRun);
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));
RenderTextControl.cpp 217 TextRun textRun = constructTextRun(this, font, str, style(), TextRun::AllowTrailingExpansion);
218 textRun.disableRoundingHacks();
219 return font.width(textRun);
RenderImage.cpp 346 TextRun textRun = RenderBlock::constructTextRun(this, font, text, style());
347 LayoutUnit textWidth = font.width(textRun);
348 TextRunPaintInfo textRunPaintInfo(textRun);
RenderListBox.cpp 137 TextRun textRun = constructTextRun(this, itemFont, text, style(), TextRun::AllowTrailingExpansion);
138 textRun.disableRoundingHacks();
139 float textWidth = itemFont.width(textRun);
365 static LayoutSize itemOffsetForAlignment(TextRun textRun, RenderStyle* itemStyle, Font itemFont, LayoutRect itemBoudingBox)
375 float textWidth = itemFont.width(textRun);
378 float textWidth = itemFont.width(textRun);
420 TextRun textRun(itemText, 0, 0, TextRun::AllowTrailingExpansion, itemStyle->direction(), isOverride(itemSt (…)
    [all...]
InlineTextBox.cpp 209 TextRun textRun = constructTextRun(styleToUse, font, respectHyphen ? &charactersWithHyphen : 0);
211 endPos = textRun.length();
216 r = enclosingIntRect(font.selectionRectForText(textRun, startingPoint, selHeight, sPos, ePos));
388 const RenderObject* renderer, const Font& font, const TextRun& textRun,
412 TextRunPaintInfo textRunPaintInfo(textRun);
683 TextRun textRun = constructTextRun(styleToUse, font, string, maximumLength, hasHyphen() ? &charactersWithHyphen : 0);
685 length = textRun.length()
    [all...]
RenderListMarker.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGInlineTextBox.cpp 95 TextRun textRun = constructTextRun(style, fragment);
102 textRun.setHorizontalGlyphStretch(narrowPrecisionToFloat(fragmentTransform.xScale()));
104 return fragment.characterOffset - start() + textRenderer->scaledFont().offsetForPosition(textRun, position * scalingFactor, includePartialGlyphs);
398 bool SVGInlineTextBox::prepareGraphicsContextForTextPainting(GraphicsContext*& context, float scalingFactor, TextRun& textRun, RenderStyle* style)
406 TextRun::RenderingContext* renderingContext = textRun.renderingContext();
414 void SVGInlineTextBox::restoreGraphicsContextAfterTextPainting(GraphicsContext*& context, TextRun& textRun)
    [all...]

Completed in 547 milliseconds