Home | History | Annotate | Download | only in letest

Lines Matching full:engine

58     LayoutEngine *engine = LayoutEngine::layoutEngineFactory(font, arabScriptCode, -1, status);
64 glyphCount = engine->getGlyphCount();
73 engine->getGlyphs(NULL, status);
80 engine->getGlyphs(glyphs, status);
87 engine->getGlyphs(NULL, 0xFF000000L, status);
94 engine->getGlyphs(glyphs, 0xFF000000L, status);
101 engine->getCharIndices(NULL, status);
108 engine->getCharIndices(indices, status);
115 engine->getCharIndices(NULL, 1024, status);
122 engine->getCharIndices(indices, 1024, status);
129 engine->getGlyphPositions(NULL, status);
136 engine->getGlyphPositions(positions, status);
147 glyphCount = engine->layoutChars(NULL, 0, 0, 0, FALSE, 0.0, 0.0, status);
160 glyphCount = engine->layoutChars(chars, -1, 6, 20, TRUE, 0.0, 0.0, status);
167 glyphCount = engine->layoutChars(chars, 8, -1, 20, TRUE, 0.0, 0.0, status);
174 glyphCount = engine->layoutChars(chars, 8, 6, -1, TRUE, 0.0, 0.0, status);
181 glyphCount = engine->layoutChars(chars, 8, 6, 10, TRUE, 0.0, 0.0, status);
190 glyphCount = engine->layoutChars(chars, 8, 6, 20, TRUE, 0.0, 0.0, status);
197 engine->getGlyphPosition(-1, x, y, status);
204 engine->getGlyphPosition(glyphCount + 1, x, y, status);
211 delete engine;
221 LayoutEngine *engine = NULL;
225 engine = LayoutEngine::layoutEngineFactory(font, scriptCode, -1, status);
231 delete engine;
243 LayoutEngine *engine = LayoutEngine::layoutEngineFactory(font, arabScriptCode, -1, status);
259 glyphCount = engine->layoutChars(chars, 8, 6, 20, TRUE, 0.0, 0.0, status);
266 engine->getGlyphs(glyphs, status);
267 engine->getCharIndices(indices, status);
268 engine->getGlyphPositions(positions, status);
275 engine->getGlyphs(extraBitGlyphs, 0xFF000000L, status);
290 engine->getCharIndices(biasedIndices, 1024, status);
308 engine->getGlyphPosition(glyph, x, y, status);
323 delete engine;
616 LayoutEngine *engine = NULL;
690 engine = LayoutEngine::layoutEngineFactory(font, scriptCode, languageCode, typoFlags, success);
697 actual.glyphCount = engine->layoutChars(text.getBuffer(), 0, charCount, charCount, getRTL(text), 0, 0, success);
703 engine->getGlyphs(actual.glyphs, success);
704 engine->getCharIndices(actual.indices, success);
705 engine->getGlyphPositions(actual.positions, success);
713 delete engine;