Searched refs:startCharCode (Results 1 – 8 of 8) sorted by relevance
/external/icu/icu4c/source/samples/layout/ |
D | cmaps.cpp | 183 if (SWAPU32(fGroups[fRangeOffset].startCharCode) <= unicode32) { in unicodeToGlyph() 190 if (SWAPU32(fGroups[range + probe].startCharCode) <= unicode32) { in unicodeToGlyph() 195 …if (SWAPU32(fGroups[range].startCharCode) <= unicode32 && SWAPU32(fGroups[range].endCharCode) >= u… in unicodeToGlyph() 196 …phID) (SWAPU32(fGroups[range].startGlyphCode) + unicode32 - SWAPU32(fGroups[range].startCharCode)); in unicodeToGlyph()
|
D | sfnt.h | 113 le_uint32 startCharCode; member 127 le_uint32 startCharCode; member
|
/external/icu/icu4c/source/test/letest/ |
D | cmaps.cpp | 227 if (SWAPU32(fGroups[fRangeOffset].startCharCode) <= unicode32) { in unicodeToGlyph() 234 if (SWAPU32(fGroups[range + probe].startCharCode) <= unicode32) { in unicodeToGlyph() 239 …if (SWAPU32(fGroups[range].startCharCode) <= unicode32 && SWAPU32(fGroups[range].endCharCode) >= u… in unicodeToGlyph() 240 …phID) (SWAPU32(fGroups[range].startGlyphCode) + unicode32 - SWAPU32(fGroups[range].startCharCode)); in unicodeToGlyph()
|
D | sfnt.h | 196 le_uint32 startCharCode; member 228 le_uint32 startCharCode; member 237 le_uint32 startCharCode; member
|
/external/icu/icu4c/source/test/perf/leperf/ |
D | cmaps.cpp | 224 if (SWAPU32(fGroups[fRangeOffset].startCharCode) <= unicode32) { in unicodeToGlyph() 231 if (SWAPU32(fGroups[range + probe].startCharCode) <= unicode32) { in unicodeToGlyph() 236 …if (SWAPU32(fGroups[range].startCharCode) <= unicode32 && SWAPU32(fGroups[range].endCharCode) >= u… in unicodeToGlyph() 237 …phID) (SWAPU32(fGroups[range].startGlyphCode) + unicode32 - SWAPU32(fGroups[range].startCharCode)); in unicodeToGlyph()
|
D | sfnt.h | 196 le_uint32 startCharCode; member 228 le_uint32 startCharCode; member 237 le_uint32 startCharCode; member
|
/external/harfbuzz_ng/src/ |
D | hb-ot-cmap-table.hh | 199 if (codepoint < startCharCode) return -1; in cmp() 211 ULONG startCharCode; /* First character code in this group. */ member 225 hb_codepoint_t gid = glyphIdArray[codepoint - startCharCode]; in get_glyph() 242 UINT startCharCode; /* First character code covered. */ member 286 { return group.glyphID + (u - group.startCharCode); } in group_get_glyph()
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | _c_m_a_p.py | 912 startCharCode, endCharCode, glyphID = struct.unpack(">LLL",data[pos:pos+12] ) 914 lenGroup = 1 + endCharCode - startCharCode 915 charCodes.extend(list(range(startCharCode, endCharCode +1))) 963 startCharCode = charCodes[0] 964 startGlyphID = cmap[startCharCode] 966 lastCharCode = startCharCode - 1 974 dataList.append(struct.pack(">LLL", startCharCode, lastCharCode, startGlyphID)) 975 startCharCode = charCode 980 dataList.append(struct.pack(">LLL", startCharCode, lastCharCode, startGlyphID))
|