Home
last modified time | relevance | path

Searched refs:lastCharCode (Results 1 – 1 of 1) sorted by relevance

/external/fonttools/Lib/fontTools/ttLib/tables/
D_c_m_a_p.py990 lastCharCode = startCharCode - 1
997 if not self._IsInSameRun(glyphID, lastGlyphID, charCode, lastCharCode):
998 dataList.append(struct.pack(">LLL", startCharCode, lastCharCode, startGlyphID))
1003 lastCharCode = charCode
1004 dataList.append(struct.pack(">LLL", startCharCode, lastCharCode, startGlyphID))
1056 def _IsInSameRun(self, glyphID, lastGlyphID, charCode, lastCharCode): argument
1057 return (glyphID == 1 + lastGlyphID) and (charCode == 1 + lastCharCode)
1070 def _IsInSameRun(self, glyphID, lastGlyphID, charCode, lastCharCode): argument
1071 return (glyphID == lastGlyphID) and (charCode == 1 + lastCharCode)