Home | History | Annotate | Download | only in tests

Lines Matching defs:glyphs

30     uint16_t glyphs[5];
31 sk_bzero(glyphs, sizeof(glyphs));
33 int count = font->textToGlyphs("Hello", 5, kUTF8_SkTextEncoding, glyphs, SK_ARRAY_COUNT(glyphs));
37 REPORTER_ASSERT(reporter, 0 != glyphs[i]);
39 REPORTER_ASSERT(reporter, glyphs[0] != glyphs[1]); // 'h' != 'e'
40 REPORTER_ASSERT(reporter, glyphs[2] == glyphs[3]); // 'l' == 'l'
141 uint16_t glyphs[], int glyphCount) const override {
142 if (glyphs && glyphCount > 0) {
143 sk_bzero(glyphs, glyphCount * sizeof(glyphs[0]));