Searched refs:textToGlyphs (Results 1 - 11 of 11) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/android/fonts/
H A DGlyphMapAndroid.cpp113 unsigned count = paint.textToGlyphs(textBuffer, bufferLength << 1, glyphs);
133 unsigned count = paint.textToGlyphs(textBuffer, bufferLength << 1, glyphs);
H A DHarfbuzzSkia.cpp61 int numGlyphs = paint.textToGlyphs(characters, length * sizeof(uint16_t), reinterpret_cast<uint16_t*>(glyphs));
112 int numGlyphs = paint.textToGlyphs(characters, length * sizeof(uint16_t), glyphs16.get());
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DGlyphPageTreeNodeSkia.cpp87 // textToGlyphs takes a byte count, not a glyph count so we multiply by two.
88 unsigned count = paint.textToGlyphs(buffer, bufferLength * 2, glyphs);
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DHarfbuzzSkia.cpp74 int numGlyphs = paint.textToGlyphs(characters, length * sizeof(uint16_t), reinterpret_cast<uint16_t*>(glyphs));
126 int numGlyphs = paint.textToGlyphs(characters, length * sizeof(uint16_t), glyphs16.get());
H A DSimpleFontDataLinux.cpp196 // textToGlyphs takes a byte count so we double the character count.
197 int count = paint.textToGlyphs(characters, n * 2, glyphs);
/external/skia/gm/
H A Dgammatext.cpp93 int count = paint.textToGlyphs(text, len, glyphs);
/external/skia/include/core/
H A DSkPaint.h777 int textToGlyphs(const void* text, size_t byteLength,
798 want to have the text converted into glyph IDs, call textToGlyphs
802 return this->textToGlyphs(text, byteLength, NULL);
/external/skia/src/ports/
H A DSkHarfBuzzFont.cpp33 int numGlyphs = paint.textToGlyphs(characters, length * sizeof(uint16_t),
/external/skia/src/pdf/
H A DSkPDFDevice.cpp802 size_t numGlyphs = paint.textToGlyphs(text, len, NULL);
807 paint.textToGlyphs(text, len, glyphIDs);
854 numGlyphs = paint.textToGlyphs(text, len, NULL);
858 paint.textToGlyphs(text, len, glyphIDs);
/external/skia/src/pipe/
H A DSkGPipeWrite.cpp529 int count = paint.textToGlyphs(text, byteLength, NULL);
546 int count = paint.textToGlyphs(text, byteLength, NULL);
/external/skia/src/core/
H A DSkPaint.cpp485 int SkPaint::textToGlyphs(const void* textData, size_t byteLength, function in class:SkPaint

Completed in 68 milliseconds