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

  /external/skia/bench/
TextBlobBench.cpp 37 glyphs.append(paint.textToGlyphs(text, len, nullptr));
38 paint.textToGlyphs(text, len, glyphs.begin());
CmapBench.cpp 39 paint.textToGlyphs(text, len, glyphs);
  /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);
TextBlobTest.cpp 161 const int glyphCount = p.textToGlyphs(txt, txtLen, nullptr);
167 p.textToGlyphs(txt, txtLen, buffer.glyphs);
356 int glyphCount = paint.textToGlyphs(text1, strlen(text1), nullptr);
358 (void)paint.textToGlyphs(text1, strlen(text1), glyphs.get());
FontHostTest.cpp 89 // Test that SkPaint::textToGlyphs agrees with SkTypeface::charsToGlyphs.
100 paint.textToGlyphs(test.chars, test.charsByteLength, paintGlyphIds);
163 paint.textToGlyphs(&c, 4, &g);
PaintTest.cpp 102 int nglyphs = paint.textToGlyphs(dst, len, glyphs0);
FontMgrTest.cpp 33 int count = font->textToGlyphs("Hello", 5, kUTF8_SkTextEncoding, glyphs, SK_ARRAY_COUNT(glyphs));
  /external/skia/include/core/
SkFont.h 148 int textToGlyphs(const void* text, size_t byteLength, SkTextEncoding,
152 return this->textToGlyphs(text, byteLength, encoding, nullptr, 0);
SkPaint.h 784 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/gm/
textblobshader.cpp 26 fGlyphs.append(p.textToGlyphs(txt, txtLen, nullptr));
27 p.textToGlyphs(txt, txtLen, fGlyphs.begin());
textblob.cpp 80 int glyphCount = p.textToGlyphs(fText, txtLen, nullptr);
83 p.textToGlyphs(fText, txtLen, fGlyphs.begin());
textbloblooper.cpp 34 glyphs.append(paint.textToGlyphs(text, len, nullptr));
35 paint.textToGlyphs(text, len, glyphs.begin());
texteffects.cpp 325 const int glyphCount = blobPaint.textToGlyphs(text, textLen, nullptr);
327 blobPaint.textToGlyphs(text, textLen, glyphs.get());
typeface.cpp 52 int glyphCount = paint.textToGlyphs(text, len, glyphs);
  /external/skia/tools/
SkShaper_primitive.cpp 58 (void)paint.textToGlyphs(utf8text, textBytes, runBuffer.glyphs);
sk_tool_utils.cpp 290 glyphs.append(paint.textToGlyphs(text, len, nullptr));
291 paint.textToGlyphs(text, len, glyphs.begin());
  /external/skia/src/core/
SkFont.cpp 57 int SkFont::textToGlyphs(const void* text, size_t byteLength, SkTextEncoding encoding,
SkPaint.cpp 405 int SkPaint::textToGlyphs(const void* textData, size_t byteLength, uint16_t glyphs[]) const {
    [all...]
  /frameworks/base/core/jni/android/graphics/
HarfBuzzNGFaceSkia.cpp 95 paint->textToGlyphs(&unichar, sizeof(unichar), &glyph16);
  /external/skia/src/utils/
SkTextBox.cpp 291 paint.textToGlyphs(text, length, fBuilder.allocRun(p, count, x, y).glyphs);
  /external/skia/src/pdf/
SkPDFDevice.cpp     [all...]
  /external/skia/src/ports/
SkFontMgr_android.cpp 367 paint.textToGlyphs(&character, sizeof(character), &glyphID);
  /frameworks/base/libs/hwui/
SkiaCanvasProxy.cpp 271 count = paint.textToGlyphs(text, byteLength, storage.get());
  /external/skia/tools/debugger/
SkDrawCommand.cpp     [all...]

Completed in 807 milliseconds