Lines Matching refs:positions
44 float *positions = NULL; in ParamTest() local
62 positions = NEW_ARRAY(float, glyphCount + 10); in ParamTest()
113 le_getGlyphPositions(engine, positions, &status); in ParamTest()
119 DELETE_ARRAY(positions); in ParamTest()
217 float positions[6 * 2 + 2]; in AccessTest() local
238 le_getGlyphPositions(engine, positions, &status); in AccessTest()
271 if (x != positions[glyph*2] || y != positions[glyph*2 + 1]) { in AccessTest()
273 glyph, x, y, positions[glyph*2], positions[glyph*2 + 1]); in AccessTest()
312 double xError = uprv_fabs(actual->positions[i * 2] - expected->positions[i * 2]); in compareResults()
313 double yError = uprv_fabs(actual->positions[i * 2 + 1] - expected->positions[i * 2 + 1]); in compareResults()
317 testID, i, expected->positions[i * 2], actual->positions[i * 2]); in compareResults()
327 testID, i, expected->positions[i * 2 + 1], actual->positions[i * 2 + 1]); in compareResults()
474 actual.positions = NEW_ARRAY(float, actual.glyphCount * 2 + 2); in doTestCase()
478 le_getGlyphPositions(engine, actual.positions, &status); in doTestCase()
482 DELETE_ARRAY(actual.positions); in doTestCase()