Searched refs:dataRows (Results 1 – 1 of 1) sorted by relevance
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | E_B_D_T_.py | 291 dataRows = [] 298 dataRows.append(deHexStr(attr['value'])) 299 bitmapObject.setRows(dataRows, bitDepth=bitDepth, metrics=metrics) 332 dataRows = [] 340 dataRows.append(_binary2data(rowData)) 342 bitmapObject.setRows(dataRows, bitDepth=bitDepth, metrics=metrics, reverseBytes=True) 552 def setRows(self, dataRows, bitDepth=1, metrics=None, reverseBytes=False): argument 556 dataRows = list(map(_reverseBytes, dataRows)) 560 numBytes = (self._getBitRange(len(dataRows), bitDepth, metrics)[0] + 7) // 8 562 for row, data in enumerate(dataRows): [all …]
|