Home
last modified time | relevance | path

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

/external/fonttools/Tests/cu2qu/
Dufo_test.py203 glyph2 = font2.newGlyph("a")
204 pen2 = glyph2.getPen()
259 glyph2 = ufoLib2.objects.Glyph()
260 pen = glyph2.getPointPen()
268 glyphs = [glyph1, 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/fonttools/Tests/ufoLib/
DglifLib_test.py190 glyph2 = _Glyph()
191 readGlyphFromString(s1, glyph2)
192 assert glyph.__dict__ == glyph2.__dict__
194 s2 = writeGlyphToString(glyph2.name, glyph2)
/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.h196 PFR_KERN_INDEX( (pair)->glyph1, (pair)->glyph2 )
/external/freetype/src/type1/
Dt1afm.h39 FT_UInt glyph2,
Dt1afm.c331 FT_UInt glyph2, in T1_Get_Kerning() argument
335 FT_ULong idx = KERN_INDEX( glyph1, glyph2 ); in T1_Get_Kerning()
/external/fonttools/Lib/fontTools/mtiLib/
D__init__.py265 glyph1, glyph2 = makeGlyphs(line[1:3])
268 if not glyph2 in values[glyph1]: values[glyph1][glyph2] = (ValueRecord(),ValueRecord())
269 rec2 = values[glyph1][glyph2]
284 for glyph2 in sorted(values1.keys(), key=font.getGlyphID):
285 values2 = values1[glyph2]
287 pair.SecondGlyph = glyph2
/external/fonttools/Tests/fontBuilder/
DfontBuilder_test.py175 glyph2 = pen.glyph()
180 glyphs = {".notdef": emptyGlyph, "A": glyph1, "a": glyph2, ".null": emptyGlyph}
/external/fonttools/Lib/fontTools/otlLib/
Dbuilder.py1302 def addGlyphPair(self, location, glyph1, value1, glyph2, value2): argument
1313 key = (glyph1, glyph2)
1323 glyph2,
2191 for glyph2, val1, val2 in sorted(p[glyph], key=lambda x: glyphMap[x[0]]):
2193 pvr.SecondGlyph = glyph2
/external/fonttools/Lib/fontTools/
Dmerge.py374 def _glyphsAreSame(glyphSet1, glyphSet2, glyph1, glyph2): argument
378 g2 = glyphSet2[glyph2]
/external/mesa3d/src/imgui/
Dimstb_truetype.h801 STBTT_DEF int stbtt_GetGlyphKernAdvance(const stbtt_fontinfo *info, int glyph1, int glyph2);
2285 static int stbtt__GetGlyphKernInfoAdvance(const stbtt_fontinfo *info, int glyph1, int glyph2) in stbtt__GetGlyphKernInfoAdvance() argument
2301 needle = glyph1 << 16 | glyph2; in stbtt__GetGlyphKernInfoAdvance()
2428 …tic stbtt_int32 stbtt__GetGlyphGPOSInfoAdvance(const stbtt_fontinfo *info, int glyph1, int glyph2) in stbtt__GetGlyphGPOSInfoAdvance() argument
2486 needle=glyph2; in stbtt__GetGlyphGPOSInfoAdvance()
2516 int glyph2class = stbtt__GetGlyphClass(table + classDef2Offset, glyph2); in stbtt__GetGlyphGPOSInfoAdvance()
/external/fonttools/Lib/fontTools/feaLib/
Dbuilder.py1361 def add_specific_pair_pos(self, location, glyph1, value1, glyph2, value2): argument
1365 lookup.addGlyphPair(location, glyph1, v1, glyph2, v2)
Dast.py1317 for glyph1, glyph2 in itertools.product(*g):
1319 self.location, glyph1, self.valuerecord1, glyph2, self.valuerecord2