/external/harfbuzz_ng/test/shaping/ |
run-tests.py | 64 fontfile, options, unicodes, glyphs_expected = line.split (":") 65 if fontfile.startswith ('/') or fontfile.startswith ('"/'): 66 fontfile, expected_hash = fontfile.split('@') 69 with open (fontfile, 'rb') as ff: 73 (fontfile, expected_hash, actual_hash)) 77 print ('%s not found, skip.' % fontfile) 82 fontfile = os.path.normpath (os.path.join (cwd, fontfile)) variable 101 fontfile = new_fontfile variable [all...] |
record-test.sh | 13 fontfile=$1 14 if test "x${fontfile:0:1}" == 'x-'; then 45 glyphs=`echo "$text" | $hb_shape $options "$fontfile"` 50 glyph_ids=`echo "$text" | $hb_shape $options --no-glyph-names --no-clusters --no-positions "$fontfile" | sed 's/[][]//g; s/|/,/g'` 52 cp "$fontfile" "$dir/font.ttf"
|
/external/fonttools/Snippets/ |
cmap-format.py | 20 print("usage: cmap-format.py fontfile.ttf outfile.ttf") 22 fontfile = sys.argv[1] variable 24 font = TTFont(fontfile)
|
layout-features.py | 10 print("usage: layout-features.py fontfile.ttf") 12 fontfile = sys.argv[1] variable 13 if fontfile.rsplit(".", 1)[-1] == "ttx": 15 font.importXML(fontfile) 17 font = TTFont(fontfile)
|
subset-fpgm.py | 9 print("usage: subset-fpgm.py fontfile.ttf func-number...") 11 fontfile = sys.argv[1] variable 14 font = TTFont(fontfile)
|
/external/fonttools/Lib/fontTools/cffLib/ |
width.py | 156 for fontfile in sys.argv[1:]: 157 font = TTFont(fontfile)
|
/external/fonttools/Lib/fontTools/ |
merge.py | 963 fonts = [ttLib.TTFont(fontfile) for fontfile in fontfiles] 969 fonts = [ttLib.TTFont(fontfile) for fontfile in fontfiles]
|
/external/fonttools/Lib/fontTools/varLib/ |
varStore.py | 542 parser.add_argument('fontfile') 549 fontfile = options.fontfile 552 font = TTFont(fontfile)
|
/external/fonttools/Lib/fontTools/subset/ |
__init__.py | [all...] |