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

  /external/webkit/WebCore/rendering/
SVGRootInlineBox.h 43 String glyphName;
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);
96 String glyphName;
98 glyphWidth = calculateGlyphWidth(style, offset, 0, charsConsumed, glyphName);
100 glyphWidth = calculateGlyphWidth(style, start() + end() - offset, 0, charsConsumed, glyphName);
SVGRootInlineBox.cpp 808 String glyphName;
810 float lastGlyphWidth = box->calculateGlyphWidth(style, offset, 0, charsConsumed, glyphName);
    [all...]
  /external/webkit/WebCore/svg/
SVGGlyphElement.h 78 glyphName == other.glyphName &&
93 String glyphName;
SVGFont.cpp 290 m_walkerData.glyphName = identifier.glyphName;
337 String glyphName;
378 static float floatWidthOfSubStringUsingSVGFont(const Font* font, const TextRun& run, int extraCharsAvailable, int from, int to, int& charsConsumed, String& glyphName)
418 glyphName = data.glyphName;
428 String glyphName;
429 return floatWidthOfSubStringUsingSVGFont(this, run, 0, 0, run.length(), charsConsumed, glyphName);
432 float Font::floatWidthUsingSVGFont(const TextRun& run, int extraCharsAvailable, int& charsConsumed, String& glyphName) const
434 return floatWidthOfSubStringUsingSVGFont(this, run, extraCharsAvailable, 0, run.length(), charsConsumed, glyphName);
    [all...]
SVGTextContentElement.cpp 81 String glyphName;
85 textLength += textBox->calculateGlyphWidth(style, newOffset, 0, charsConsumed, glyphName);
197 String glyphName;
204 m_queryPointResult.move(it->x + textBox->calculateGlyphWidth(style, newOffset, extraCharactersAvailable, charsConsumed, glyphName), it->y);

Completed in 36 milliseconds