Home
last modified time | relevance | path

Searched refs:glyph1 (Results 1 – 11 of 11) sorted by relevance

/external/noto-fonts/scripts/
Dcolor_emoji_image_diff.py159 glyph1 = codepoint_map_1[key] if key in codepoint_map_1 else None
162 image1 = font1_cbdt[glyph1] if glyph1 and glyph1 in font1_cbdt else None
/external/freetype/src/pfr/
Dpfrobjs.c472 FT_UInt glyph1, in pfr_face_get_kerning() argument
485 if ( glyph1 > 0 ) in pfr_face_get_kerning()
486 glyph1--; in pfr_face_get_kerning()
492 if ( glyph1 > phy_font->num_chars || in pfr_face_get_kerning()
496 code1 = phy_font->chars[glyph1].char_code; in pfr_face_get_kerning()
Dpfrobjs.h72 FT_UInt glyph1,
Dpfrtypes.h197 PFR_KERN_INDEX( (pair)->glyph1, (pair)->glyph2 )
/external/freetype/src/type1/
Dt1afm.h39 FT_UInt glyph1,
Dt1afm.c331 FT_UInt glyph1, in T1_Get_Kerning() argument
336 FT_ULong idx = KERN_INDEX( glyph1, glyph2 ); in T1_Get_Kerning()
/external/fonttools/Lib/fontTools/mtiLib/
D__init__.py268 glyph1, glyph2 = makeGlyphs(line[1:3])
270 if not glyph1 in values: values[glyph1] = {}
271 if not glyph2 in values[glyph1]: values[glyph1][glyph2] = (ValueRecord(),ValueRecord())
272 rec2 = values[glyph1][glyph2]
283 for glyph1 in self.Coverage.glyphs:
284 values1 = values[glyph1]
/external/fonttools/Lib/fontTools/feaLib/
Dbuilder.py992 def add_specific_pair_pos(self, location, glyph1, value1, glyph2, value2): argument
994 lookup.addGlyphPair(location, glyph1, value1, glyph2, value2)
1563 def addGlyphPair(self, location, glyph1, value1, glyph2, value2): argument
1564 key = (glyph1, glyph2)
1573 glyph1, glyph2, otherLoc[0], otherLoc[1], otherLoc[2])
Dast.py951 for glyph1, glyph2 in itertools.product(*g):
953 self.location, glyph1, self.valuerecord1,
/external/fonttools/Lib/fontTools/
Dmerge.py372 def _glyphsAreSame(glyphSet1, glyphSet2, glyph1, glyph2): argument
375 g1 = glyphSet1[glyph1]
/external/u-boot/drivers/video/
Dstb_truetype.h707 STBTT_DEF int stbtt_GetGlyphKernAdvance(const stbtt_fontinfo *info, int glyph1, int glyph2);
1483 STBTT_DEF int stbtt_GetGlyphKernAdvance(const stbtt_fontinfo *info, int glyph1, int glyph2) in stbtt_GetGlyphKernAdvance() argument
1499 needle = glyph1 << 16 | glyph2; in stbtt_GetGlyphKernAdvance()