OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mapCharToGlyph
(Results
1 - 6
of
6
) sorted by null
/external/icu4c/test/letest/
SimpleFontInstance.cpp
91
LEGlyphID SimpleFontInstance::
mapCharToGlyph
(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const
93
return LEFontInstance::
mapCharToGlyph
(ch, mapper, filterZeroWidth);
98
LEGlyphID SimpleFontInstance::
mapCharToGlyph
(LEUnicode32 ch, const LECharMapper *mapper) const
100
return LEFontInstance::
mapCharToGlyph
(ch, mapper);
103
LEGlyphID SimpleFontInstance::
mapCharToGlyph
(LEUnicode32 ch) const
PortableFontInstance.cpp
401
LEGlyphID PortableFontInstance::
mapCharToGlyph
(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const
403
return LEFontInstance::
mapCharToGlyph
(ch, mapper, filterZeroWidth);
408
LEGlyphID PortableFontInstance::
mapCharToGlyph
(LEUnicode32 ch, const LECharMapper *mapper) const
410
return LEFontInstance::
mapCharToGlyph
(ch, mapper);
413
LEGlyphID PortableFontInstance::
mapCharToGlyph
(LEUnicode32 ch) const
/external/icu4c/samples/layout/
ScriptCompositeFontInstance.cpp
87
LEGlyphID ScriptCompositeFontInstance::
mapCharToGlyph
(LEUnicode32 ch) const
99
LEGlyphID glyph = scriptFont->
mapCharToGlyph
(ch);
GDIFontInstance.h
91
virtual LEGlyphID
mapCharToGlyph
(LEUnicode32 ch) const;
131
inline LEGlyphID GDIFontInstance::
mapCharToGlyph
(LEUnicode32 ch) const
GnomeFontInstance.h
86
virtual LEGlyphID
mapCharToGlyph
(LEUnicode32 ch) const;
141
inline LEGlyphID GnomeFontInstance::
mapCharToGlyph
(LEUnicode32 ch) const
/external/icu4c/layout/
LEFontInstance.cpp
71
glyphStorage[out] =
mapCharToGlyph
(code, mapper, filterZeroWidth);
80
LEGlyphID LEFontInstance::
mapCharToGlyph
(LEUnicode32 ch, const LECharMapper *mapper) const
82
return
mapCharToGlyph
(ch, mapper, TRUE);
85
LEGlyphID LEFontInstance::
mapCharToGlyph
(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const
97
return
mapCharToGlyph
(mappedChar);
102
return LE_GET_GLYPH(
mapCharToGlyph
(ch)) != 0;
Completed in 1184 milliseconds