Lines Matching refs:le_int32
65 void LEGlyphStorage::allocateGlyphArray(le_int32 initialGlyphCount, le_bool rightToLeft, LEErrorCod… in allocateGlyphArray()
87 fCharIndices = LE_NEW_ARRAY(le_int32, fGlyphCount); in allocateGlyphArray()
97 le_int32 i, count = fGlyphCount, dir = 1, out = 0; in allocateGlyphArray()
126 le_int32 LEGlyphStorage::allocatePositions(LEErrorCode &success) in allocatePositions()
148 le_int32 LEGlyphStorage::allocateAuxData(LEErrorCode &success) in allocateAuxData()
169 void LEGlyphStorage::getCharIndices(le_int32 charIndices[], le_int32 indexBase, LEErrorCode &succes… in getCharIndices()
171 le_int32 i; in getCharIndices()
192 void LEGlyphStorage::getCharIndices(le_int32 charIndices[], LEErrorCode &success) const in getCharIndices()
214 le_int32 i; in getGlyphs()
254 LEGlyphID LEGlyphStorage::getGlyphID(le_int32 glyphIndex, LEErrorCode &success) const in getGlyphID()
273 void LEGlyphStorage::setGlyphID(le_int32 glyphIndex, LEGlyphID glyphID, LEErrorCode &success) in setGlyphID()
292 le_int32 LEGlyphStorage::getCharIndex(le_int32 glyphIndex, LEErrorCode &success) const in getCharIndex()
311 void LEGlyphStorage::setCharIndex(le_int32 glyphIndex, le_int32 charIndex, LEErrorCode &success) in setCharIndex()
349 le_uint32 LEGlyphStorage::getAuxData(le_int32 glyphIndex, LEErrorCode &success) const in getAuxData()
368 void LEGlyphStorage::setAuxData(le_int32 glyphIndex, le_uint32 auxData, LEErrorCode &success) in setAuxData()
406 void LEGlyphStorage::getGlyphPosition(le_int32 glyphIndex, float &x, float &y, LEErrorCode &success… in getGlyphPosition()
426 void LEGlyphStorage::setPosition(le_int32 glyphIndex, float x, float y, LEErrorCode &success) in setPosition()
441 void LEGlyphStorage::adjustPosition(le_int32 glyphIndex, float xAdjust, float yAdjust, LEErrorCode … in adjustPosition()
508 void LEGlyphStorage::adoptGlyphCount(le_int32 newGlyphCount) in adoptGlyphCount()
515 void LEGlyphStorage::moveGlyph(le_int32 fromPosition, le_int32 toPosition, le_uint32 marker ) in moveGlyph()
521 le_int32 holdCharIndex = getCharIndex(fromPosition,success); in moveGlyph()
525 for ( le_int32 i = fromPosition ; i < toPosition ; i++ ) { in moveGlyph()
531 for ( le_int32 i = toPosition ; i > fromPosition ; i-- ) { in moveGlyph()
546 LEGlyphID *LEGlyphStorage::insertGlyphs(le_int32 atIndex, le_int32 insertCount) in insertGlyphs()
553 LEGlyphID *LEGlyphStorage::insertGlyphs(le_int32 atIndex, le_int32 insertCount, LEErrorCode& succe… in insertGlyphs()
558 le_int32 LEGlyphStorage::applyInsertions() in applyInsertions()
560 le_int32 growAmount = fInsertionList->getGrowAmount(); in applyInsertions()
566 le_int32 newGlyphCount = fGlyphCount + growAmount; in applyInsertions()
575 le_int32 *newCharIndices = (le_int32 *) LE_GROW_ARRAY(fCharIndices, newGlyphCount); in applyInsertions()
615 le_bool LEGlyphStorage::applyInsertion(le_int32 atPosition, le_int32 count, LEGlyphID newGlyphs[]) in applyInsertion()
632 le_int32 src = fSrcIndex, dest = fDestIndex; in applyInsertion()
638 for (le_int32 i = count - 1; i >= 0; i -= 1) { in applyInsertion()
651 for (le_int32 i = count - 1; i >= 0; i -= 1) { in applyInsertion()