Searched refs:lastGlyphID (Results 1 – 5 of 5) sorted by relevance
/external/skia/src/pdf/ |
D | SkPDFFont.cpp | 461 lastGlyphID())); in getFontSubset() 501 SkGlyphID lastGlyphID) { in populate_type_1_font() argument 506 unsigned glyphCount = 1 + lastGlyphID - firstGlyphID; in populate_type_1_font() 516 for (unsigned gID = firstGlyphID; gID <= lastGlyphID; gID++) { in populate_type_1_font() 523 encDiffs->reserve(lastGlyphID - firstGlyphID + 3); in populate_type_1_font() 526 SkASSERT(glyphNames.count() > lastGlyphID); in populate_type_1_font() 529 for (int gID = firstGlyphID; gID <= lastGlyphID; gID++) { in populate_type_1_font() 556 this->firstGlyphID(), this->lastGlyphID()); in SkPDFType1Font() 598 SkGlyphID lastGlyphID) { in add_type3_font_info() argument 600 SkASSERT(lastGlyphID >= firstGlyphID); in add_type3_font_info() [all …]
|
D | SkPDFMakeToUnicodeCmap.h | 19 SkGlyphID lastGlyphID); 27 SkGlyphID lastGlyphID);
|
D | SkPDFMakeToUnicodeCmap.cpp | 155 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()
|
D | SkPDFFont.h | 120 SkGlyphID lastGlyphID() const { return fLastGlyphID; } in lastGlyphID() function
|
/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)
|