Searched refs:lastGlyphID (Results 1 – 3 of 3) sorted by relevance
/external/skia/src/pdf/ |
D | SkPDFFont.cpp | 365 uint16_t lastGlyphID) { in append_tounicode_header() argument 397 range.appendf("<%04X> <%04X>\n", firstGlyphID, lastGlyphID); in append_tounicode_header() 498 uint16_t lastGlyphID); 505 uint16_t lastGlyphID) { in append_cmap_sections() argument 520 SkMin32(lastGlyphID + 1, glyphToUnicode.count()) - glyphOffset; in append_cmap_sections() 567 uint16_t lastGlyphID) { in generate_tounicode_cmap() argument 570 append_tounicode_header(&cmap, firstGlyphID, lastGlyphID); in generate_tounicode_cmap() 572 append_tounicode_header(&cmap, 1, lastGlyphID - firstGlyphID + 1); in generate_tounicode_cmap() 575 firstGlyphID, lastGlyphID); in generate_tounicode_cmap() 919 uint16_t SkPDFFont::lastGlyphID() const { in lastGlyphID() function in SkPDFFont [all …]
|
D | SkPDFFont.h | 168 uint16_t lastGlyphID() const;
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | _c_m_a_p.py | 965 lastGlyphID = startGlyphID - self._format_step 973 if not self._IsInSameRun(glyphID, lastGlyphID, charCode, lastCharCode): 978 lastGlyphID = glyphID 1030 def _IsInSameRun(self, glyphID, lastGlyphID, charCode, lastCharCode): argument 1031 return (glyphID == 1 + lastGlyphID) and (charCode == 1 + lastCharCode) 1042 def _IsInSameRun(self, glyphID, lastGlyphID, charCode, lastCharCode): argument 1043 return (glyphID == lastGlyphID) and (charCode == 1 + lastCharCode)
|