OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:chars_to_glyph_ids
(Results
1 - 4
of
4
) sorted by null
/external/sfntly/cpp/src/sample/subtly/
font_info.cc
63
FontInfo::FontInfo(CharacterMap*
chars_to_glyph_ids
,
66
chars_to_glyph_ids_ = new CharacterMap(
chars_to_glyph_ids
->begin(),
67
chars_to_glyph_ids
->end());
97
void FontInfo::set_chars_to_glyph_ids(CharacterMap*
chars_to_glyph_ids
) {
98
*chars_to_glyph_ids_ = *
chars_to_glyph_ids
;
141
CharacterMap*
chars_to_glyph_ids
= new CharacterMap;
local
142
bool success = GetCharacterMap(
chars_to_glyph_ids
);
144
delete
chars_to_glyph_ids
;
151
success = ResolveCompositeGlyphs(
chars_to_glyph_ids
, resolved_glyph_ids);
153
delete
chars_to_glyph_ids
;
[
all
...]
merger.cc
73
font_info->
chars_to_glyph_ids
()->insert(
74
current_font_info->
chars_to_glyph_ids
()->begin(),
75
current_font_info->
chars_to_glyph_ids
()->end());
80
fprintf(stderr, "Counts:
chars_to_glyph_ids
: %d; resoved_glyph_ids: %d\n",
81
font_info->
chars_to_glyph_ids
()->size(),
font_info.h
65
//
chars_to_glyph_ids
maps characters to GlyphIds for CMap construction
68
FontInfo(CharacterMap*
chars_to_glyph_ids
,
81
CharacterMap*
chars_to_glyph_ids
() const { return chars_to_glyph_ids_; }
function in class:subtly::FontInfo
82
// Takes ownership of the
chars_to_glyph_ids
CharacterMap.
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
,
font_assembler.cc
89
CharacterMap*
chars_to_glyph_ids
= font_info_->
chars_to_glyph_ids
();
101
for (CharacterMap::iterator it =
chars_to_glyph_ids
->begin(),
102
e =
chars_to_glyph_ids
->end(); it != e; ++it) {
Completed in 1339 milliseconds