Home
last modified time | relevance | path

Searched refs:chars_to_glyph_ids (Results 1 – 4 of 4) sorted by relevance

/external/sfntly/cpp/src/sample/subtly/
Dfont_info.cc63 FontInfo::FontInfo(CharacterMap* chars_to_glyph_ids, in FontInfo() argument
66 chars_to_glyph_ids_ = new CharacterMap(chars_to_glyph_ids->begin(), in FontInfo()
67 chars_to_glyph_ids->end()); in FontInfo()
97 void FontInfo::set_chars_to_glyph_ids(CharacterMap* chars_to_glyph_ids) { in set_chars_to_glyph_ids() argument
98 *chars_to_glyph_ids_ = *chars_to_glyph_ids; in set_chars_to_glyph_ids()
141 CharacterMap* chars_to_glyph_ids = new CharacterMap; in GetFontInfo() local
142 bool success = GetCharacterMap(chars_to_glyph_ids); in GetFontInfo()
144 delete chars_to_glyph_ids; in GetFontInfo()
151 success = ResolveCompositeGlyphs(chars_to_glyph_ids, resolved_glyph_ids); in GetFontInfo()
153 delete chars_to_glyph_ids; in GetFontInfo()
[all …]
Dfont_info.h68 FontInfo(CharacterMap* chars_to_glyph_ids,
81 CharacterMap* chars_to_glyph_ids() const { return chars_to_glyph_ids_; } in chars_to_glyph_ids() function
83 void set_chars_to_glyph_ids(CharacterMap* chars_to_glyph_ids);
113 bool GetCharacterMap(CharacterMap* chars_to_glyph_ids);
114 bool ResolveCompositeGlyphs(CharacterMap* chars_to_glyph_ids,
Dmerger.cc73 font_info->chars_to_glyph_ids()->insert( in MergeFontInfos()
74 current_font_info->chars_to_glyph_ids()->begin(), in MergeFontInfos()
75 current_font_info->chars_to_glyph_ids()->end()); in MergeFontInfos()
81 font_info->chars_to_glyph_ids()->size(), in MergeFontInfos()
Dfont_assembler.cc89 CharacterMap* chars_to_glyph_ids = font_info_->chars_to_glyph_ids(); in AssembleCMapTable() local
101 for (CharacterMap::iterator it = chars_to_glyph_ids->begin(), in AssembleCMapTable()
102 e = chars_to_glyph_ids->end(); it != e; ++it) { in AssembleCMapTable()