Home
last modified time | relevance | path

Searched refs:glyph2 (Results 1 – 13 of 13) sorted by relevance

/external/fonttools/Tests/ufoLib/
DglifLib_test.py155 glyph2 = _Glyph()
156 readGlyphFromString(s1, glyph2)
157 self.assertEqual(glyph.__dict__, glyph2.__dict__)
159 s2 = writeGlyphToString(glyph2.name, glyph2)
/external/noto-fonts/scripts/
Dcolor_emoji_image_diff.py160 glyph2 = codepoint_map_2[key] if key in codepoint_map_2 else None
163 image2 = font2_cbdt[glyph2] if glyph2 and glyph2 in font2_cbdt else None
/external/freetype/src/pfr/
Dpfrobjs.c473 FT_UInt glyph2, in pfr_face_get_kerning() argument
488 if ( glyph2 > 0 ) in pfr_face_get_kerning()
489 glyph2--; in pfr_face_get_kerning()
493 glyph2 > phy_font->num_chars ) in pfr_face_get_kerning()
497 code2 = phy_font->chars[glyph2].char_code; in pfr_face_get_kerning()
Dpfrobjs.h73 FT_UInt glyph2,
Dpfrtypes.h197 PFR_KERN_INDEX( (pair)->glyph1, (pair)->glyph2 )
/external/freetype/src/type1/
Dt1afm.h40 FT_UInt glyph2,
Dt1afm.c332 FT_UInt glyph2, 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])
271 if not glyph2 in values[glyph1]: values[glyph1][glyph2] = (ValueRecord(),ValueRecord())
272 rec2 = values[glyph1][glyph2]
287 for glyph2 in sorted(values1.keys(), key=font.getGlyphID):
288 values2 = values1[glyph2]
290 pair.SecondGlyph = glyph2
/external/fonttools/Lib/fontTools/otlLib/
Dbuilder.py383 for glyph2, val1, val2 in \
386 pvr.SecondGlyph = glyph2
/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):
954 glyph2, self.valuerecord2)
/external/fonttools/Lib/fontTools/
Dmerge.py372 def _glyphsAreSame(glyphSet1, glyphSet2, glyph1, glyph2): argument
376 g2 = glyphSet2[glyph2]
/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()