• Home
  • Raw
  • Download

Lines Matching refs:engine

41     le_engine *engine = le_create(font, arabScriptCode, -1, 0, &status);  in ParamTest()  local
55 glyphCount = le_getGlyphCount(engine, &status); in ParamTest()
64 le_getGlyphs(engine, NULL, &status); in ParamTest()
71 le_getGlyphs(engine, glyphs, &status); in ParamTest()
78 le_getCharIndices(engine, NULL, &status); in ParamTest()
85 le_getCharIndices(engine, indices, &status); in ParamTest()
92 le_getCharIndicesWithBase(engine, NULL, 1024, &status); in ParamTest()
99 le_getCharIndicesWithBase(engine, indices, 1024, &status); in ParamTest()
106 le_getGlyphPositions(engine, NULL, &status); in ParamTest()
113 le_getGlyphPositions(engine, positions, &status); in ParamTest()
124 glyphCount = le_layoutChars(engine, NULL, 0, 0, 0, FALSE, 0.0, 0.0, &status); in ParamTest()
131 glyphCount = le_layoutChars(engine, chars, -1, 6, 20, TRUE, 0.0, 0.0, &status); in ParamTest()
138 glyphCount = le_layoutChars(engine, chars, 8, -1, 20, TRUE, 0.0, 0.0, &status); in ParamTest()
145 glyphCount = le_layoutChars(engine, chars, 8, 6, -1, TRUE, 0.0, 0.0, &status); in ParamTest()
152 glyphCount = le_layoutChars(engine, chars, 8, 6, 10, TRUE, 0.0, 0.0, &status); in ParamTest()
159 glyphCount = le_layoutChars(engine, chars, 8, 6, 20, TRUE, 0.0, 0.0, &status); in ParamTest()
166 le_getGlyphPosition(engine, -1, &x, &y, &status); in ParamTest()
173 le_getGlyphPosition(engine, glyphCount + 1, &x, &y, &status); in ParamTest()
180 le_close(engine); in ParamTest()
190 le_engine *engine = NULL; in FactoryTest() local
195 engine = le_create(font, scriptCode, -1, 0, &status); in FactoryTest()
201 le_close(engine); in FactoryTest()
213 le_engine *engine =le_create(font, arabScriptCode, -1, 0, &status); in AccessTest() local
229 glyphCount = le_layoutChars(engine, chars, 8, 6, 20, TRUE, 0.0, 0.0, &status); in AccessTest()
236 le_getGlyphs(engine, glyphs, &status); in AccessTest()
237 le_getCharIndices(engine, indices, &status); in AccessTest()
238 le_getGlyphPositions(engine, positions, &status); in AccessTest()
246 le_getCharIndicesWithBase(engine, biasedIndices, 1024, &status); in AccessTest()
264 le_getGlyphPosition(engine, glyph, &x, &y, &status); in AccessTest()
279 le_close(engine); in AccessTest()
449 le_engine *engine; in doTestCase() local
463 engine = le_create(font, scriptCode, languageCode, typoFlags, &status); in doTestCase()
470 …actual.glyphCount = le_layoutChars(engine, text, 0, charCount, charCount, getRTL(text, charCount),… in doTestCase()
476 le_getGlyphs(engine, actual.glyphs, &status); in doTestCase()
477 le_getCharIndices(engine, actual.indices, &status); in doTestCase()
478 le_getGlyphPositions(engine, actual.positions, &status); in doTestCase()
486 le_close(engine); in doTestCase()