/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/pdfium/fpdfsdk/ |
D | fpdfedittext.cpp | 72 uint32_t glyphIndex; in FPDFText_LoadType1Font() local 73 int currentChar = FXFT_Get_First_Char(pFont->GetFace(), &glyphIndex); in FPDFText_LoadType1Font() 78 int width = pFont->GetGlyphWidth(glyphIndex); in FPDFText_LoadType1Font() 80 nextChar = FXFT_Get_Next_Char(pFont->GetFace(), currentChar, &glyphIndex); in FPDFText_LoadType1Font() 81 if (glyphIndex == 0) in FPDFText_LoadType1Font()
|
/external/skia/src/ports/ |
D | SkFontHost_win.cpp | 2070 int glyphIndex = 0; in onCharsToGlyphs() local 2076 while (glyphIndex < glyphCount) { in onCharsToGlyphs() 2078 int glyphsLeft = SkTMin(glyphCount - glyphIndex, scratchCount); in onCharsToGlyphs() 2088 bmpCharsToGlyphs(hdc, scratch, runLength, &glyphs[glyphIndex], Ox1FHack); in onCharsToGlyphs() 2089 glyphIndex += runLength; in onCharsToGlyphs() 2093 while (glyphIndex < glyphCount && currentChar > 0xFFFF) { in onCharsToGlyphs() 2095 glyphs[glyphIndex] = nonBmpCharToGlyph(hdc, &sc, scratch); in onCharsToGlyphs() 2096 ++glyphIndex; in onCharsToGlyphs() 2097 if (glyphIndex < glyphCount) { in onCharsToGlyphs() 2105 int glyphIndex = 0; in onCharsToGlyphs() local [all …]
|
D | SkFontHost_FreeType.cpp | 531 FT_UInt glyphIndex; in populate_glyph_to_unicode() local 532 SkUnichar charCode = FT_Get_First_Char(face, &glyphIndex); in populate_glyph_to_unicode() 533 while (glyphIndex) { in populate_glyph_to_unicode() 534 SkASSERT(glyphIndex < SkToUInt(numGlyphs)); in populate_glyph_to_unicode() 536 if (0 == (*glyphToUnicode)[glyphIndex]) { in populate_glyph_to_unicode() 537 (*glyphToUnicode)[glyphIndex] = charCode; in populate_glyph_to_unicode() 539 charCode = FT_Get_Next_Char(face, charCode, &glyphIndex); in populate_glyph_to_unicode() 1020 FT_UInt glyphIndex; in generateGlyphToChar() local 1021 SkUnichar charCode = FT_Get_First_Char( fFace, &glyphIndex ); in generateGlyphToChar() 1023 while (glyphIndex != 0) { in generateGlyphToChar() [all …]
|
/external/skia/gm/ |
D | texteffects.cpp | 338 int glyphIndex = 0; in MakeFancyBlob() local 350 advance += widths[glyphIndex++]; in MakeFancyBlob() 360 memcpy(buf.glyphs, glyphs.get() + glyphIndex, in MakeFancyBlob() 364 advance += widths[glyphIndex++]; in MakeFancyBlob() 370 const int fullRunLen = glyphCount - glyphIndex; in MakeFancyBlob() 372 memcpy(buf.glyphs, glyphs.get() + glyphIndex, in MakeFancyBlob() 377 advance += widths[glyphIndex++]; in MakeFancyBlob()
|
/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/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 | 154 SK_OT_USHORT glyphIndex; member
|
/external/skia/src/pdf/ |
D | SkPDFDevice.cpp | 1124 uint32_t glyphIndex = fGlyphIndex; in next() local 1130 glyphIndex, in next()
|