/external/sfntly/cpp/src/test/ |
verify_maxp.cc | 41 MaximumProfileTablePtr maxp = down_cast<MaximumProfileTable*>(table); local 42 if (maxp == NULL) { 46 EXPECT_EQ(maxp->TableVersion(), Fixed1616::Fixed(1, 0)); 47 EXPECT_EQ(maxp->NumGlyphs(), MAXP_NUM_GLYPHS); 48 EXPECT_EQ(maxp->MaxPoints(), MAXP_MAX_POINTS); 49 EXPECT_EQ(maxp->MaxContours(), MAXP_MAX_CONTOURS); 50 EXPECT_EQ(maxp->MaxCompositePoints(), MAXP_MAX_COMPOSITE_POINTS); 51 EXPECT_EQ(maxp->MaxCompositeContours(), MAXP_MAX_COMPOSITE_CONTOURS); 52 EXPECT_EQ(maxp->MaxZones(), MAXP_MAX_ZONES); 53 EXPECT_EQ(maxp->MaxTwilightPoints(), MAXP_MAX_TWILIGHT_POINTS) [all...] |
test_data.cc | 42 Tag::loca, Tag::maxp, Tag::morx, Tag::name, Tag::post, 49 Tag::loca, Tag::maxp, Tag::name, Tag::post, Tag::prep };
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
_l_o_c_a.py | 27 if len(locations) < (ttFont['maxp'].numGlyphs + 1): 28 warnings.warn("corrupt 'loca' table, or wrong numGlyphs in 'maxp': %d %d" % (len(locations) - 1, ttFont['maxp'].numGlyphs))
|
_p_o_s_t.py | 73 self.glyphOrder = standardGlyphOrder[:ttFont["maxp"].numGlyphs] 78 if numGlyphs > ttFont['maxp'].numGlyphs: 79 # Assume the numGlyphs field is bogus, so sync with maxp. 83 numGlyphs = ttFont['maxp'].numGlyphs 91 self.glyphOrder = glyphOrder = [None] * int(ttFont['maxp'].numGlyphs) 102 if numGlyphs < ttFont['maxp'].numGlyphs: 103 for i in range(numGlyphs, ttFont['maxp'].numGlyphs): 111 for i in range(ttFont['maxp'].numGlyphs): 131 numGlyphs = ttFont['maxp'].numGlyphs 149 numGlyphs = ttFont['maxp'].numGlyph [all...] |
L_T_S_H_.py | 20 #assert numGlyphs == ttFont['maxp'].numGlyphs 33 #assert len(self.yPels) == ttFont['maxp'].numGlyphs == numGlyphs
|
T_S_I__5.py | 12 numGlyphs = ttFont['maxp'].numGlyphs
|
_h_d_m_x.py | 16 numGlyphs = ttFont['maxp'].numGlyphs 32 numGlyphs = ttFont['maxp'].numGlyphs
|
T_S_I__0.py | 17 numGlyphs = ttFont['maxp'].numGlyphs
|
_h_e_a_d.py | 33 dependencies = ['maxp', 'loca']
|
_h_m_t_x.py | 18 numGlyphs = ttFont['maxp'].numGlyphs
|
sbixBitmap.py | 57 # TODO: if ttFont has no maxp, cmap etc., ignore glyph names and compile by index?
|
/external/harfbuzz_ng/src/ |
hb-ot-maxp-table.hh | 37 * maxp -- The Maximum Profile Table 42 struct maxp struct in namespace:OT 61 FixedVersion<>version; /* Version of the maxp table (0.5 or 1.0),
|
hb-face.cc | 36 #include "hb-ot-maxp-table.hh" 475 hb_blob_t *maxp_blob = OT::Sanitizer<OT::maxp>::sanitize (reference_table (HB_OT_TAG_maxp)); 476 const OT::maxp *maxp_table = OT::Sanitizer<OT::maxp>::lock_instance (maxp_blob);
|
hb-ot-hmtx-table.hh | 81 * derived from numGlyphs (from 'maxp'
|
/external/sfntly/cpp/src/sfntly/table/core/ |
maximum_profile_table.h | 26 // A Maximum Profile table - 'maxp'. 30 // Builder for a Maximum Profile table - 'maxp'.
|
/external/sfntly/cpp/src/sfntly/ |
tag.cc | 31 const int32_t Tag::maxp = TAG('m', 'a', 'x', 'p'); member in class:sfntly::Tag 77 Tag::maxp, 89 Tag::maxp,
|
tag.h | 37 static const int32_t maxp; member in struct:sfntly::Tag
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ |
OpenTypeTagBuilder.java | 53 "maxp",
|
/frameworks/minikin/tests/data/ |
ColorTextMixedEmojiFont.ttx | 66 <maxp> 83 </maxp>
|
NoGlyphFont.ttx | 64 <maxp> 81 </maxp>
|
Emoji.ttx | 70 <maxp> 87 </maxp>
|
Ko.ttx | 68 <maxp> 85 </maxp>
|
/cts/tests/tests/graphics/assets/ |
bombfont.ttx | 70 <maxp> 87 </maxp>
|
bombfont2.ttx | 70 <maxp> 87 </maxp>
|
/external/fonttools/Lib/fontTools/ttLib/ |
__init__.py | 13 >>> tt['maxp'].numGlyphs 32 Dumping 'maxp' table... 38 >>> tt2['maxp'].numGlyphs 97 2) maxp font bounding box 326 if "maxp" in self and "post" in self: 479 numGlyphs = int(self['maxp'].numGlyphs) 927 TTFTableOrder = ["head", "hhea", "maxp", "OS/2", "hmtx", "LTSH", "VDMX", 931 OTFTableOrder = ["head", "hhea", "maxp", "OS/2", "name", "cmap", "post",
|