Home
last modified time | relevance | path

Searched refs:startCharCode (Results 1 – 8 of 8) sorted by relevance

/external/icu/icu4c/source/samples/layout/
Dcmaps.cpp189 if (SWAPU32(fGroups[fRangeOffset].startCharCode) <= unicode32) { in unicodeToGlyph()
196 if (SWAPU32(fGroups[range + probe].startCharCode) <= unicode32) { in unicodeToGlyph()
201 …if (SWAPU32(fGroups[range].startCharCode) <= unicode32 && SWAPU32(fGroups[range].endCharCode) >= u… in unicodeToGlyph()
202 …phID) (SWAPU32(fGroups[range].startGlyphCode) + unicode32 - SWAPU32(fGroups[range].startCharCode)); in unicodeToGlyph()
Dsfnt.h119 le_uint32 startCharCode; member
133 le_uint32 startCharCode; member
/external/icu/icu4c/source/test/perf/leperf/
Dcmaps.cpp230 if (SWAPU32(fGroups[fRangeOffset].startCharCode) <= unicode32) { in unicodeToGlyph()
237 if (SWAPU32(fGroups[range + probe].startCharCode) <= unicode32) { in unicodeToGlyph()
242 …if (SWAPU32(fGroups[range].startCharCode) <= unicode32 && SWAPU32(fGroups[range].endCharCode) >= u… in unicodeToGlyph()
243 …phID) (SWAPU32(fGroups[range].startGlyphCode) + unicode32 - SWAPU32(fGroups[range].startCharCode)); in unicodeToGlyph()
Dsfnt.h202 le_uint32 startCharCode; member
234 le_uint32 startCharCode; member
243 le_uint32 startCharCode; member
/external/icu/icu4c/source/test/letest/
Dcmaps.cpp229 if (SWAPU32(fGroups[fRangeOffset].startCharCode) <= unicode32) { in unicodeToGlyph()
236 if (SWAPU32(fGroups[range + probe].startCharCode) <= unicode32) { in unicodeToGlyph()
241 …if (SWAPU32(fGroups[range].startCharCode) <= unicode32 && SWAPU32(fGroups[range].endCharCode) >= u… in unicodeToGlyph()
242 …phID) (SWAPU32(fGroups[range].startGlyphCode) + unicode32 - SWAPU32(fGroups[range].startCharCode)); in unicodeToGlyph()
Dsfnt.h198 le_uint32 startCharCode; member
230 le_uint32 startCharCode; member
239 le_uint32 startCharCode; member
/external/harfbuzz_ng/src/
Dhb-ot-cmap-table.hh401 if (codepoint < startCharCode) return -1; in cmp()
413 HBUINT32 startCharCode; /* First character code in this group. */ member
428 hb_codepoint_t gid = glyphIdArray[codepoint - startCharCode]; in get_glyph()
436 hb_codepoint_t start = startCharCode; in collect_unicodes()
453 UINT startCharCode; /* First character code covered. */ member
481 out->add_range (this->groups[i].startCharCode, in collect_unicodes()
517 { return likely (group.startCharCode <= group.endCharCode) ? in group_get_glyph()
518 group.glyphID + (u - group.startCharCode) : 0; } in group_get_glyph()
555 group->startCharCode.set (cp); in create_sub_table_plan()
565startCharCode, (uint32_t) group.endCharCode, (uint32_t) group.glyphID, (uint32_t) group.glyphID + … in create_sub_table_plan()
[all …]
/external/fonttools/Lib/fontTools/ttLib/tables/
D_c_m_a_p.py944 startCharCode, endCharCode, glyphID = struct.unpack(">LLL",data[pos:pos+12] )
946 lenGroup = 1 + endCharCode - startCharCode
947 charCodes.extend(list(range(startCharCode, endCharCode +1)))
987 startCharCode = charCodes[0]
988 startGlyphID = cmap[startCharCode]
990 lastCharCode = startCharCode - 1
998 dataList.append(struct.pack(">LLL", startCharCode, lastCharCode, startGlyphID))
999 startCharCode = charCode
1004 dataList.append(struct.pack(">LLL", startCharCode, lastCharCode, startGlyphID))