Home
last modified time | relevance | path

Searched defs:GDEF (Results 1 – 4 of 4) sorted by relevance

/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-ot-layout-gdef-table.hh513 struct GDEF struct
515 static constexpr hb_tag_t tableTag = HB_OT_TAG_GDEF;
517 enum GlyphClasses {
525 bool has_data () const { return version.to_int (); } in has_data()
526 bool has_glyph_classes () const { return glyphClassDef != 0; } in has_glyph_classes()
527 unsigned int get_glyph_class (hb_codepoint_t glyph) const in get_glyph_class()
529 void get_glyphs_in_class (unsigned int klass, hb_set_t *glyphs) const in get_glyphs_in_class()
532 bool has_mark_attachment_types () const { return markAttachClassDef != 0; } in has_mark_attachment_types()
533 unsigned int get_mark_attachment_type (hb_codepoint_t glyph) const in get_mark_attachment_type()
536 bool has_attach_points () const { return attachList != 0; } in has_attach_points()
[all …]
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/
Dtag.cc46 const int32_t Tag::GDEF = TAG('G', 'D', 'E', 'F'); member in sfntly::Tag
Dtag.h60 static const int32_t GDEF; member
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/
DTag.java66 public static final int GDEF = Tag.intValue(new byte[]{'G', 'D', 'E', 'F'}); field in Tag