Searched refs:getGlyphs (Results 1 – 12 of 12) sorted by relevance
/external/icu/icu4c/source/layout/ |
D | LEGlyphStorage.h | 149 void getGlyphs(LEGlyphID glyphs[], LEErrorCode &success) const; 163 void getGlyphs(le_uint32 glyphs[], le_uint32 extraBits, LEErrorCode &success) const;
|
D | LayoutEngine.h | 398 void getGlyphs(LEGlyphID glyphs[], LEErrorCode &success) const; 412 virtual void getGlyphs(le_uint32 glyphs[], le_uint32 extraBits, LEErrorCode &success) const;
|
D | LayoutEngine.cpp | 177 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()
|
D | loengine.cpp | 85 le->getGlyphs(glyphs, *success); in le_getGlyphs()
|
D | LEGlyphStorage.cpp | 212 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/ |
D | letest.cpp | 73 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()
|
D | gendata.cpp | 320 engine->getGlyphs(glyphs, leStatus); in main()
|
/external/icu/icu4c/source/layoutex/layout/ |
D | ParagraphLayout.h | 251 inline const LEGlyphID *getGlyphs() const; 695 inline const LEGlyphID *ParagraphLayout::VisualRun::getGlyphs() const in getGlyphs() function
|
/external/icu/icu4c/source/test/perf/leperf/ |
D | leperf.cpp | 46 engine->getGlyphs(glyphs, status); in iterate()
|
/external/icu/icu4c/source/layoutex/ |
D | playout.cpp | 267 return vr->getGlyphs(); in pl_getVisualRunGlyphs()
|
D | ParagraphLayout.cpp | 462 engine->getGlyphs(fStyleRunInfo[run].glyphs, layoutStatus); in ParagraphLayout()
|
/external/icu/icu4c/source/samples/layout/ |
D | paragraph.cpp | 241 const LEGlyphID *glyphs = visualRun->getGlyphs(); in draw()
|