Searched defs:glyph (Results 1 - 25 of 176) sorted by relevance

12345678

/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/pfr/
H A Dpfrgload.h5 /* FreeType PFR glyph loader (specification). */
28 pfr_glyph_init( PFR_Glyph glyph,
32 pfr_glyph_done( PFR_Glyph glyph ); variable
36 pfr_glyph_load( PFR_Glyph glyph,
/external/icu/icu4c/source/layout/
H A DSinglePositioningSubtables.cpp46 LEGlyphID glyph = glyphIterator->getCurrGlyphID(); local
47 le_int32 coverageIndex = getGlyphCoverage(base, glyph, success);
60 LEGlyphID glyph = glyphIterator->getCurrGlyphID(); local
61 le_int16 coverageIndex = (le_int16) getGlyphCoverage(base, glyph, success);
H A DAlternateSubstSubtables.cpp21 LEGlyphID glyph = glyphIterator->getCurrGlyphID(); local
22 le_int32 coverageIndex = getGlyphCoverage(base, glyph, success);
33 if (filter == NULL || filter->accept(LE_SET_GLYPH(glyph, alternate))) {
H A DSimpleArrayProcessor2.cpp41 le_int32 glyph; local
43 for (glyph = 0; glyph < glyphCount; glyph += 1) {
44 LEGlyphID thisGlyph = glyphStorage[glyph];
48 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
H A DSingleSubstitutionSubtables.cpp45 LEGlyphID glyph = glyphIterator->getCurrGlyphID(); local
46 le_int32 coverageIndex = getGlyphCoverage(base, glyph, success);
49 TTGlyphID substitute = ((TTGlyphID) LE_GET_GLYPH(glyph)) + SWAPW(deltaGlyphID);
51 if (filter == NULL || filter->accept(LE_SET_GLYPH(glyph, substitute))) {
63 LEGlyphID glyph = glyphIterator->getCurrGlyphID(); local
64 le_int32 coverageIndex = getGlyphCoverage(base, glyph, success);
69 if (filter == NULL || filter->accept(LE_SET_GLYPH(glyph, substitute))) {
H A DLookupTables.cpp27 const LookupSegment *BinarySearchLookupTable::lookupSegment(const LETableReference &base, const LookupSegment *segments, LEGlyphID glyph, LEErrorCode &success) const argument
33 TTGlyphID ttGlyph = (TTGlyphID) LE_GET_GLYPH(glyph);
60 const LookupSingle *BinarySearchLookupTable::lookupSingle(const LETableReference &base, const LookupSingle *entries, LEGlyphID glyph, LEErrorCode &success) const argument
65 TTGlyphID ttGlyph = (TTGlyphID) LE_GET_GLYPH(glyph);
69 if (SWAPW(trial->glyph) <= ttGlyph) {
78 if (SWAPW(trial->glyph) <= ttGlyph) {
83 if (SWAPW(entry->glyph) == ttGlyph) {
H A DMultipleSubstSubtables.cpp23 LEGlyphID glyph = glyphIterator->getCurrGlyphID(); local
32 if (filter != NULL && filter->accept(glyph)) {
36 le_int32 coverageIndex = getGlyphCoverage(base, glyph, success);
55 if (filter != NULL && ! filter->accept(LE_SET_GLYPH(glyph, substitute))) {
89 newGlyphs[insert] = LE_SET_GLYPH(glyph, substitute);
H A DSegmentArrayProcessor.cpp39 le_int32 glyph; local
41 for (glyph = 0; glyph < glyphCount; glyph += 1) {
42 LEGlyphID thisGlyph = glyphStorage[glyph];
52 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
H A DSegmentArrayProcessor2.cpp39 le_int32 glyph; local
41 for (glyph = 0; glyph < glyphCount; glyph += 1) {
42 LEGlyphID thisGlyph = glyphStorage[glyph];
53 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
H A DSegmentSingleProcessor.cpp39 le_int32 glyph; local
41 for (glyph = 0; glyph < glyphCount && LE_SUCCESS(success); glyph += 1) {
42 LEGlyphID thisGlyph = glyphStorage[glyph];
48 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
H A DSegmentSingleProcessor2.cpp40 le_int32 glyph; local
42 for (glyph = 0; glyph < glyphCount; glyph += 1) {
43 LEGlyphID thisGlyph = glyphStorage[glyph];
49 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
H A DSimpleArrayProcessor.cpp38 le_int32 glyph; local
42 for (glyph = 0; LE_SUCCESS(success) && (glyph < glyphCount); glyph += 1) {
43 LEGlyphID thisGlyph = glyphStorage[glyph];
46 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
H A DSingleTableProcessor.cpp38 le_int32 glyph; local
41 for (glyph = 0; glyph < glyphCount; glyph += 1) {
42 const LookupSingle *lookupSingle = singleTableLookupTable->lookupSingle(singleTableLookupTable, entries, glyphStorage[glyph], success);
45 glyphStorage[glyph] = SWAPW(lookupSingle->value);
H A DSingleTableProcessor2.cpp40 le_int32 glyph; local
43 for (glyph = 0; glyph < glyphCount; glyph += 1) {
44 const LookupSingle *lookupSingle = singleTableLookupTable->lookupSingle(singleTableLookupTable, entries, glyphStorage[glyph], success);
47 glyphStorage[glyph] = SWAPW(lookupSingle->value);
H A DTrimmedArrayProcessor.cpp47 le_int32 glyph; local
49 for (glyph = 0; glyph < glyphCount; glyph += 1) {
50 LEGlyphID thisGlyph = glyphStorage[glyph];
56 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
H A DTrimmedArrayProcessor2.cpp43 le_int32 glyph; local
45 for (glyph = 0; glyph < glyphCount; glyph += 1) {
46 LEGlyphID thisGlyph = glyphStorage[glyph];
52 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
H A DLigatureSubstSubtables.cpp18 LEGlyphID glyph = glyphIterator->getCurrGlyphID(); local
19 le_int32 coverageIndex = getGlyphCoverage(base, glyph, success);
47 if (comp == compCount && (filter == NULL || filter->accept(LE_SET_GLYPH(glyph, ligGlyph)))) {
/external/skia/src/core/
H A DSkAutoKern.h27 SkFixed adjust(const SkGlyph& glyph) argument
29 // if (SkAbs32(glyph.fLsbDelta) > 47 || SkAbs32(glyph.fRsbDelta) > 47)
30 // printf("------- %d> L %d R %d\n", glyph.f_GlyphID, glyph.fLsbDelta, glyph.fRsbDelta);
33 int distort = fPrevRsbDelta - glyph.fLsbDelta;
35 fPrevRsbDelta = glyph.fRsbDelta;
44 SkFixed adjust = SkAutoKern_AdjustF(fPrevRsbDelta, glyph.fLsbDelta);
45 fPrevRsbDelta = glyph
[all...]
H A DSkDrawProcs.h48 // Returns the glyph position, which may be rounded or not by the caller
50 void operator()(const SkPoint& loc, const SkGlyph& glyph, SkPoint* dst) { argument
54 dst->set(loc.fX - SkFixedToScalar(glyph.fAdvanceX >> 1),
55 loc.fY - SkFixedToScalar(glyph.fAdvanceY >> 1));
58 dst->set(loc.fX - SkFixedToScalar(glyph.fAdvanceX),
59 loc.fY - SkFixedToScalar(glyph.fAdvanceY));
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/bdf/
H A Dbdfdrivr.h47 FT_UShort glyph; member in struct:BDF_encoding_el_
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/gxvalid/
H A Dgxvmort4.c43 gxv_mort_subtable_type4_lookupval_validate( FT_UShort glyph, argument
47 FT_UNUSED( glyph );
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/hiero/unicodefont/effects/
H A DEffect.java29 public void draw (BufferedImage image, Graphics2D g, UnicodeFont unicodeFont, Glyph glyph); argument
H A DFilterEffect.java38 public void draw (BufferedImage image, Graphics2D g, UnicodeFont unicodeFont, Glyph glyph) { argument
/external/sfntly/cpp/src/sfntly/table/bitmap/
H A Dsimple_bitmap_glyph.cc41 Ptr<SimpleBitmapGlyph> glyph = new SimpleBitmapGlyph(data, format()); local
42 return glyph.Detach();
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/cache/
H A Dftcimage.c29 /* finalize a given glyph image node */
38 if ( inode->glyph )
40 FT_Done_Glyph( inode->glyph );
41 inode->glyph = NULL;
57 /* initialize a new glyph image node */
79 /* we will now load the glyph image */
81 &inode->glyph );
113 FT_Glyph glyph = inode->glyph; local
118 switch ( glyph
[all...]

Completed in 309 milliseconds

12345678