/external/icu4c/layout/ |
LEGlyphStorage.h | 208 * @param glyphIndex - the index of the glyph 217 void getGlyphPosition(le_int32 glyphIndex, float &x, float &y, LEErrorCode &success) const; 269 * @param glyphIndex the index into the glyph array 276 LEGlyphID getGlyphID(le_int32 glyphIndex, LEErrorCode &success) const; 281 * @param glyphIndex the index into the glyph array 288 le_int32 getCharIndex(le_int32 glyphIndex, LEErrorCode &success) const; 294 * @param glyphIndex the index into the glyph array 301 le_uint32 getAuxData(le_int32 glyphIndex, LEErrorCode &success) const; 307 * @param glyphIndex the index into the glyph array 313 inline LEGlyphID &operator[](le_int32 glyphIndex) const [all...] |
LEGlyphStorage.cpp | 254 LEGlyphID LEGlyphStorage::getGlyphID(le_int32 glyphIndex, LEErrorCode &success) const 265 if (glyphIndex < 0 || glyphIndex >= fGlyphCount) { 270 return fGlyphs[glyphIndex]; 273 void LEGlyphStorage::setGlyphID(le_int32 glyphIndex, LEGlyphID glyphID, LEErrorCode &success) 284 if (glyphIndex < 0 || glyphIndex >= fGlyphCount) { 289 fGlyphs[glyphIndex] = glyphID; 292 le_int32 LEGlyphStorage::getCharIndex(le_int32 glyphIndex, LEErrorCode &success) const 303 if (glyphIndex < 0 || glyphIndex >= fGlyphCount) [all...] |
loengine.cpp | 136 le_int32 glyphIndex, 148 le->getGlyphPosition(glyphIndex, *x, *y, *success);
|
loengine.h | 194 * @param glyphIndex - the index of the glyph 205 le_int32 glyphIndex,
|
LayoutEngine.h | 444 * @param glyphIndex - the index of the glyph 453 void getGlyphPosition(le_int32 glyphIndex, float &x, float &y, LEErrorCode &success) const;
|
LayoutEngine.cpp | 191 void LayoutEngine::getGlyphPosition(le_int32 glyphIndex, float &x, float &y, LEErrorCode &success) const 193 fGlyphStorage->getGlyphPosition(glyphIndex, x, y, success);
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/ |
text.h | 41 VGuint glyphIndex, 48 VGuint glyphIndex, 54 VGuint glyphIndex); 57 VGuint glyphIndex,
|
text.c | 49 VGuint glyphIndex) 54 cso_hash_take(font->glyphs, (unsigned) glyphIndex); 62 VGuint glyphIndex, 71 del_glyph(font, glyphIndex); 79 cso_hash_insert(font->glyphs, (unsigned) glyphIndex, glyph); 83 VGuint glyphIndex) 87 iter = cso_hash_find(font->glyphs, (unsigned) glyphIndex); 165 VGuint glyphIndex, 171 add_glyph(font, glyphIndex, (struct vg_object *) path, 176 VGuint glyphIndex, [all...] |
api_text.c | 68 VGuint glyphIndex, 97 font_set_glyph_to_path(f, glyphIndex, pathObj, 102 VGuint glyphIndex, 130 font_set_glyph_to_image(f, glyphIndex, img_obj, glyphOrigin, escapement); 134 VGuint glyphIndex) 146 font_clear_glyph(f, glyphIndex); 150 VGuint glyphIndex, 167 font_draw_glyph(f, glyphIndex, paintModes, allowAutoHinting);
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
text.h | 41 VGuint glyphIndex, 48 VGuint glyphIndex, 54 VGuint glyphIndex); 57 VGuint glyphIndex,
|
text.c | 49 VGuint glyphIndex) 54 cso_hash_take(font->glyphs, (unsigned) glyphIndex); 62 VGuint glyphIndex, 71 del_glyph(font, glyphIndex); 79 cso_hash_insert(font->glyphs, (unsigned) glyphIndex, glyph); 83 VGuint glyphIndex) 87 iter = cso_hash_find(font->glyphs, (unsigned) glyphIndex); 165 VGuint glyphIndex, 171 add_glyph(font, glyphIndex, (struct vg_object *) path, 176 VGuint glyphIndex, [all...] |
api_text.c | 68 VGuint glyphIndex, 97 font_set_glyph_to_path(f, glyphIndex, pathObj, 102 VGuint glyphIndex, 130 font_set_glyph_to_image(f, glyphIndex, img_obj, glyphOrigin, escapement); 134 VGuint glyphIndex) 146 font_clear_glyph(f, glyphIndex); 150 VGuint glyphIndex, 167 font_draw_glyph(f, glyphIndex, paintModes, allowAutoHinting);
|
/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/WebKit/Source/platform/fonts/harfbuzz/ |
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...] |
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);
|
/external/chromium_org/third_party/skia/src/ports/ |
SkFontHost_win.cpp | [all...] |
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_win.cpp | [all...] |
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...] |
/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/mesa/src/include/VG/ |
openvg.h | 676 VGuint glyphIndex, 682 VGuint glyphIndex, 686 VG_API_CALL void VG_API_ENTRY vgClearGlyph(VGFont font,VGuint glyphIndex) VG_API_EXIT; 688 VGuint glyphIndex, [all...] |
/external/mesa3d/include/VG/ |
openvg.h | 676 VGuint glyphIndex, 682 VGuint glyphIndex, 686 VG_API_CALL void VG_API_ENTRY vgClearGlyph(VGFont font,VGuint glyphIndex) VG_API_EXIT; 688 VGuint glyphIndex, [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/ |
OpenTypeVerticalData.cpp | 108 OpenType::UInt16 glyphIndex; 454 m_vertOriginY.set(metrics.glyphIndex, metrics.vertOriginY);
|