Searched defs:lastGlyphCount (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DWidthIterator.cpp99 static inline float applyFontTransforms(GlyphBuffer* glyphBuffer, bool ltr, unsigned& lastGlyphCount, const SimpleFontData* fontData, TypesettingFeatures typesettingFeatures, CharactersTreatedAsSpace& charactersTreatedAsSpace) argument
107 if (glyphBuffer->size() <= lastGlyphCount + 1)
112 for (unsigned i = lastGlyphCount; i < glyphBufferSize; ++i)
116 glyphBuffer->reverse(lastGlyphCount, glyphBufferSize - lastGlyphCount);
118 fontData->applyTransforms(glyphBuffer->glyphs(lastGlyphCount), advances + lastGlyphCount, glyphBufferSize - lastGlyphCount, typesettingFeatures);
121 glyphBuffer->reverse(lastGlyphCount, glyphBufferSize - lastGlyphCount);
154 unsigned lastGlyphCount = glyphBuffer ? glyphBuffer->size() : 0; local
[all...]

Completed in 188 milliseconds