• Home
  • Raw
  • Download

Lines Matching refs:engine

58     LayoutEngine *engine = LayoutEngine::layoutEngineFactory(font, arabScriptCode, -1, status);  in ParamTest()  local
64 glyphCount = engine->getGlyphCount(); in ParamTest()
73 engine->getGlyphs(NULL, status); in ParamTest()
80 engine->getGlyphs(glyphs, status); in ParamTest()
87 engine->getGlyphs(NULL, 0xFF000000L, status); in ParamTest()
94 engine->getGlyphs(glyphs, 0xFF000000L, status); in ParamTest()
101 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()
129 engine->getGlyphPositions(NULL, status); in ParamTest()
136 engine->getGlyphPositions(positions, status); in ParamTest()
147 glyphCount = engine->layoutChars(NULL, 0, 0, 0, FALSE, 0.0, 0.0, status); in ParamTest()
160 glyphCount = engine->layoutChars(chars, -1, 6, 20, TRUE, 0.0, 0.0, status); in ParamTest()
167 glyphCount = engine->layoutChars(chars, 8, -1, 20, TRUE, 0.0, 0.0, status); in ParamTest()
174 glyphCount = engine->layoutChars(chars, 8, 6, -1, TRUE, 0.0, 0.0, status); in ParamTest()
181 glyphCount = engine->layoutChars(chars, 8, 6, 10, TRUE, 0.0, 0.0, status); in ParamTest()
190 glyphCount = engine->layoutChars(chars, 8, 6, 20, TRUE, 0.0, 0.0, status); in ParamTest()
197 engine->getGlyphPosition(-1, x, y, status); in ParamTest()
204 engine->getGlyphPosition(glyphCount + 1, x, y, status); in ParamTest()
211 delete engine; in ParamTest()
221 LayoutEngine *engine = NULL; in FactoryTest() local
225 engine = LayoutEngine::layoutEngineFactory(font, scriptCode, -1, status); in FactoryTest()
231 delete engine; in FactoryTest()
243 LayoutEngine *engine = LayoutEngine::layoutEngineFactory(font, arabScriptCode, -1, status); in AccessTest() local
259 glyphCount = engine->layoutChars(chars, 8, 6, 20, TRUE, 0.0, 0.0, status); in AccessTest()
266 engine->getGlyphs(glyphs, status); in AccessTest()
267 engine->getCharIndices(indices, status); in AccessTest()
268 engine->getGlyphPositions(positions, status); in AccessTest()
275 engine->getGlyphs(extraBitGlyphs, 0xFF000000L, status); in AccessTest()
290 engine->getCharIndices(biasedIndices, 1024, status); in AccessTest()
308 engine->getGlyphPosition(glyph, x, y, status); in AccessTest()
323 delete engine; in AccessTest()
617 LayoutEngine *engine = NULL; in DataDrivenTest() local
691engine = LayoutEngine::layoutEngineFactory(font, scriptCode, languageCode, typoFlags, success); in DataDrivenTest()
698 …actual.glyphCount = engine->layoutChars(text.getBuffer(), 0, charCount, charCount, getRTL(text), 0… in DataDrivenTest()
704 engine->getGlyphs(actual.glyphs, success); in DataDrivenTest()
705 engine->getCharIndices(actual.indices, success); in DataDrivenTest()
706 engine->getGlyphPositions(actual.positions, success); in DataDrivenTest()
714 delete engine; in DataDrivenTest()