Home
last modified time | relevance | path

Searched defs:SmallGlyphMetrics (Results 1 – 6 of 6) sorted by relevance

/aosp_15_r20/external/skia/src/sfnt/
H A DSkOTTable_EBDT.h39 struct SmallGlyphMetrics { struct
40 SK_OT_BYTE height;
41 SK_OT_BYTE width;
42 SK_OT_CHAR bearingX;
43 SK_OT_CHAR bearingY;
44 SK_OT_BYTE advance;
/aosp_15_r20/external/harfbuzz_ng/src/OT/Color/CBDT/
H A DCBDT.hh76 struct SmallGlyphMetrics struct
78 bool sanitize (hb_sanitize_context_t *c) const in sanitize()
84 void get_extents (hb_font_t *font, hb_glyph_extents_t *extents, bool scale) const in get_extents()
95 HBUINT8 height;
96 HBUINT8 width;
97 HBINT8 bearingX;
98 HBINT8 bearingY;
99 HBUINT8 advance;
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/read-fonts-0.15.6/generated/
H A Dgenerated_bitmap.rs693 pub struct SmallGlyphMetrics { struct
706 impl SmallGlyphMetrics { implementation
733 impl FixedSize for SmallGlyphMetrics { implementation
741 impl sealed::Sealed for SmallGlyphMetrics {} implementation
744 unsafe impl FromBytes for SmallGlyphMetrics { implementation
749 impl<'a> SomeRecord<'a> for SmallGlyphMetrics { implementation
/aosp_15_r20/external/fonttools/Lib/fontTools/ttLib/tables/
H A DBitmapGlyphMetrics.py63 class SmallGlyphMetrics(BitmapGlyphMetrics): class
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/read-fonts-0.15.6/src/tables/
H A Debdt.rs31 pub(crate) fn extract_small_metrics(&self) -> &SmallGlyphMetrics { in extract_small_metrics()
H A Dbitmap.rs308 fn read_small_metrics(cursor: &mut Cursor) -> Result<SmallGlyphMetrics, ReadError> { in read_small_metrics()