Home
last modified time | relevance | path

Searched refs:getGlyphs (Results 1 – 12 of 12) sorted by relevance

/external/icu/icu4c/source/layout/
DLEGlyphStorage.h149 void getGlyphs(LEGlyphID glyphs[], LEErrorCode &success) const;
163 void getGlyphs(le_uint32 glyphs[], le_uint32 extraBits, LEErrorCode &success) const;
DLayoutEngine.h398 void getGlyphs(LEGlyphID glyphs[], LEErrorCode &success) const;
412 virtual void getGlyphs(le_uint32 glyphs[], le_uint32 extraBits, LEErrorCode &success) const;
DLayoutEngine.cpp177 void LayoutEngine::getGlyphs(le_uint32 glyphs[], le_uint32 extraBits, LEErrorCode &success) const in getGlyphs() function in LayoutEngine
179 fGlyphStorage->getGlyphs(glyphs, extraBits, success); in getGlyphs()
182 void LayoutEngine::getGlyphs(LEGlyphID glyphs[], LEErrorCode &success) const in getGlyphs() function in LayoutEngine
184 fGlyphStorage->getGlyphs(glyphs, success); in getGlyphs()
Dloengine.cpp85 le->getGlyphs(glyphs, *success); in le_getGlyphs()
DLEGlyphStorage.cpp212 void LEGlyphStorage::getGlyphs(le_uint32 glyphs[], le_uint32 extraBits, LEErrorCode &success) const in getGlyphs() function in LEGlyphStorage
235 void LEGlyphStorage::getGlyphs(LEGlyphID glyphs[], LEErrorCode &success) const in getGlyphs() function in LEGlyphStorage
/external/icu/icu4c/source/test/letest/
Dletest.cpp73 engine->getGlyphs(NULL, status); in ParamTest()
80 engine->getGlyphs(glyphs, status); in ParamTest()
87 engine->getGlyphs(NULL, 0xFF000000L, status); in ParamTest()
94 engine->getGlyphs(glyphs, 0xFF000000L, status); in ParamTest()
266 engine->getGlyphs(glyphs, status); in AccessTest()
275 engine->getGlyphs(extraBitGlyphs, 0xFF000000L, status); in AccessTest()
704 engine->getGlyphs(actual.glyphs, success); in DataDrivenTest()
Dgendata.cpp320 engine->getGlyphs(glyphs, leStatus); in main()
/external/icu/icu4c/source/layoutex/layout/
DParagraphLayout.h251 inline const LEGlyphID *getGlyphs() const;
695 inline const LEGlyphID *ParagraphLayout::VisualRun::getGlyphs() const in getGlyphs() function
/external/icu/icu4c/source/test/perf/leperf/
Dleperf.cpp46 engine->getGlyphs(glyphs, status); in iterate()
/external/icu/icu4c/source/layoutex/
Dplayout.cpp267 return vr->getGlyphs(); in pl_getVisualRunGlyphs()
DParagraphLayout.cpp462 engine->getGlyphs(fStyleRunInfo[run].glyphs, layoutStatus); in ParagraphLayout()
/external/icu/icu4c/source/samples/layout/
Dparagraph.cpp241 const LEGlyphID *glyphs = visualRun->getGlyphs(); in draw()