/external/skqp/tests/ |
D | UnicodeTest.cpp | 64 int count8 = paint.textToGlyphs(text8, len8, glyphs8); in test_textencodings() 67 int count16 = paint.textToGlyphs(text16, len16, glyphs16); in test_textencodings() 70 int count32 = paint.textToGlyphs(text32, len32, glyphs32); in test_textencodings()
|
D | TextBlobTest.cpp | 162 const int glyphCount = p.textToGlyphs(txt, txtLen, nullptr); in TestBounds() 168 p.textToGlyphs(txt, txtLen, buffer.glyphs); in TestBounds() 357 int glyphCount = paint.textToGlyphs(text1, strlen(text1), nullptr); in DEF_TEST() 359 (void)paint.textToGlyphs(text1, strlen(text1), glyphs.get()); in DEF_TEST() 401 int glyphCount = paint.textToGlyphs(text, strlen(text), nullptr); in add_run() 407 (void)paint.textToGlyphs(text, strlen(text), buffer.glyphs); in add_run()
|
D | FontHostTest.cpp | 100 paint.textToGlyphs(test.chars, test.charsByteLength, paintGlyphIds); in test_charsToGlyphs() 163 paint.textToGlyphs(&c, 4, &g); in test_symbolfont()
|
/external/skia/tests/ |
D | UnicodeTest.cpp | 64 int count8 = paint.textToGlyphs(text8, len8, glyphs8); in test_textencodings() 67 int count16 = paint.textToGlyphs(text16, len16, glyphs16); in test_textencodings() 70 int count32 = paint.textToGlyphs(text32, len32, glyphs32); in test_textencodings()
|
D | TextBlobTest.cpp | 162 const int glyphCount = p.textToGlyphs(txt, txtLen, nullptr); in TestBounds() 168 p.textToGlyphs(txt, txtLen, buffer.glyphs); in TestBounds() 357 int glyphCount = paint.textToGlyphs(text1, strlen(text1), nullptr); in DEF_TEST() 359 (void)paint.textToGlyphs(text1, strlen(text1), glyphs.get()); in DEF_TEST() 401 int glyphCount = paint.textToGlyphs(text, strlen(text), nullptr); in add_run() 407 (void)paint.textToGlyphs(text, strlen(text), buffer.glyphs); in add_run()
|
D | FontHostTest.cpp | 100 paint.textToGlyphs(test.chars, test.charsByteLength, paintGlyphIds); in test_charsToGlyphs() 163 paint.textToGlyphs(&c, 4, &g); in test_symbolfont()
|
/external/skia/bench/ |
D | TextBlobBench.cpp | 37 glyphs.append(paint.textToGlyphs(text, len, nullptr)); in onDelayedSetup() 38 paint.textToGlyphs(text, len, glyphs.begin()); in onDelayedSetup()
|
D | CmapBench.cpp | 39 paint.textToGlyphs(text, len, glyphs); in textToGlyphs_proc()
|
/external/skqp/bench/ |
D | TextBlobBench.cpp | 37 glyphs.append(paint.textToGlyphs(text, len, nullptr)); in onDelayedSetup() 38 paint.textToGlyphs(text, len, glyphs.begin()); in onDelayedSetup()
|
D | CmapBench.cpp | 39 paint.textToGlyphs(text, len, glyphs); in textToGlyphs_proc()
|
/external/skia/experimental/sksg/geometry/ |
D | SkSGText.cpp | 44 glyphs.reset(font.textToGlyphs(fText.c_str(), fText.size(), nullptr)); in onRevalidate() 45 … SkAssertResult(font.textToGlyphs(fText.c_str(), fText.size(), glyphs.begin()) == glyphs.count()); in onRevalidate()
|
/external/skqp/experimental/sksg/geometry/ |
D | SkSGText.cpp | 44 glyphs.reset(font.textToGlyphs(fText.c_str(), fText.size(), nullptr)); in onRevalidate() 45 … SkAssertResult(font.textToGlyphs(fText.c_str(), fText.size(), glyphs.begin()) == glyphs.count()); in onRevalidate()
|
/external/skia/include/core/ |
D | SkFont.h | 148 int textToGlyphs(const void* text, size_t byteLength, SkTextEncoding, 152 return this->textToGlyphs(text, byteLength, encoding, nullptr, 0); in countText()
|
D | SkPaint.h | 1299 int textToGlyphs(const void* text, size_t byteLength, 1340 return this->textToGlyphs(text, byteLength, nullptr); in countText()
|
/external/skqp/include/core/ |
D | SkFont.h | 148 int textToGlyphs(const void* text, size_t byteLength, SkTextEncoding, 152 return this->textToGlyphs(text, byteLength, encoding, nullptr, 0); in countText()
|
D | SkPaint.h | 1296 int textToGlyphs(const void* text, size_t byteLength, 1337 return this->textToGlyphs(text, byteLength, nullptr); in countText()
|
/external/skqp/gm/ |
D | textblobshader.cpp | 26 fGlyphs.append(p.textToGlyphs(txt, txtLen, nullptr)); in TextBlobShaderGM() 27 p.textToGlyphs(txt, txtLen, fGlyphs.begin()); in TextBlobShaderGM()
|
D | textblob.cpp | 80 int glyphCount = p.textToGlyphs(fText, txtLen, nullptr); in onOnceBeforeDraw() 83 p.textToGlyphs(fText, txtLen, fGlyphs.begin()); in onOnceBeforeDraw()
|
D | textbloblooper.cpp | 34 glyphs.append(paint.textToGlyphs(text, len, nullptr)); in add_to_text_blob() 35 paint.textToGlyphs(text, len, glyphs.begin()); in add_to_text_blob()
|
D | texteffects.cpp | 144 const int glyphCount = blobPaint.textToGlyphs(text, textLen, nullptr); in MakeFancyBlob() 146 blobPaint.textToGlyphs(text, textLen, glyphs.get()); in MakeFancyBlob()
|
/external/skia/gm/ |
D | textblobshader.cpp | 26 fGlyphs.append(p.textToGlyphs(txt, txtLen, nullptr)); in TextBlobShaderGM() 27 p.textToGlyphs(txt, txtLen, fGlyphs.begin()); in TextBlobShaderGM()
|
D | textblob.cpp | 80 int glyphCount = p.textToGlyphs(fText, txtLen, nullptr); in onOnceBeforeDraw() 83 p.textToGlyphs(fText, txtLen, fGlyphs.begin()); in onOnceBeforeDraw()
|
D | textbloblooper.cpp | 34 glyphs.append(paint.textToGlyphs(text, len, nullptr)); in add_to_text_blob() 35 paint.textToGlyphs(text, len, glyphs.begin()); in add_to_text_blob()
|
/external/skia/tools/shape/ |
D | SkShaper_primitive.cpp | 65 (void)paint.textToGlyphs(utf8text, textBytes, runBuffer.glyphs); in shape()
|
/external/skqp/tools/shape/ |
D | SkShaper_primitive.cpp | 65 (void)paint.textToGlyphs(utf8text, textBytes, runBuffer.glyphs); in shape()
|