Home
last modified time | relevance | path

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

/external/icu4c/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.h396 void getCharIndices(le_int32 charIndices[], LEErrorCode &success) const;
409 void getCharIndices(le_int32 charIndices[], le_int32 indexBase, LEErrorCode &success) const;
DLayoutEngine.cpp149 void LayoutEngine::getCharIndices(le_int32 charIndices[], le_int32 indexBase, LEErrorCode &success)… in getCharIndices() function in LayoutEngine
151 fGlyphStorage->getCharIndices(charIndices, indexBase, success); in getCharIndices()
154 void LayoutEngine::getCharIndices(le_int32 charIndices[], LEErrorCode &success) const in getCharIndices() function in LayoutEngine
156 fGlyphStorage->getCharIndices(charIndices, success); in getCharIndices()
DLEGlyphStorage.cpp159 void LEGlyphStorage::getCharIndices(le_int32 charIndices[], le_int32 indexBase, LEErrorCode &succes… in getCharIndices() function in LEGlyphStorage
182 void LEGlyphStorage::getCharIndices(le_int32 charIndices[], LEErrorCode &success) const in getCharIndices() function in LEGlyphStorage
/external/icu4c/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()
690 engine->getCharIndices(actual.indices, success); in DataDrivenTest()
Dgendata.cpp249 engine->getCharIndices(indices, leStatus); in main()
/external/icu4c/layoutex/
DParagraphLayout.cpp388 engine->getCharIndices(&fGlyphToCharMap[glyphBase], runStart, layoutStatus); in ParagraphLayout()