Home | History | Annotate | Download | only in mtiLib

Lines Matching refs:Anchor

350 def makeAnchor(data, klass=ot.Anchor):
352 anchor = klass()
353 anchor.Format = 1
354 anchor.XCoordinate,anchor.YCoordinate = intSplitComma(data[0])
356 anchor.Format = 2
357 anchor.AnchorPoint = int(data[1])
358 return anchor
378 klass, anchor = data[glyph]
381 setattr(record, c.MarkAnchor, anchor)
394 for (glyph,klass),anchor in data.items():
398 anchors[klass] = anchor
405 for (glyph,klass,compIdx,compCount),anchor in data.items():
417 anchors[klass] = anchor
439 anchor = makeAnchor(line[3+extraItems:], anchorClass)
441 key,value = glyph,(klass,anchor)
443 key,value = ((glyph,klass)+extras),anchor
476 for What in ('Coverage', 'Array', 'Count', 'Record', 'Anchor'):
478 if Which == 'Mark' and What in ('Count', 'Record', 'Anchor'):