Home | History | Annotate | Download | only in chromium

Lines Matching defs:glyphs

194     // Draws the partial string of glyphs, starting at |startAdvance| to the
198 bool drawGlyphs(int numGlyphs, const WORD* glyphs, const int* advances, int startAdvance) const;
255 const WORD* glyphs,
263 numGlyphs, glyphs, advances, 0, &origin);
288 ExtTextOut(m_hdc, x + shadowSize.width(), y + shadowSize.height(), ETO_GLYPH_INDEX, 0, reinterpret_cast<const wchar_t*>(&glyphs[0]), numGlyphs, &advances[0]);
292 return !!ExtTextOut(m_hdc, x, y, ETO_GLYPH_INDEX, 0, reinterpret_cast<const wchar_t*>(&glyphs[0]), numGlyphs, &advances[0]);
383 // We draw the glyphs in chunks to avoid having to do a heap allocation for
389 Vector<WORD, kMaxBufferLength> glyphs;
396 glyphs.resize(curLen);
401 glyphs[i] = glyphBuffer.glyphAt(from + glyphIndex);
417 // Actually draw the glyphs (with retry on failure).
420 success = painter.drawGlyphs(curLen, &glyphs[0], &advances[0], curAdvance);
430 LOG_ERROR("Unable to draw the glyphs after second attempt");