/external/sfntly/cpp/src/test/ |
D | verify_glyf.cc | 39 GlyphPtr glyf; in VerifyGLYF() local 40 glyf.Attach(glyf_table->GetGlyph(GLYPH33_OFFSET, GLYPH33_LENGTH)); in VerifyGLYF() 41 if (glyf == NULL) { in VerifyGLYF() 45 EXPECT_EQ(glyf->XMin(), GLYPH33_XMIN); in VerifyGLYF() 46 EXPECT_EQ(glyf->YMin(), GLYPH33_YMIN); in VerifyGLYF() 47 EXPECT_EQ(glyf->XMax(), GLYPH33_XMAX); in VerifyGLYF() 48 EXPECT_EQ(glyf->YMax(), GLYPH33_YMAX); in VerifyGLYF()
|
D | test_data.cc | 41 Tag::glyf, Tag::head, Tag::hhea, Tag::hmtx, Tag::kern, 48 Tag::glyf, Tag::hdmx, Tag::head, Tag::hhea, Tag::hmtx,
|
D | serialization_test.cc | 76 } else if (TTF_KNOWN_TAGS[i] == Tag::glyf) { in TestSerialization()
|
/external/fonttools/Snippets/ |
D | otf2ttf.py | 41 def update_hmtx(ttFont, glyf): argument 43 for glyphName, glyph in glyf.glyphs.items(): 55 ttFont["glyf"] = glyf = newTable("glyf") 56 glyf.glyphOrder = glyphOrder 57 glyf.glyphs = glyphs_to_quadratic(ttFont.getGlyphSet(), **kwargs) 59 glyf.compile(ttFont) 60 update_hmtx(ttFont, glyf) 73 for g in glyf.glyphs.values())
|
/external/fonttools/Lib/fontTools/varLib/ |
D | mutator.py | 187 glyf = varfont['glyf'] 192 glyf[name].getCompositeMaxpValues(glyf).maxComponentDepth 193 if glyf[name].isComposite() else 0, 197 coordinates, _ = glyf.getCoordinatesAndControls(glyphname, varfont) 205 origCoords, g = glyf.getCoordinatesAndControls(glyphname, varfont) 208 glyf.setCoordinates(glyphname, coordinates, varfont) 210 glyf = None 310 if glyf: 311 for glyph in glyf.glyphs.values(): 319 for glyph_name in glyf.keys(): [all …]
|
/external/harfbuzz_ng/src/ |
D | hb-subset-plan.cc | 99 OT::glyf::accelerator_t glyf; in _populate_gids_to_retain() local 102 glyf.init (plan->source); in _populate_gids_to_retain() 136 glyf.add_gid_and_children (gid, plan->_glyphset); in _populate_gids_to_retain() 146 glyf.fini (); in _populate_gids_to_retain()
|
D | hb-ot-glyf-table.hh | 52 friend struct glyf; 79 struct glyf struct 162 glyf *glyf_prime = c->serializer->start_embed <glyf> (); in subset() 185 OT::glyf::accelerator_t glyf; in _populate_subset_glyphs() argument 186 glyf.init (plan->source); in _populate_subset_glyphs() 198 subset_glyph.source_glyph = glyf.glyph_for_gid (subset_glyph.old_gid, true); in _populate_subset_glyphs() 207 glyf.fini (); in _populate_subset_glyphs() 645 …*const_cast<OT::HBUINT16 *> (&_.flags) = (uint16_t) _.flags & ~OT::glyf::CompositeGlyphChain::WE_H… in drop_hints() 771 glyf_table = hb_sanitize_context_t ().reference_table<glyf> (face); in init() 1046 hb_blob_ptr_t<glyf> glyf_table; [all …]
|
D | hb-ot-font.cc | 163 if (ot_face->glyf->get_extents (font, glyph, &extents)) in hb_ot_get_glyph_v_origin() 191 if (!ret) ret = ot_face->glyf->get_extents (font, glyph, extents); in hb_ot_get_glyph_extents() 318 return font->face->table.glyf->get_side_bearing_var (font, glyph, is_vertical); in _glyf_get_side_bearing_var() 324 return font->face->table.glyf->get_advance_var (font, glyph, is_vertical); in _glyf_get_advance_var()
|
D | hb-ot-face-table-list.hh | 74 HB_OT_ACCELERATOR (OT, glyf)
|
/external/sfntly/cpp/src/sfntly/tools/subsetter/ |
D | glyph_table_subsetter.cc | 27 const int32_t kGlyphTableSubsetterTags[2] = {Tag::glyf, Tag::loca}; 46 GlyphTablePtr glyph_table = down_cast<GlyphTable*>(font->GetTable(Tag::glyf)); in Subset() 57 (font_builder->NewTableBuilder(Tag::glyf)); in Subset()
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | table_API_readme.txt | 25 >>> ttLib.tagToIdentifier("glyf") 38 'glyf' 41 Eg. the 'glyf' table converter lives in a Python file called: 53 >>> ttLib.getTableModule('glyf') 55 >>> ttLib.getTableClass('glyf')
|
/external/fonttools/Tests/ttLib/tables/ |
D | _g_v_a_r_test.py | 152 glyf, fvar, gvar = newTable("glyf"), newTable("fvar"), newTable("gvar") 154 font.tables = {"glyf": glyf, "gvar": gvar, "fvar": fvar} 155 glyf.glyphs = {glyph: Glyph() for glyph in glyphs} 156 glyf.glyphs["I"].coordinates = [(10, 10), (10, 20), (20, 20), (20, 10)]
|
/external/sfntly/cpp/src/sfntly/ |
D | tag.cc | 37 const int32_t Tag::glyf = TAG('g', 'l', 'y', 'f'); member in sfntly::Tag 100 Tag::glyf,
|
D | tag.h | 45 static const int32_t glyf; member
|
/external/skia/src/sfnt/ |
D | SkOTTable_glyf.h | 31 Iterator(const SkOTTableGlyph& glyf, in Iterator() 34 : fGlyf(glyf) in Iterator()
|
/external/skqp/src/sfnt/ |
D | SkOTTable_glyf.h | 31 Iterator(const SkOTTableGlyph& glyf, in Iterator() 34 : fGlyf(glyf) in Iterator()
|
/external/fonttools/Lib/fontTools/varLib/instancer/ |
D | __init__.py | 327 glyf = varfont["glyf"] 328 coordinates, ctrl = glyf.getCoordinatesAndControls(glyphname, varfont) 353 glyf.setCoordinates(glyphname, coordinates, varfont) 361 isComposite = glyf[glyphname].isComposite() 370 glyf = varfont["glyf"] 376 glyf.glyphOrder, 378 glyf[name].getCompositeMaxpValues(glyf).maxComponentDepth 379 if glyf[name].isComposite()
|
/external/sfntly/cpp/src/sample/chromium/ |
D | subsetter_impl.h | 69 GlyphTable* glyf, LocaTable* loca);
|
D | subsetter_impl.cc | 274 down_cast<GlyphTable::Builder*>(font_builder->NewTableBuilder(Tag::glyf)); in SetupGlyfBuilders() 707 down_cast<GlyphTable*>(font_->GetTable(Tag::glyf)); in SubsetFont() 786 Font* SubsetterImpl::Subset(const IntegerSet& glyph_ids, GlyphTable* glyf, in Subset() argument 793 Tag::prep, Tag::glyf, Tag::hmtx, Tag::fpgm, Tag::EBDT, in Subset() 806 if (SetupGlyfBuilders(font_builder, glyf, loca, glyph_ids)) { in Subset() 807 remove_tags.insert(Tag::glyf); in Subset()
|
/external/sfntly/cpp/src/sample/subtly/ |
D | font_assembler.cc | 149 (font_builder_->NewTableBuilder(Tag::glyf)); in AssembleGlyphAndLocaTables() 196 (font_info_->GetTable(font_id, Tag::glyf)); in AssembleGlyphAndLocaTables()
|
D | font_info.cc | 137 glyph_table_ = down_cast<GlyphTable*>(font_->GetTable(Tag::glyf)); in Initialize()
|
/external/fonttools/Doc/source/ttLib/ |
D | tables.rst | 29 >>> ttLib.tagToIdentifier("glyf") 42 'glyf' 45 Eg. the 'glyf' table converter lives in a Python file called:: 59 >>> ttLib.getTableModule('glyf') 61 >>> ttLib.getTableClass('glyf')
|
/external/sfntly/cpp/src/sfntly/table/ |
D | table.cc | 113 }*/ else if (tag == Tag::glyf) { in GetBuilder()
|
/external/fonttools/ |
D | NEWS.rst | 374 - [woff2] Skip normalizing ``glyf`` and ``loca`` tables if these are missing from 390 - [glyf] If a component uses reference points (``firstPt`` and ``secondPt``) for 393 - [glyf] When all glyphs have zero contours, compile ``glyf`` table data as a single 451 - [glyf] Fixed the flags bug in glyph.drawPoints() like we did for glyph.draw() 457 - [glyf] Use the ``flagOnCurve`` bit mask in ``glyph.draw()``, so that we ignore 545 the glyf table to be incomplete when dumping to XML (#1681). 585 ``glyf`` and ``loca`` tables, as well as with transformed ``hmtx`` table. 668 - [arrayTools/glyf] ``calcIntBounds`` (used to compute bounding boxes of glyf 681 - [ttLib/glyf] Raise more specific error when encountering recursive 692 - [mutator] Set ``OVERLAP_SIMPLE`` and ``OVERLAP_COMPOUND`` glyf flags by [all …]
|
/external/fonttools/Tests/subset/ |
D | subset_test.py | 615 glyf = subsetfont["glyf"] 616 self.assertEqual(glyf["A"].numberOfContours, 0) 617 self.assertGreater(glyf["B"].numberOfContours, 0) 959 glyf = subset_font["glyf"] 960 assert all(glyf[g].numberOfContours == 0 for g in subset_font.getGlyphOrder())
|