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

12

/external/skia/bench/
H A DTextBlobBench.cpp37 glyphs.append(paint.textToGlyphs(text, len, nullptr));
38 paint.textToGlyphs(text, len, glyphs.begin());
H A DCmapBench.cpp39 paint.textToGlyphs(text, len, glyphs);
/external/skqp/bench/
H A DTextBlobBench.cpp37 glyphs.append(paint.textToGlyphs(text, len, nullptr));
38 paint.textToGlyphs(text, len, glyphs.begin());
H A DCmapBench.cpp39 paint.textToGlyphs(text, len, glyphs);
/external/skia/tests/
H A DUnicodeTest.cpp41 // 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);
H A DTextBlobTest.cpp162 const int glyphCount = p.textToGlyphs(txt, txtLen, nullptr);
168 p.textToGlyphs(txt, txtLen, buffer.glyphs);
357 int glyphCount = paint.textToGlyphs(text1, strlen(text1), nullptr);
359 (void)paint.textToGlyphs(text1, strlen(text1), glyphs.get());
401 int glyphCount = paint.textToGlyphs(text, strlen(text), nullptr);
407 (void)paint.textToGlyphs(text, strlen(text), buffer.glyphs);
H A DFontHostTest.cpp89 // Test that SkPaint::textToGlyphs agrees with SkTypeface::charsToGlyphs.
100 paint.textToGlyphs(test.chars, test.charsByteLength, paintGlyphIds);
163 paint.textToGlyphs(&c, 4, &g);
/external/skqp/tests/
H A DUnicodeTest.cpp41 // 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);
H A DTextBlobTest.cpp162 const int glyphCount = p.textToGlyphs(txt, txtLen, nullptr);
168 p.textToGlyphs(txt, txtLen, buffer.glyphs);
357 int glyphCount = paint.textToGlyphs(text1, strlen(text1), nullptr);
359 (void)paint.textToGlyphs(text1, strlen(text1), glyphs.get());
401 int glyphCount = paint.textToGlyphs(text, strlen(text), nullptr);
407 (void)paint.textToGlyphs(text, strlen(text), buffer.glyphs);
H A DFontHostTest.cpp89 // Test that SkPaint::textToGlyphs agrees with SkTypeface::charsToGlyphs.
100 paint.textToGlyphs(test.chars, test.charsByteLength, paintGlyphIds);
163 paint.textToGlyphs(&c, 4, &g);
/external/skia/experimental/sksg/geometry/
H A DSkSGText.cpp44 glyphs.reset(font.textToGlyphs(fText.c_str(), fText.size(), nullptr));
45 SkAssertResult(font.textToGlyphs(fText.c_str(), fText.size(), glyphs.begin()) == glyphs.count());
/external/skia/include/core/
H A DSkFont.h148 int textToGlyphs(const void* text, size_t byteLength, SkTextEncoding,
152 return this->textToGlyphs(text, byteLength, encoding, nullptr, 0);
/external/skqp/experimental/sksg/geometry/
H A DSkSGText.cpp44 glyphs.reset(font.textToGlyphs(fText.c_str(), fText.size(), nullptr));
45 SkAssertResult(font.textToGlyphs(fText.c_str(), fText.size(), glyphs.begin()) == glyphs.count());
/external/skqp/include/core/
H A DSkFont.h148 int textToGlyphs(const void* text, size_t byteLength, SkTextEncoding,
152 return this->textToGlyphs(text, byteLength, encoding, nullptr, 0);
/external/skia/gm/
H A Dtextblobshader.cpp26 fGlyphs.append(p.textToGlyphs(txt, txtLen, nullptr));
27 p.textToGlyphs(txt, txtLen, fGlyphs.begin());
H A Dtextblob.cpp80 int glyphCount = p.textToGlyphs(fText, txtLen, nullptr);
83 p.textToGlyphs(fText, txtLen, fGlyphs.begin());
H A Dtextbloblooper.cpp34 glyphs.append(paint.textToGlyphs(text, len, nullptr));
35 paint.textToGlyphs(text, len, glyphs.begin());
H A Dtexteffects.cpp144 const int glyphCount = blobPaint.textToGlyphs(text, textLen, nullptr);
146 blobPaint.textToGlyphs(text, textLen, glyphs.get());
/external/skqp/gm/
H A Dtextblobshader.cpp26 fGlyphs.append(p.textToGlyphs(txt, txtLen, nullptr));
27 p.textToGlyphs(txt, txtLen, fGlyphs.begin());
H A Dtextblob.cpp80 int glyphCount = p.textToGlyphs(fText, txtLen, nullptr);
83 p.textToGlyphs(fText, txtLen, fGlyphs.begin());
H A Dtextbloblooper.cpp34 glyphs.append(paint.textToGlyphs(text, len, nullptr));
35 paint.textToGlyphs(text, len, glyphs.begin());
/external/skia/tools/shape/
H A DSkShaper_primitive.cpp65 (void)paint.textToGlyphs(utf8text, textBytes, runBuffer.glyphs);
/external/skqp/tools/shape/
H A DSkShaper_primitive.cpp65 (void)paint.textToGlyphs(utf8text, textBytes, runBuffer.glyphs);
/external/skia/src/core/
H A DSkFont.cpp57 int SkFont::textToGlyphs(const void* text, size_t byteLength, SkTextEncoding encoding, function in class:SkFont
/external/skqp/src/core/
H A DSkFont.cpp57 int SkFont::textToGlyphs(const void* text, size_t byteLength, SkTextEncoding encoding, function in class:SkFont

Completed in 3591 milliseconds

12