Home | History | Annotate | Download | only in tables

Lines Matching refs:locations

406 	# Remove any of the glyph locations and names that are flagged as skipped.
415 dataPairs = list(filter(isValidLocation, zip(self.names, self.locations)))
416 self.names, self.locations = list(map(list, zip(*dataPairs)))
438 self.locations = list(zip(modifiedOffsets, modifiedOffsets[1:]))
446 for curLoc, nxtLoc in zip(self.locations, self.locations[1:]):
453 # Run a simple algorithm to add skip glyphs to the data locations at
456 locQueue = deque(self.locations)
466 # Now that all the locations are collected, pack them appropriately into
470 # Image data offset must be less than or equal to the minimum of locations.
526 self.locations = list(zip(offsets, offsets[1:]))
533 self.imageDataOffset = min(zip(*self.locations)[0])
557 self.locations = list(zip(offsets, offsets[1:]))
563 for curLoc, nxtLoc in zip(self.locations, self.locations[1:]):
566 offsets = list(self.locations[0]) + [loc[1] for loc in self.locations[1:]]
567 # Image data offset must be less than or equal to the minimum of locations.
595 self.locations = list(zip(offsets, offsets[1:]))
599 self.imageDataOffset = min(zip(*self.locations)[0])