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

  /external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
FontHarfBuzz.cpp 122 unsigned glyphIndex = 0;
123 while (glyphIndex < numGlyphs) {
124 unsigned chunkLength = std::min(kMaxBufferLength, numGlyphs - glyphIndex);
126 const GlyphBufferGlyph* glyphs = glyphBuffer.glyphs(from + glyphIndex);
134 for (unsigned i = 0; i < chunkLength; ++i, ++glyphIndex) {
138 currentWidth += glyphBuffer.advanceAt(from + glyphIndex);
HarfBuzzShaper.cpp 271 unsigned glyphIndex = 0;
274 while (glyphIndex < m_numGlyphs - 1 && m_glyphToCharacterIndexes[glyphIndex] == m_glyphToCharacterIndexes[glyphIndex + 1])
275 currentAdvance += m_advances[++glyphIndex];
280 ++glyphIndex;
281 while (glyphIndex < m_numGlyphs) {
282 unsigned prevCharacterIndex = m_glyphToCharacterIndexes[glyphIndex - 1];
284 currentAdvance = m_advances[glyphIndex];
285 while (glyphIndex < m_numGlyphs - 1 && m_glyphToCharacterIndexes[glyphIndex] == m_glyphToCharacterIndexes[glyphIndex (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/win/
FontWin.cpp 75 unsigned glyphIndex = 0; // The starting glyph of the current chunk.
92 while (glyphIndex < numGlyphs) {
94 unsigned curLen = std::min(kMaxBufferLength, numGlyphs - glyphIndex);
96 const Glyph* glyphs = glyphBuffer.glyphs(from + glyphIndex);
104 for (unsigned i = 0; i < curLen; ++i, ++glyphIndex) {
107 currentWidth += glyphBuffer.advanceAt(from + glyphIndex);
125 while (glyphIndex < numGlyphs) {
127 unsigned curLen = std::min(kMaxBufferLength, numGlyphs - glyphIndex);
132 for (unsigned i = 0; i < curLen; ++i, ++glyphIndex) {
133 glyphs[i] = glyphBuffer.glyphAt(from + glyphIndex);
    [all...]
UniscribeHelper.cpp 487 size_t glyphIndex = shaping.m_logs[localOffset];
488 if (glyphIndex >= shaping.m_glyphs.size()) {
496 return shaping.m_glyphs[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 108 OpenType::UInt16 glyphIndex;
454 m_vertOriginY.set(metrics.glyphIndex, metrics.vertOriginY);
  /external/chromium_org/third_party/skia/src/ports/
SkFontHost_FreeType.cpp 487 FT_UInt glyphIndex;
488 for (SkUnichar charCode = FT_Get_First_Char(face, &glyphIndex);
489 glyphIndex != 0;
490 charCode = FT_Get_Next_Char(face, charCode, &glyphIndex)) {
492 ((*glyphToUnicode)[glyphIndex] == 0 || preferredMap)) {
493 (*glyphToUnicode)[glyphIndex] = charCode;
    [all...]
  /external/skia/src/ports/
SkFontHost_FreeType.cpp 489 FT_UInt glyphIndex;
490 for (SkUnichar charCode = FT_Get_First_Char(face, &glyphIndex);
491 glyphIndex != 0;
492 charCode = FT_Get_Next_Char(face, charCode, &glyphIndex)) {
494 ((*glyphToUnicode)[glyphIndex] == 0 || preferredMap)) {
495 (*glyphToUnicode)[glyphIndex] = charCode;
    [all...]

Completed in 113 milliseconds