/external/icu/icu4c/source/layout/ |
D | LEGlyphStorage.cpp | 254 LEGlyphID LEGlyphStorage::getGlyphID(le_int32 glyphIndex, LEErrorCode &success) const in getGlyphID() argument 265 if (glyphIndex < 0 || glyphIndex >= fGlyphCount) { in getGlyphID() 270 return fGlyphs[glyphIndex]; in getGlyphID() 273 void LEGlyphStorage::setGlyphID(le_int32 glyphIndex, LEGlyphID glyphID, LEErrorCode &success) in setGlyphID() argument 284 if (glyphIndex < 0 || glyphIndex >= fGlyphCount) { in setGlyphID() 289 fGlyphs[glyphIndex] = glyphID; in setGlyphID() 292 le_int32 LEGlyphStorage::getCharIndex(le_int32 glyphIndex, LEErrorCode &success) const in getCharIndex() argument 303 if (glyphIndex < 0 || glyphIndex >= fGlyphCount) { in getCharIndex() 308 return fCharIndices[glyphIndex]; in getCharIndex() 311 void LEGlyphStorage::setCharIndex(le_int32 glyphIndex, le_int32 charIndex, LEErrorCode &success) in setCharIndex() argument [all …]
|
D | LEGlyphStorage.h | 217 void getGlyphPosition(le_int32 glyphIndex, float &x, float &y, LEErrorCode &success) const; 276 LEGlyphID getGlyphID(le_int32 glyphIndex, LEErrorCode &success) const; 288 le_int32 getCharIndex(le_int32 glyphIndex, LEErrorCode &success) const; 301 le_uint32 getAuxData(le_int32 glyphIndex, LEErrorCode &success) const; 313 inline LEGlyphID &operator[](le_int32 glyphIndex) const; 392 void setGlyphID(le_int32 glyphIndex, LEGlyphID glyphID, LEErrorCode &success); 403 void setCharIndex(le_int32 glyphIndex, le_int32 charIndex, LEErrorCode &success); 415 void setPosition(le_int32 glyphIndex, float x, float y, LEErrorCode &success); 427 void adjustPosition(le_int32 glyphIndex, float xAdjust, float yAdjust, LEErrorCode &success); 438 void setAuxData(le_int32 glyphIndex, le_uint32 auxData, LEErrorCode &success); [all …]
|
D | loengine.cpp | 136 le_int32 glyphIndex, in le_getGlyphPosition() argument 148 le->getGlyphPosition(glyphIndex, *x, *y, *success); in le_getGlyphPosition()
|
D | loengine.h | 205 le_int32 glyphIndex,
|
D | LayoutEngine.h | 466 void getGlyphPosition(le_int32 glyphIndex, float &x, float &y, LEErrorCode &success) const;
|
D | LayoutEngine.cpp | 193 void LayoutEngine::getGlyphPosition(le_int32 glyphIndex, float &x, float &y, LEErrorCode &success) … in getGlyphPosition() argument 195 fGlyphStorage->getGlyphPosition(glyphIndex, x, y, success); in getGlyphPosition()
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
D | text.c | 49 VGuint glyphIndex) in del_glyph() argument 54 cso_hash_take(font->glyphs, (unsigned) glyphIndex); in del_glyph() 62 VGuint glyphIndex, in add_glyph() argument 71 del_glyph(font, glyphIndex); in add_glyph() 79 cso_hash_insert(font->glyphs, (unsigned) glyphIndex, glyph); in add_glyph() 83 VGuint glyphIndex) in get_glyph() argument 87 iter = cso_hash_find(font->glyphs, (unsigned) glyphIndex); in get_glyph() 165 VGuint glyphIndex, in font_set_glyph_to_path() argument 171 add_glyph(font, glyphIndex, (struct vg_object *) path, in font_set_glyph_to_path() 176 VGuint glyphIndex, in font_set_glyph_to_image() argument [all …]
|
D | api_text.c | 68 VGuint glyphIndex, in vegaSetGlyphToPath() argument 97 font_set_glyph_to_path(f, glyphIndex, pathObj, in vegaSetGlyphToPath() 102 VGuint glyphIndex, in vegaSetGlyphToImage() argument 130 font_set_glyph_to_image(f, glyphIndex, img_obj, glyphOrigin, escapement); in vegaSetGlyphToImage() 134 VGuint glyphIndex) in vegaClearGlyph() argument 146 font_clear_glyph(f, glyphIndex); in vegaClearGlyph() 150 VGuint glyphIndex, in vegaDrawGlyph() argument 167 font_draw_glyph(f, glyphIndex, paintModes, allowAutoHinting); in vegaDrawGlyph()
|
D | text.h | 41 VGuint glyphIndex, 48 VGuint glyphIndex, 54 VGuint glyphIndex); 57 VGuint glyphIndex,
|
/external/skia/src/ports/ |
D | SkFontHost_win.cpp | 2092 int glyphIndex = 0; in onCharsToGlyphs() local 2098 while (glyphIndex < glyphCount) { in onCharsToGlyphs() 2100 int glyphsLeft = SkTMin(glyphCount - glyphIndex, scratchCount); in onCharsToGlyphs() 2110 bmpCharsToGlyphs(hdc, scratch, runLength, &glyphs[glyphIndex], Ox1FHack); in onCharsToGlyphs() 2111 glyphIndex += runLength; in onCharsToGlyphs() 2115 while (glyphIndex < glyphCount && currentChar > 0xFFFF) { in onCharsToGlyphs() 2117 glyphs[glyphIndex] = nonBmpCharToGlyph(hdc, &sc, scratch); in onCharsToGlyphs() 2118 ++glyphIndex; in onCharsToGlyphs() 2119 if (glyphIndex < glyphCount) { in onCharsToGlyphs() 2127 int glyphIndex = 0; in onCharsToGlyphs() local [all …]
|
D | SkFontHost_FreeType.cpp | 450 FT_UInt glyphIndex; in populate_glyph_to_unicode() local 451 SkUnichar charCode = FT_Get_First_Char(face, &glyphIndex); in populate_glyph_to_unicode() 452 while (glyphIndex) { in populate_glyph_to_unicode() 453 (*glyphToUnicode)[glyphIndex] = charCode; in populate_glyph_to_unicode() 454 charCode = FT_Get_Next_Char(face, charCode, &glyphIndex); in populate_glyph_to_unicode() 995 FT_UInt glyphIndex; in generateGlyphToChar() local 996 SkUnichar charCode = FT_Get_First_Char( fFace, &glyphIndex ); in generateGlyphToChar() 998 while (glyphIndex != 0) { in generateGlyphToChar() 999 if (glyphIndex == glyph) { in generateGlyphToChar() 1002 charCode = FT_Get_Next_Char( fFace, charCode, &glyphIndex ); in generateGlyphToChar()
|
/external/mesa3d/src/mapi/vgapi/ |
D | vgapi.csv | 82 void, ClearGlyph, VGFont font, VGuint glyphIndex 88 void, DrawGlyph, VGFont font, VGuint glyphIndex, VGbitfield paint… 92 void, SetGlyphToImage, VGFont font, VGuint glyphIndex, VGImage image, c… 93 void, SetGlyphToPath, VGFont font, VGuint glyphIndex, VGPath path, VGb…
|
/external/mesa3d/include/VG/ |
D | 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,
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | 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/skia/src/sfnt/ |
D | SkOTTable_glyf.h | 155 SK_OT_USHORT glyphIndex; member
|