/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/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/hiero/unicodefont/ |
D | UnicodeFont.java | 321 for (int glyphIndex = 0, n = vector.getNumGlyphs(); glyphIndex < n; glyphIndex++) { in drawUnicode() 322 int charIndex = vector.getGlyphCharIndex(glyphIndex); in drawUnicode() 328 Rectangle bounds = getGlyphBounds(vector, glyphIndex, codePoint); in drawUnicode() 330 Glyph glyph = getGlyph(vector.getGlyphCode(glyphIndex), codePoint, bounds, vector, glyphIndex); in drawUnicode() 362 if (glyphIndex > 0) extraX += paddingRight + paddingLeft + paddingAdvanceX; in drawUnicode() 395 int glyphIndex = glyphCode & (PAGE_SIZE - 1); in getGlyph() 399 glyph = page[glyphIndex]; in getGlyph() 404 glyph = page[glyphIndex] = new Glyph(codePoint, bounds, vector, index, this); in getGlyph() 436 for (int glyphIndex = 0, n = vector.getNumGlyphs(); glyphIndex < n; glyphIndex++) { 437 int charIndex = vector.getGlyphCharIndex(glyphIndex); [all …]
|
/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/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/ |
D | BitmapFontCache.java | 202 int glyphIndex = glyphIndices.items[j]; in setColors() local 205 if (glyphIndex >= end) break; in setColors() 208 if (glyphIndex >= start) { // && glyphIndex < end in setColors() 256 int glyphIndex = glyphIndices.get(ii); in draw() local 259 if (glyphIndex >= end) break; in draw() 262 if (offset == -1 && glyphIndex >= start) offset = ii; in draw() 265 if (glyphIndex >= start) // && gInd < end in draw()
|
/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/libgdx/extensions/gdx-freetype/src/com/badlogic/gdx/graphics/g2d/freetype/ |
D | FreeType.java | 238 public boolean loadGlyph(int glyphIndex, int loadFlags) { in loadGlyph() argument 239 return loadGlyph(address, glyphIndex, loadFlags); in loadGlyph() 242 private static native boolean loadGlyph(long face, int glyphIndex, int loadFlags); /* in loadGlyph() argument
|
D | FreeTypeFontGenerator.java | 662 int glyphIndex = face.getCharIndex(ch); in getGlyph() local 667 int kerning = face.getKerning(glyphIndex, otherIndex, 0); in getGlyph() 670 kerning = face.getKerning(otherIndex, glyphIndex, 0); in getGlyph()
|
/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/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/skia/src/sfnt/ |
D | SkOTTable_glyf.h | 155 SK_OT_USHORT glyphIndex; member
|
/external/libgdx/extensions/gdx-freetype/jni/ |
D | com.badlogic.gdx.graphics.g2d.freetype.FreeType.cpp | 192 …eeType_00024Face_loadGlyph(JNIEnv* env, jclass clazz, jlong face, jint glyphIndex, jint loadFlags)… in Java_com_badlogic_gdx_graphics_g2d_freetype_FreeType_00024Face_loadGlyph() argument 197 return !FT_Load_Glyph((FT_Face)face, glyphIndex, loadFlags); in Java_com_badlogic_gdx_graphics_g2d_freetype_FreeType_00024Face_loadGlyph()
|