OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mapCharToGlyph
(Results
1 - 8
of
8
) sorted by null
/external/icu/icu4c/source/test/letest/
SimpleFontInstance.cpp
97
LEGlyphID SimpleFontInstance::
mapCharToGlyph
(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const
99
return LEFontInstance::
mapCharToGlyph
(ch, mapper, filterZeroWidth);
104
LEGlyphID SimpleFontInstance::
mapCharToGlyph
(LEUnicode32 ch, const LECharMapper *mapper) const
106
return LEFontInstance::
mapCharToGlyph
(ch, mapper);
109
LEGlyphID SimpleFontInstance::
mapCharToGlyph
(LEUnicode32 ch) const
PortableFontInstance.cpp
442
LEGlyphID PortableFontInstance::
mapCharToGlyph
(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const
444
return LEFontInstance::
mapCharToGlyph
(ch, mapper, filterZeroWidth);
449
LEGlyphID PortableFontInstance::
mapCharToGlyph
(LEUnicode32 ch, const LECharMapper *mapper) const
451
return LEFontInstance::
mapCharToGlyph
(ch, mapper);
454
LEGlyphID PortableFontInstance::
mapCharToGlyph
(LEUnicode32 ch) const
/external/icu/icu4c/source/test/perf/leperf/
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
446
LEGlyphID PortableFontInstance::
mapCharToGlyph
(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const
448
return LEFontInstance::
mapCharToGlyph
(ch, mapper, filterZeroWidth);
453
LEGlyphID PortableFontInstance::
mapCharToGlyph
(LEUnicode32 ch, const LECharMapper *mapper) const
455
return LEFontInstance::
mapCharToGlyph
(ch, mapper);
458
LEGlyphID PortableFontInstance::
mapCharToGlyph
(LEUnicode32 ch) const
/external/icu/icu4c/source/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/icu/icu4c/source/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 97 milliseconds