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

  /external/webkit/WebCore/rendering/
SVGInlineTextBox.cpp 74 float SVGInlineTextBox::calculateGlyphWidth(RenderStyle* style, int offset, int extraCharsAvailable, int& charsConsumed, String& glyphName) const
77 return style->font().floatWidth(svgTextRunForInlineTextBox(textRenderer()->text()->characters() + offset, 1, style, this, 0), extraCharsAvailable, charsConsumed, glyphName);
95 int charsConsumed;
98 glyphWidth = calculateGlyphWidth(style, offset, 0, charsConsumed, glyphName);
100 glyphWidth = calculateGlyphWidth(style, start() + end() - offset, 0, charsConsumed, glyphName);
SVGRootInlineBox.cpp 807 int charsConsumed = 1;
810 float lastGlyphWidth = box->calculateGlyphWidth(style, offset, 0, charsConsumed, glyphName);
    [all...]
  /external/webkit/WebCore/svg/
SVGFont.cpp 289 m_walkerData.charsConsumed += identifier.nameLength;
299 ++m_walkerData.charsConsumed;
336 int charsConsumed;
378 static float floatWidthOfSubStringUsingSVGFont(const Font* font, const TextRun& run, int extraCharsAvailable, int from, int to, int& charsConsumed, String& glyphName)
400 data.charsConsumed = 0;
417 charsConsumed = data.charsConsumed;
427 int charsConsumed;
429 return floatWidthOfSubStringUsingSVGFont(this, run, 0, 0, run.length(), charsConsumed, glyphName);
432 float Font::floatWidthUsingSVGFont(const TextRun& run, int extraCharsAvailable, int& charsConsumed, String& glyphName) cons
    [all...]
SVGTextContentElement.cpp 80 int charsConsumed = 0;
85 textLength += textBox->calculateGlyphWidth(style, newOffset, 0, charsConsumed, glyphName);
196 int charsConsumed;
204 m_queryPointResult.move(it->x + textBox->calculateGlyphWidth(style, newOffset, extraCharactersAvailable, charsConsumed, glyphName), it->y);

Completed in 177 milliseconds