Lines Matching refs:indices
60 le_int32 *indices = NULL; in ParamTest() local
70 indices = NEW_ARRAY(le_int32, glyphCount + 10); in ParamTest()
108 engine->getCharIndices(indices, status); in ParamTest()
122 engine->getCharIndices(indices, 1024, status); in ParamTest()
143 DELETE_ARRAY(indices); in ParamTest()
246 le_int32 biasedIndices[6], indices[6], glyph; in AccessTest() local
267 engine->getCharIndices(indices, status); in AccessTest()
296 if (biasedIndices[glyph] != (indices[glyph] + 1024)) { in AccessTest()
298 glyph, glyph, biasedIndices[glyph], indices[glyph]); in AccessTest()
348 if (actual->indices[i] != expected->indices[i]) { in compareResults()
350 testID, i, expected->indices[i], actual->indices[i]); in compareResults()
597 UnicodeString text, glyphs, indices, positions; in DataDrivenTest() local
643 indices = element->getText(TRUE); in DataDrivenTest()
665 expected.indices = (le_int32 *) getHexArray(indices, indexCount); in DataDrivenTest()
686 actual.indices = NEW_ARRAY(le_int32, actual.glyphCount); in DataDrivenTest()
690 engine->getCharIndices(actual.indices, success); in DataDrivenTest()
696 DELETE_ARRAY(actual.indices); in DataDrivenTest()
703 DELETE_ARRAY(expected.indices); in DataDrivenTest()