Home
last modified time | relevance | path

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

/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
DClassTable.java98 private int startGlyphID; field in ClassTable.ClassRangeRecord
102 public ClassRangeRecord(int startGlyphID, int endGlyphID, int classID) in ClassRangeRecord() argument
104 this.startGlyphID = startGlyphID; in ClassRangeRecord()
111 System.out.print(Utility.hex(startGlyphID, 6)); in write()
117 writer.writeData(startGlyphID); in write()
/external/fonttools/Lib/fontTools/ttLib/tables/
DS_V_G_.py185 self.docList.append( [doc, entry.startGlyphID, entry.endGlyphID] )
204 for doc, startGlyphID, endGlyphID in self.docList:
218 entry = struct.pack(">HHLL", startGlyphID, endGlyphID, docOffset, docLength)
260 for doc, startGlyphID, endGlyphID in self.docList:
265 entry = struct.pack(">HHLL", startGlyphID, endGlyphID, docOffset, docLength)
275 writer.begintag("svgDoc", startGlyphID=startGID, endGlyphID=endGID)
328 self.startGlyphID = None # USHORT
334 …phID: %s, endGlyphID: %s, svgDocOffset: %s, svgDocLength: %s" % (self.startGlyphID, self.endGlyphI…
D_c_m_a_p.py987 startGlyphID = cmap[startCharCode]
988 lastGlyphID = startGlyphID - self._format_step
997 dataList.append(struct.pack(">LLL", startCharCode, lastCharCode, startGlyphID))
999 startGlyphID = glyphID
1003 dataList.append(struct.pack(">LLL", startCharCode, lastCharCode, startGlyphID))
/external/harfbuzz_ng/src/
Dhb-ot-color-svg-table.hh44 { return g < startGlyphID ? -1 : g > endGlyphID ? 1 : 0; } in cmp()
61 HBUINT16 startGlyphID; /* The first glyph ID in the range described by member
/external/mesa3d/src/imgui/
Dimstb_truetype.h2380 stbtt_uint16 startGlyphID = ttUSHORT(classDefTable + 2); in stbtt__GetGlyphClass() local
2384 if (glyph >= startGlyphID && glyph < startGlyphID + glyphCount) in stbtt__GetGlyphClass()
2385 return (stbtt_int32)ttUSHORT(classDef1ValueArray + 2 * (glyph - startGlyphID)); in stbtt__GetGlyphClass()