HomeSort by relevance Sort by last modified time
    Searched defs:glyphIndex (Results 1 - 8 of 8) sorted by null

  /frameworks/av/cmds/screenrecord/
TextRenderer.cpp 158 size_t TextRenderer::glyphIndex(char ch) const {
171 size_t chi = glyphIndex(str[i]);
198 size_t chi = glyphIndex(str[i]);
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
FontHarfBuzz.cpp 144 unsigned glyphIndex = 0;
145 while (glyphIndex < numGlyphs) {
146 unsigned chunkLength = std::min(kMaxBufferLength, numGlyphs - glyphIndex);
148 const Glyph* glyphs = glyphBuffer.glyphs(from + glyphIndex);
156 for (unsigned i = 0; i < chunkLength; ++i, ++glyphIndex) {
160 currentWidth += glyphBuffer.advanceAt(from + glyphIndex).width();
HarfBuzzShaper.cpp 289 unsigned glyphIndex = 0;
292 while (glyphIndex < m_numGlyphs - 1 && m_glyphToCharacterIndexes[glyphIndex] == m_glyphToCharacterIndexes[glyphIndex + 1])
293 currentAdvance += m_advances[++glyphIndex];
299 ++glyphIndex;
300 while (glyphIndex < m_numGlyphs) {
301 unsigned prevCharacterIndex = m_glyphToCharacterIndexes[glyphIndex - 1];
303 currentAdvance = m_advances[glyphIndex];
304 while (glyphIndex < m_numGlyphs - 1 && m_glyphToCharacterIndexes[glyphIndex] == m_glyphToCharacterIndexes[glyphIndex (…)
    [all...]
  /external/chromium_org/third_party/skia/src/sfnt/
SkOTTable_glyf.h 155 SK_OT_USHORT glyphIndex;
  /external/skia/src/sfnt/
SkOTTable_glyf.h 155 SK_OT_USHORT glyphIndex;
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/
OpenTypeVerticalData.cpp 106 OpenType::UInt16 glyphIndex;
452 m_vertOriginY.set(metrics.glyphIndex, metrics.vertOriginY);
  /external/chromium_org/third_party/skia/src/ports/
SkFontHost_FreeType.cpp 514 FT_UInt glyphIndex;
515 for (SkUnichar charCode = FT_Get_First_Char(face, &glyphIndex);
516 glyphIndex != 0;
517 charCode = FT_Get_Next_Char(face, charCode, &glyphIndex)) {
519 ((*glyphToUnicode)[glyphIndex] == 0 || preferredMap)) {
520 (*glyphToUnicode)[glyphIndex] = charCode;
    [all...]
  /external/skia/src/ports/
SkFontHost_FreeType.cpp 515 FT_UInt glyphIndex;
516 for (SkUnichar charCode = FT_Get_First_Char(face, &glyphIndex);
517 glyphIndex != 0;
518 charCode = FT_Get_Next_Char(face, charCode, &glyphIndex)) {
520 ((*glyphToUnicode)[glyphIndex] == 0 || preferredMap)) {
521 (*glyphToUnicode)[glyphIndex] = charCode;
    [all...]

Completed in 347 milliseconds