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 32 #include "platform/text/TextRun.h"
84 TextRun textRun = RenderBlockFlow::constructTextRun(renderer(), font, m_str, style, TextRun::AllowTrailingExpansion);
85 TextRunPaintInfo textRunPaintInfo(textRun);
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 36 #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);
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));
RenderTextControl.cpp 228 TextRun textRun = constructTextRun(this, font, str, style(), TextRun::AllowTrailingExpansion);
229 textRun.disableRoundingHacks();
230 return font.width(textRun);
RenderImage.cpp 363 TextRun textRun = RenderBlockFlow::constructTextRun(this, font, m_altText, style(), TextRun::AllowTrailingExpansion | TextRun::ForbidLeadingExpansion, DefaultTextRunFlags | RespectDirection);
364 LayoutUnit textWidth = font.width(textRun);
365 TextRunPaintInfo textRunPaintInfo(textRun);
RenderListBox.cpp 137 TextRun textRun = constructTextRun(this, itemFont, text, style(), TextRun::AllowTrailingExpansion);
138 textRun.disableRoundingHacks();
139 float textWidth = itemFont.width(textRun);
372 static LayoutSize itemOffsetForAlignment(TextRun textRun, RenderStyle* itemStyle, Font itemFont, LayoutRect itemBoudingBox)
382 float textWidth = itemFont.width(textRun);
385 float textWidth = itemFont.width(textRun);
427 TextRun textRun(itemText, 0, 0, TextRun::AllowTrailingExpansion, itemStyle->direction(), isOverride(itemSt (…)
    [all...]
InlineTextBox.cpp 213 TextRun textRun = constructTextRun(styleToUse, font, respectHyphen ? &charactersWithHyphen : 0);
215 endPos = textRun.length();
220 r = enclosingIntRect(font.selectionRectForText(textRun, startingPoint, selHeight, sPos, ePos));
392 const RenderObject* renderer, const Font& font, const TextRun& textRun,
415 TextRunPaintInfo textRunPaintInfo(textRun);
667 TextRun textRun = constructTextRun(styleToUse, font, string, maximumLength, hasHyphen() ? &charactersWithHyphen : 0);
669 length = textRun.length()
    [all...]
RenderListMarker.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGInlineTextBox.cpp 96 TextRun textRun = constructTextRun(style, fragment);
103 textRun.setHorizontalGlyphStretch(narrowPrecisionToFloat(fragmentTransform.xScale()));
105 return fragment.characterOffset - start() + textRenderer->scaledFont().offsetForPosition(textRun, position * scalingFactor, includePartialGlyphs);
412 bool SVGInlineTextBox::prepareGraphicsContextForTextPainting(GraphicsContext*& context, float scalingFactor, TextRun& textRun, RenderStyle* style)
420 TextRun::RenderingContext* renderingContext = textRun.renderingContext();
428 void SVGInlineTextBox::restoreGraphicsContextAfterTextPainting(GraphicsContext*& context, TextRun& textRun)
    [all...]

Completed in 131 milliseconds