Home
last modified time | relevance | path

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

/external/skia/src/pdf/
DSkPDFFont.cpp366 uint16_t lastGlyphID) { in append_tounicode_header() argument
398 range.appendf("<%04X> <%04X>\n", firstGlyphID, lastGlyphID); in append_tounicode_header()
499 uint16_t lastGlyphID);
506 uint16_t lastGlyphID) { in append_cmap_sections() argument
521 SkMin32(lastGlyphID + 1, glyphToUnicode.count()) - glyphOffset; in append_cmap_sections()
568 uint16_t lastGlyphID) { in generate_tounicode_cmap() argument
571 append_tounicode_header(&cmap, firstGlyphID, lastGlyphID); in generate_tounicode_cmap()
573 append_tounicode_header(&cmap, 1, lastGlyphID - firstGlyphID + 1); in generate_tounicode_cmap()
576 firstGlyphID, lastGlyphID); in generate_tounicode_cmap()
927 uint16_t SkPDFFont::lastGlyphID() const { in lastGlyphID() function in SkPDFFont
[all …]
DSkPDFFont.h162 uint16_t lastGlyphID() const;
/external/fonttools/Lib/fontTools/ttLib/tables/
D_c_m_a_p.py965 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)