Lines Matching refs:glyphCount

49     le_int32   glyphCount = 0;  in ParamTest()  local
59 glyphCount = le_getGlyphCount(engine, &status); in ParamTest()
60 if (glyphCount != 0) { in ParamTest()
61 log_err("Calling getGlyphCount() on an empty layout returned %d.\n", glyphCount); in ParamTest()
64 glyphs = NEW_ARRAY(LEGlyphID, glyphCount + 10); in ParamTest()
65 indices = NEW_ARRAY(le_int32, glyphCount + 10); in ParamTest()
66 positions = NEW_ARRAY(float, glyphCount + 10); in ParamTest()
128 glyphCount = le_layoutChars(engine, NULL, 0, 0, 0, FALSE, 0.0, 0.0, &status); in ParamTest()
135 glyphCount = le_layoutChars(engine, chars, -1, 6, 20, TRUE, 0.0, 0.0, &status); in ParamTest()
142 glyphCount = le_layoutChars(engine, chars, 8, -1, 20, TRUE, 0.0, 0.0, &status); in ParamTest()
149 glyphCount = le_layoutChars(engine, chars, 8, 6, -1, TRUE, 0.0, 0.0, &status); in ParamTest()
156 glyphCount = le_layoutChars(engine, chars, 8, 6, 10, TRUE, 0.0, 0.0, &status); in ParamTest()
163 glyphCount = le_layoutChars(engine, chars, 8, 6, 20, TRUE, 0.0, 0.0, &status); in ParamTest()
177 le_getGlyphPosition(engine, glyphCount + 1, &x, &y, &status); in ParamTest()
218 le_int32 glyphCount; in AccessTest() local
233 glyphCount = le_layoutChars(engine, chars, 8, 6, 20, TRUE, 0.0, 0.0, &status); in AccessTest()
235 if (LE_FAILURE(status) || glyphCount != 6) { in AccessTest()
255 for (glyph = 0; glyph < glyphCount; glyph += 1) { in AccessTest()
265 for (glyph = 0; glyph <= glyphCount; glyph += 1) { in AccessTest()
293 if (actual->glyphCount != expected->glyphCount) { in compareResults()
295 testID, expected->glyphCount, actual->glyphCount); in compareResults()
299 for (i = 0; i < actual->glyphCount; i += 1) { in compareResults()
307 for (i = 0; i < actual->glyphCount; i += 1) { in compareResults()
315 for (i = 0; i <= actual->glyphCount; i += 1) { in compareResults()
474 …actual.glyphCount = le_layoutChars(engine, text, 0, charCount, charCount, getRTL(text, charCount),… in doTestCase()
476 actual.glyphs = NEW_ARRAY(LEGlyphID, actual.glyphCount); in doTestCase()
477 actual.indices = NEW_ARRAY(le_int32, actual.glyphCount); in doTestCase()
478 actual.positions = NEW_ARRAY(float, actual.glyphCount * 2 + 2); in doTestCase()
670 const le_int32 glyphCount = pl_getVisualRunGlyphCount(visualRun); in GlyphToCharTest() local
680 for(i = glyphCount - 1; i >= 0; i -= 1) { in GlyphToCharTest()
703 for(i = 0; i < glyphCount; i += 1) { in GlyphToCharTest()