Home | History | Annotate | Download | only in letest

Lines Matching refs:cmap

53 CMAPMapper *CMAPMapper::createUnicodeMapper(const CMAPTable *cmap)
56 le_uint16 nSubtables = SWAPW(cmap->numberSubtables);
61 const CMAPEncodingSubtableHeader *esh = &cmap->encodingSubtableHeaders[i];
79 subtable = (const CMAPEncodingSubtable *) ((const char *) cmap + offset10);
81 subtable = (const CMAPEncodingSubtable *) ((const char *) cmap + offset1);
88 return new CMAPFormat4Mapper(cmap, (const CMAPFormat4Encoding *) subtable);
94 return new CMAPGroupMapper(cmap, encoding->groups, SWAPL(encoding->nGroups));
104 CMAPFormat4Mapper::CMAPFormat4Mapper(const CMAPTable *cmap, const CMAPFormat4Encoding *header)
105 : CMAPMapper(cmap)
164 CMAPGroupMapper::CMAPGroupMapper(const CMAPTable *cmap, const CMAPGroup *groups, le_uint32 nGroups)
165 : CMAPMapper(cmap), fGroups(groups)