Lines Matching refs:le
33 LayoutEngine *le = (LayoutEngine *) engine; in le_close() local
35 delete le; in le_close()
49 LayoutEngine *le = (LayoutEngine *) engine; in le_layoutChars() local
51 if (le == NULL) { in le_layoutChars()
56 return le->layoutChars(chars, offset, count, max, rightToLeft, x, y, *success); in le_layoutChars()
63 LayoutEngine *le = (LayoutEngine *) engine; in le_getGlyphCount() local
65 if (le == NULL) { in le_getGlyphCount()
70 return le->getGlyphCount(); in le_getGlyphCount()
78 LayoutEngine *le = (LayoutEngine *) engine; in le_getGlyphs() local
80 if (le == NULL) { in le_getGlyphs()
85 le->getGlyphs(glyphs, *success); in le_getGlyphs()
93 LayoutEngine *le = (LayoutEngine *) engine; in le_getCharIndices() local
95 if (le == NULL) { in le_getCharIndices()
100 le->getCharIndices(charIndices, *success); in le_getCharIndices()
109 LayoutEngine *le = (LayoutEngine *) engine; in le_getCharIndicesWithBase() local
111 if (le == NULL) { in le_getCharIndicesWithBase()
116 le->getCharIndices(charIndices, indexBase, *success); in le_getCharIndicesWithBase()
124 LayoutEngine *le = (LayoutEngine *) engine; in le_getGlyphPositions() local
126 if (le == NULL) { in le_getGlyphPositions()
131 le->getGlyphPositions(positions, *success); in le_getGlyphPositions()
141 LayoutEngine *le = (LayoutEngine *) engine; in le_getGlyphPosition() local
143 if (le == NULL) { in le_getGlyphPosition()
148 le->getGlyphPosition(glyphIndex, *x, *y, *success); in le_getGlyphPosition()
155 LayoutEngine *le = (LayoutEngine *) engine; in le_reset() local
157 if (le == NULL) { in le_reset()
162 le->reset(); in le_reset()