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

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/harfbuzz/
HarfBuzzShaper.cpp 105 unsigned glyphIndex = 0;
108 while (glyphIndex < m_numGlyphs - 1 && m_glyphToCharacterIndexes[glyphIndex] == m_glyphToCharacterIndexes[glyphIndex + 1])
109 currentAdvance += m_advances[++glyphIndex];
114 ++glyphIndex;
115 while (glyphIndex < m_numGlyphs) {
116 unsigned prevCharacterIndex = m_glyphToCharacterIndexes[glyphIndex - 1];
118 currentAdvance = m_advances[glyphIndex];
119 while (glyphIndex < m_numGlyphs - 1 && m_glyphToCharacterIndexes[glyphIndex] == m_glyphToCharacterIndexes[glyphIndex (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
FontChromiumWin.cpp 78 int glyphIndex = 0; // The starting glyph of the current chunk.
95 while (glyphIndex < numGlyphs) {
97 int curLen = std::min(kMaxBufferLength, numGlyphs - glyphIndex);
99 const Glyph* glyphs = glyphBuffer.glyphs(from + glyphIndex);
107 for (int i = 0; i < curLen; ++i, ++glyphIndex) {
110 currentWidth += glyphBuffer.advanceAt(from + glyphIndex);
128 while (glyphIndex < numGlyphs) {
130 int curLen = std::min(kMaxBufferLength, numGlyphs - glyphIndex);
135 for (int i = 0; i < curLen; ++i, ++glyphIndex) {
136 glyphs[i] = glyphBuffer.glyphAt(from + glyphIndex);
    [all...]
UniscribeHelper.cpp 467 size_t glyphIndex = shaping.m_logs[localOffset];
468 if (glyphIndex >= shaping.m_glyphs.size()) {
476 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/skia/src/ports/
SkFontHost_FreeType.cpp 471 FT_UInt glyphIndex;
472 for (SkUnichar charCode = FT_Get_First_Char(face, &glyphIndex);
473 glyphIndex != 0;
474 charCode = FT_Get_Next_Char(face, charCode, &glyphIndex)) {
476 ((*glyphToUnicode)[glyphIndex] == 0 || preferredMap)) {
477 (*glyphToUnicode)[glyphIndex] = charCode;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/opentype/
OpenTypeVerticalData.cpp 108 OpenType::UInt16 glyphIndex;
454 m_vertOriginY.set(metrics.glyphIndex, metrics.vertOriginY);
  /external/skia/src/ports/
SkFontHost_FreeType.cpp 474 FT_UInt glyphIndex;
475 for (SkUnichar charCode = FT_Get_First_Char(face, &glyphIndex);
476 glyphIndex != 0;
477 charCode = FT_Get_Next_Char(face, charCode, &glyphIndex)) {
479 ((*glyphToUnicode)[glyphIndex] == 0 || preferredMap)) {
480 (*glyphToUnicode)[glyphIndex] = charCode;
    [all...]

Completed in 182 milliseconds