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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
EllipsisBox.cpp 32 #include "platform/text/TextRun.h"
82 TextRun textRun = RenderBlockFlow::constructTextRun(&renderer(), font, m_str, style, TextRun::AllowTrailingExpansion);
83 TextRunPaintInfo textRunPaintInfo(textRun);
132 return enclosingIntRect(font.selectionRectForText(RenderBlockFlow::constructTextRun(&renderer(), font, m_str, style, TextRun::AllowTrailingExpansion), IntPoint(logicalLeft(), logicalTop() + root().selectionTopAdjustedForPrecedingBlock()), root().selectionHeightAdjustedForPrecedingBlock()));
156 context->drawHighlightForText(font, RenderBlockFlow::constructTextRun(&renderer(), font, m_str, style, TextRun::AllowTrailingExpansion), localOrigin, h, c);
RenderFileUploadControl.cpp 35 #include "platform/text/TextRun.h"
108 TextRun textRun = constructTextRun(this, font, displayedFilename, style(), TextRun::AllowTrailingExpansion, RespectDirection | RespectDirectionOverride);
109 textRun.disableRoundingHacks();
119 float textWidth = font.width(textRun);
133 TextRunPaintInfo textRunPaintInfo(textRun);
157 float minDefaultLabelWidth = defaultWidthNumChars * font.width(constructTextRun(renderer, font, characterAsString, style(), TextRun::AllowTrailingExpansion));
160 float defaultLabelWidth = font.width(constructTextRun(renderer, font, label, style(), TextRun::AllowTrailingExpansion));
RenderTextControl.cpp 234 TextRun textRun = constructTextRun(this, font, str, style(), TextRun::AllowTrailingExpansion);
235 textRun.disableRoundingHacks();
236 return font.width(textRun);
RenderImage.cpp 335 TextRun textRun = RenderBlockFlow::constructTextRun(this, font, m_altText, style(), TextRun::AllowTrailingExpansion | TextRun::ForbidLeadingExpansion, DefaultTextRunFlags | RespectDirection);
336 float textWidth = font.width(textRun);
337 TextRunPaintInfo textRunPaintInfo(textRun);
340 if (textRun.direction() == RTL) {
RenderListBox.cpp 159 TextRun textRun = constructTextRun(this, itemFont, text, style(), TextRun::AllowTrailingExpansion);
161 textRun.setDirection(direction);
162 textRun.disableRoundingHacks();
163 float textWidth = itemFont.width(textRun);
406 static LayoutSize itemOffsetForAlignment(TextRun textRun, RenderStyle* itemStyle, Font itemFont, LayoutRect itemBoudingBox)
416 float textWidth = itemFont.width(textRun);
419 float textWidth = itemFont.width(textRun);
    [all...]
InlineTextBox.cpp 215 TextRun textRun = constructTextRun(styleToUse, font, respectHyphen ? &charactersWithHyphen : 0);
220 r = enclosingIntRect(font.selectionRectForText(textRun, startingPoint, selHeight, sPos, ePos));
392 const RenderObject& renderer, const Font& font, const TextRun& textRun,
415 TextRunPaintInfo textRunPaintInfo(textRun);
670 TextRun textRun = constructTextRun(styleToUse, font, string, maximumLength, hasHyphen() ? &charactersWithHyphen : 0);
672 length = textRun.length();
700 paintTextWithShadows(context, rendererToUse, font, textRun, nullAtom, 0, 0, length, length, textOrigin, boxRect, textShadow, textStrokeWidth > 0, isHorizonta (…)
    [all...]
RenderListMarker.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
DragImage.cpp 44 #include "platform/text/TextRun.h"
138 TextRun labelRun(label.impl());
139 TextRun urlRun(urlString.impl());
181 TextRun textRun(urlString);
182 buffer->context()->drawText(urlFont, TextRunPaintInfo(textRun), textPos);
189 TextRun textRun = textRunWithDirectionality(label, hasStrongDirectionality);
191 if (hasStrongDirectionality && textRun.direction() == RTL) {
192 float textWidth = urlFont.width(textRun);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGInlineTextBox.cpp 100 TextRun textRun = constructTextRun(style, fragment);
107 textRun.setHorizontalGlyphStretch(narrowPrecisionToFloat(fragmentTransform.xScale()));
109 return fragment.characterOffset - start() + textRenderer.scaledFont().offsetForPosition(textRun, position * scalingFactor, includePartialGlyphs);
403 float scalingFactor, TextRun& textRun, RenderStyle* style, RenderSVGResourceModeFlags resourceMode)
411 TextRun::RenderingContext* renderingContext = textRun.renderingContext();
420 TextRun& textRun, RenderSVGResourceModeFlags resourceMode
    [all...]

Completed in 647 milliseconds