Home | History | Annotate | Download | only in layout

Lines Matching refs:success

145      * @param success - set to an error code if the operation fails
149 void getGlyphs(LEGlyphID glyphs[], LEErrorCode &success) const;
159 * @param success - set to an error code if the operation fails
163 void getGlyphs(le_uint32 glyphs[], le_uint32 extraBits, LEErrorCode &success) const;
171 * @param success - set to an error code if the operation fails
175 void getCharIndices(le_int32 charIndices[], LEErrorCode &success) const;
184 * @param success - set to an error code if the operation fails
188 void getCharIndices(le_int32 charIndices[], le_int32 indexBase, LEErrorCode &success) const;
197 * @param success - set to an error code if the operation fails
201 void getGlyphPositions(float positions[], LEErrorCode &success) const;
213 * @param success - set to an error code if the operation fails
217 void getGlyphPosition(le_int32 glyphIndex, float &x, float &y, LEErrorCode &success) const;
226 * @param success set to an error code if the storage cannot be allocated of if the initial
231 void allocateGlyphArray(le_int32 initialGlyphCount, le_bool rightToLeft, LEErrorCode &success);
237 * @param success set to an error code if the positions array cannot be allocated.
243 le_int32 allocatePositions(LEErrorCode &success);
248 * @param success set to an error code if the aulillary data array cannot be allocated.
254 le_int32 allocateAuxData(LEErrorCode &success);
260 * @param success set to an error code if the data cannot be copied
264 void getAuxData(le_uint32 auxData[], LEErrorCode &success) const;
270 * @param success set to an error code if the glyph ID cannot be retrieved.
276 LEGlyphID getGlyphID(le_int32 glyphIndex, LEErrorCode &success) const;
282 * @param success set to an error code if the char index cannot be retrieved.
288 le_int32 getCharIndex(le_int32 glyphIndex, LEErrorCode &success) const;
295 * @param success set to an error code if the auxillary data cannot be retrieved.
301 le_uint32 getAuxData(le_int32 glyphIndex, LEErrorCode &success) const;
324 * @param success set to an error code if the auxillary data cannot be retrieved.
332 LEGlyphID *insertGlyphs(le_int32 atIndex, le_int32 insertCount, LEErrorCode& success);
388 * @param success will be set to an error code if the glyph ID cannot be set.
392 void setGlyphID(le_int32 glyphIndex, LEGlyphID glyphID, LEErrorCode &success);
399 * @param success will be set to an error code if the char index cannot be set.
403 void setCharIndex(le_int32 glyphIndex, le_int32 charIndex, LEErrorCode &success);
411 * @param success will be set to an error code if the position cannot be set.
415 void setPosition(le_int32 glyphIndex, float x, float y, LEErrorCode &success);
423 * @param success will be set to an error code if the glyph's position cannot be adjusted.
427 void adjustPosition(le_int32 glyphIndex, float xAdjust, float yAdjust, LEErrorCode &success);
434 * @param success will be set to an error code if the auxillary data cannot be set.
438 void setAuxData(le_int32 glyphIndex, le_uint32 auxData, LEErrorCode &success);