Home | History | Annotate | Download | only in layout

Lines Matching refs:cmap

59 CMAPMapper *CMAPMapper::createUnicodeMapper(const CMAPTable *cmap)
62 le_uint16 nSubtables = SWAPW(cmap->numberSubtables);
67 const CMAPEncodingSubtableHeader *esh = &cmap->encodingSubtableHeaders[i];
85 subtable = (const CMAPEncodingSubtable *) ((const char *) cmap + offset10);
87 subtable = (const CMAPEncodingSubtable *) ((const char *) cmap + offset1);
94 return new CMAPFormat4Mapper(cmap, (const CMAPFormat4Encoding *) subtable);
100 return new CMAPGroupMapper(cmap, encoding->groups, SWAPL(encoding->nGroups));
110 CMAPFormat4Mapper::CMAPFormat4Mapper(const CMAPTable *cmap, const CMAPFormat4Encoding *header)
111 : CMAPMapper(cmap)
170 CMAPGroupMapper::CMAPGroupMapper(const CMAPTable *cmap, const CMAPGroup *groups, le_uint32 nGroups)
171 : CMAPMapper(cmap), fGroups(groups)