Home
last modified time | relevance | path

Searched refs:getCharIndices (Results 1 – 8 of 8) sorted by relevance

/external/icu/icu4c/source/layout/
DLEGlyphStorage.h175 void getCharIndices(le_int32 charIndices[], LEErrorCode &success) const;
188 void getCharIndices(le_int32 charIndices[], le_int32 indexBase, LEErrorCode &success) const;
Dloengine.cpp100 le->getCharIndices(charIndices, *success); in le_getCharIndices()
116 le->getCharIndices(charIndices, indexBase, *success); in le_getCharIndicesWithBase()
DLayoutEngine.h424 void getCharIndices(le_int32 charIndices[], LEErrorCode &success) const;
437 void getCharIndices(le_int32 charIndices[], le_int32 indexBase, LEErrorCode &success) const;
DLayoutEngine.cpp166 void LayoutEngine::getCharIndices(le_int32 charIndices[], le_int32 indexBase, LEErrorCode &success)… in getCharIndices() function in LayoutEngine
168 fGlyphStorage->getCharIndices(charIndices, indexBase, success); in getCharIndices()
171 void LayoutEngine::getCharIndices(le_int32 charIndices[], LEErrorCode &success) const in getCharIndices() function in LayoutEngine
173 fGlyphStorage->getCharIndices(charIndices, success); in getCharIndices()
DLEGlyphStorage.cpp169 void LEGlyphStorage::getCharIndices(le_int32 charIndices[], le_int32 indexBase, LEErrorCode &succes… in getCharIndices() function in LEGlyphStorage
192 void LEGlyphStorage::getCharIndices(le_int32 charIndices[], LEErrorCode &success) const in getCharIndices() function in LEGlyphStorage
/external/icu/icu4c/source/test/letest/
Dletest.cpp101 engine->getCharIndices(NULL, status); in ParamTest()
108 engine->getCharIndices(indices, status); in ParamTest()
115 engine->getCharIndices(NULL, 1024, status); in ParamTest()
122 engine->getCharIndices(indices, 1024, status); in ParamTest()
267 engine->getCharIndices(indices, status); in AccessTest()
290 engine->getCharIndices(biasedIndices, 1024, status); in AccessTest()
705 engine->getCharIndices(actual.indices, success); in DataDrivenTest()
Dgendata.cpp321 engine->getCharIndices(indices, leStatus); in main()
/external/icu/icu4c/source/layoutex/
DParagraphLayout.cpp474 engine->getCharIndices(&fGlyphToCharMap[glyphBase], runStart, layoutStatus); in ParagraphLayout()