HomeSort by relevance Sort by last modified time
    Searched refs:glyphIndex (Results 1 - 25 of 26) sorted by null

1 2

  /external/icu/icu4c/source/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 450 * @param glyphIndex - the index of the glyph
459 void getGlyphPosition(le_int32 glyphIndex, float &x, float &y, LEErrorCode &success) const;
  /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/harfbuzz/
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...]
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();
  /frameworks/av/cmds/screenrecord/
TextRenderer.h 114 size_t glyphIndex(char ch) const;
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/skia/src/ports/
SkFontHost_win.cpp     [all...]
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_win.cpp     [all...]
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...]
  /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/fonttools/Lib/fontTools/ttLib/tables/
E_B_L_C_.py 432 indexingOffsets = [glyphIndex * offsetDataSize for glyphIndex in range(numGlyphs+2)]
549 indexingOffsets = [glyphIndex * codeOffsetPairSize for glyphIndex in range(numGlyphs+2)]
  /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 106 OpenType::UInt16 glyphIndex;
452 m_vertOriginY.set(metrics.glyphIndex, metrics.vertOriginY);

Completed in 477 milliseconds

1 2