Home | History | Annotate | Download | only in otlLib

Lines Matching refs:ValueRecord

4 from fontTools.ttLib.tables.otBase import ValueRecord, valueRecordFormatDict
396 """{"glyph": ValueRecord} --> [otTables.SinglePos*]"""
398 # In SinglePos format 1, the covered glyphs all share the same ValueRecord.
399 # In format 2, each glyph has its own ValueRecord, but these records
408 # If a ValueRecord is shared between multiple glyphs, we generate
448 """{glyphName: otBase.ValueRecord} --> otTables.SinglePos"""
474 def _getSinglePosValueKey(valueRecord):
475 """otBase.ValueRecord --> (2, ("YPlacement": 12))"""
476 assert isinstance(valueRecord, ValueRecord), valueRecord
478 for name, value in valueRecord.__dict__.items():
496 self = ValueRecord()