HomeSort by relevance Sort by last modified time
    Searched refs:textToGlyphs (Results 1 - 20 of 20) sorted by null

  /external/skia/tests/
UnicodeTest.cpp 41 // Simple test to ensure that when we call textToGlyphs, we get the same
64 int count8 = paint.textToGlyphs(text8, len8, glyphs8);
67 int count16 = paint.textToGlyphs(text16, len16, glyphs16);
70 int count32 = paint.textToGlyphs(text32, len32, glyphs32);
PaintTest.cpp 94 int nglyphs = paint.textToGlyphs(dst, len, glyphs0);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/skia/
GlyphPageTreeNodeSkia.cpp 62 // textToGlyphs takes a byte count, not a glyph count so we multiply by two.
63 unsigned count = paint.textToGlyphs(buffer, bufferLength * 2, glyphs);
SimpleFontDataSkia.cpp 198 // textToGlyphs takes a byte count so we double the character count.
199 int count = paint.textToGlyphs(characters, n * 2, glyphs);
277 if (paint.textToGlyphs(&normalizedCharacters[0], normalizedLength * 2, 0)) {
  /external/skia/bench/
CmapBench.cpp 40 paint.textToGlyphs(text, len, glyphs);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/harfbuzz/
HarfBuzzFaceSkia.cpp 96 paint->textToGlyphs(&unicode, sizeof(hb_codepoint_t), &glyph16);
  /frameworks/base/core/jni/android/graphics/
HarfBuzzNGFaceSkia.cpp 92 paint->textToGlyphs(unichar, size * sizeof(*unichar), &glyph16);
  /external/chromium_org/third_party/skia/include/core/
SkPaint.h 783 int textToGlyphs(const void* text, size_t byteLength,
804 want to have the text converted into glyph IDs, call textToGlyphs
808 return this->textToGlyphs(text, byteLength, NULL);
    [all...]
  /external/skia/include/core/
SkPaint.h 783 int textToGlyphs(const void* text, size_t byteLength,
804 want to have the text converted into glyph IDs, call textToGlyphs
808 return this->textToGlyphs(text, byteLength, NULL);
    [all...]
  /external/chromium_org/third_party/skia/src/ports/
SkHarfBuzzFont.cpp 33 int numGlyphs = paint.textToGlyphs(characters, length * sizeof(uint16_t),
SkFontConfigInterface_android.cpp 513 paint.textToGlyphs(&uni, sizeof(uni), &glyphID);
  /external/skia/gm/
gammatext.cpp 95 int count = paint.textToGlyphs(text, len, glyphs);
  /external/skia/src/ports/
SkHarfBuzzFont.cpp 33 int numGlyphs = paint.textToGlyphs(characters, length * sizeof(uint16_t),
SkFontConfigInterface_android.cpp 540 paint.textToGlyphs(&uni, sizeof(uni), &glyphID);
    [all...]
  /external/skia/src/pdf/
SkPDFDevice.cpp 137 size_t numGlyphs = paint.textToGlyphs(text, len, NULL);
139 paint.textToGlyphs(text, len, storage->get());
    [all...]
  /external/chromium_org/third_party/skia/src/pipe/
SkGPipeWrite.cpp 852 int count = paint.textToGlyphs(text, byteLength, NULL);
869 int count = paint.textToGlyphs(text, byteLength, NULL);
    [all...]
  /external/skia/src/pipe/
SkGPipeWrite.cpp 852 int count = paint.textToGlyphs(text, byteLength, NULL);
869 int count = paint.textToGlyphs(text, byteLength, NULL);
    [all...]
  /external/chromium_org/third_party/skia/src/pdf/
SkPDFDevice.cpp 120 size_t numGlyphs = paint.textToGlyphs(text, len, NULL);
122 paint.textToGlyphs(text, len, storage->get());
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkPaint.cpp 523 int SkPaint::textToGlyphs(const void* textData, size_t byteLength,
    [all...]
  /external/skia/src/core/
SkPaint.cpp 524 int SkPaint::textToGlyphs(const void* textData, size_t byteLength,
    [all...]

Completed in 228 milliseconds