Home
last modified time | relevance | path

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

/external/skia/src/pdf/
DSkPDFFont.cpp487 lastGlyphID())); in getFontSubset()
527 SkGlyphID lastGlyphID) { in populate_type_1_font() argument
532 unsigned glyphCount = 1 + lastGlyphID - firstGlyphID; in populate_type_1_font()
542 for (unsigned gID = firstGlyphID; gID <= lastGlyphID; gID++) { in populate_type_1_font()
549 encDiffs->reserve(lastGlyphID - firstGlyphID + 3); in populate_type_1_font()
552 SkASSERT(glyphNames.count() > lastGlyphID); in populate_type_1_font()
555 for (int gID = firstGlyphID; gID <= lastGlyphID; gID++) { in populate_type_1_font()
582 this->firstGlyphID(), this->lastGlyphID()); in SkPDFType1Font()
624 SkGlyphID lastGlyphID) { in add_type3_font_info() argument
626 SkASSERT(lastGlyphID >= firstGlyphID); in add_type3_font_info()
[all …]
DSkPDFMakeToUnicodeCmap.h19 SkGlyphID lastGlyphID);
27 SkGlyphID lastGlyphID);
DSkPDFMakeToUnicodeCmap.cpp155 SkGlyphID lastGlyphID) { in SkPDFAppendCmapSections() argument
170 SkMin32(lastGlyphID + 1, glyphToUnicode.count()) - glyphOffset; in SkPDFAppendCmapSections()
217 SkGlyphID lastGlyphID) { in SkPDFMakeToUnicodeCmap() argument
221 firstGlyphID, lastGlyphID); in SkPDFMakeToUnicodeCmap()
DSkPDFFont.h119 SkGlyphID lastGlyphID() const { return fLastGlyphID; } in lastGlyphID() function
/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)