Home | History | Annotate | Download | only in table

Lines Matching refs:Header

27 #include "sfntly/table/header.h"
43 virtual Header* header() { return header_; }
46 // Get a builder for the table type specified by the data in the header.
47 // @param header the header for the table
50 static CALLER_ATTACH Builder* GetBuilder(Header* header,
56 Builder(Header* header, WritableFontData* data);
57 Builder(Header* header, ReadableFontData* data);
58 Builder(Header* header);
61 Ptr<Header> header_;
72 // Get the header for the table.
73 virtual Header* header() { return header_; }
75 // Get the tag for the table from the record header.
78 // Get the offset for the table from the record header.
81 // Get the length of the table from the record header.
84 // Get the checksum for the table from the record header.
92 Table(Header* header, ReadableFontData* data);
95 Ptr<Header> header_;
102 GenericTable(Header* header, ReadableFontData* data) : Table(header, data) {}