OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mapCharToGlyph
(Results
1 - 18
of
18
) sorted by null
/external/chromium_org/third_party/icu/source/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
SimpleFontInstance.h
49
virtual LEGlyphID
mapCharToGlyph
(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const;
53
virtual LEGlyphID
mapCharToGlyph
(LEUnicode32 ch, const LECharMapper *mapper) const;
55
virtual LEGlyphID
mapCharToGlyph
(LEUnicode32 ch) const;
PortableFontInstance.h
95
virtual LEGlyphID
mapCharToGlyph
(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const;
99
virtual LEGlyphID
mapCharToGlyph
(LEUnicode32 ch, const LECharMapper *mapper) const;
101
virtual LEGlyphID
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/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
SimpleFontInstance.h
49
virtual LEGlyphID
mapCharToGlyph
(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const;
53
virtual LEGlyphID
mapCharToGlyph
(LEUnicode32 ch, const LECharMapper *mapper) const;
55
virtual LEGlyphID
mapCharToGlyph
(LEUnicode32 ch) const;
PortableFontInstance.h
95
virtual LEGlyphID
mapCharToGlyph
(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const;
99
virtual LEGlyphID
mapCharToGlyph
(LEUnicode32 ch, const LECharMapper *mapper) const;
101
virtual LEGlyphID
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/harfbuzz_ng/src/hb-icu-le/
PortableFontInstance.h
88
virtual LEGlyphID
mapCharToGlyph
(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const;
92
virtual LEGlyphID
mapCharToGlyph
(LEUnicode32 ch, const LECharMapper *mapper) const;
94
virtual LEGlyphID
mapCharToGlyph
(LEUnicode32 ch) const;
PortableFontInstance.cpp
233
LEGlyphID PortableFontInstance::
mapCharToGlyph
(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const
235
return LEFontInstance::
mapCharToGlyph
(ch, mapper, filterZeroWidth);
240
LEGlyphID PortableFontInstance::
mapCharToGlyph
(LEUnicode32 ch, const LECharMapper *mapper) const
242
return LEFontInstance::
mapCharToGlyph
(ch, mapper);
245
LEGlyphID PortableFontInstance::
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;
LEFontInstance.h
21
* <code>LEFontInstance::
mapCharToGlyph
</code> to adjust character codes before the character
196
* <code>TRUE</code> if <code>
mapCharToGlyph
(ch)</code>
222
* <code>
mapCharToGlyph
(ch, mapper)</code> on each one. It also handles surrogate
245
* method calls the mapper, and then calls <code>
mapCharToGlyph
(mappedCh)</code>.
257
virtual LEGlyphID
mapCharToGlyph
(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const;
262
* method calls the mapper, and then calls <code>
mapCharToGlyph
(mappedCh)</code>.
273
virtual LEGlyphID
mapCharToGlyph
(LEUnicode32 ch, const LECharMapper *mapper) const;
287
virtual LEGlyphID
mapCharToGlyph
(LEUnicode32 ch) const = 0;
KernTable.cpp
128
LEGlyphID id = font->
mapCharToGlyph
(i);
OpenTypeLayoutEngine.cpp
535
LEGlyphID zwnj = fFontInstance->
mapCharToGlyph
(0x200C);
/external/icu4c/samples/layout/
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
ScriptCompositeFontInstance.cpp
87
LEGlyphID ScriptCompositeFontInstance::
mapCharToGlyph
(LEUnicode32 ch) const
99
LEGlyphID glyph = scriptFont->
mapCharToGlyph
(ch);
ScriptCompositeFontInstance.h
85
virtual LEGlyphID
mapCharToGlyph
(LEUnicode32 ch) const;
Completed in 59 milliseconds