HomeSort by relevance Sort by last modified time
    Searched defs:Panose (Results 1 - 2 of 2) sorted by null

  /external/fonttools/Lib/fontTools/ttLib/tables/
O_S_2f_2.py 9 # panose classification
24 class Panose(object):
56 panose: 10s # panose classification number
121 self.panose = sstruct.unpack(panoseFormat, self.panose, Panose())
124 panose = self.panose
125 self.panose = sstruct.pack(panoseFormat, self.panose
    [all...]
  /external/sfntly/cpp/src/sfntly/table/core/
os2_table.cc 169 void OS2Table::Panose(ByteVector* value) {
418 void OS2Table::Builder::Panose(ByteVector* value) {
428 void OS2Table::Builder::SetPanose(ByteVector* panose) {
429 assert(panose);
430 if (panose->size() != Offset::kPanoseLength) {
432 throw IllegalArgumentException("Panose bytes must be exactly 10 in length");
436 InternalWriteData()->WriteBytes(Offset::kPanose, panose);

Completed in 192 milliseconds