Lines Matching refs:success
22 …fontInstance, le_int32 scriptCode, le_int32 languageCode, le_int32 typoFlags, LEErrorCode &success) in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
23 : LayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, success) in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
59 …2 count, le_int32 max, le_bool /*rightToLeft*/, LEGlyphStorage &glyphStorage, LEErrorCode &success) in computeGlyphs() argument
61 if (LE_FAILURE(success)) { in computeGlyphs()
66 success = LE_ILLEGAL_ARGUMENT_ERROR; in computeGlyphs()
78 success = LE_MEMORY_ALLOCATION_ERROR; in computeGlyphs()
82 glyphStorage.allocateGlyphArray(count * 2, FALSE, success); in computeGlyphs()
84 if (LE_FAILURE(success)) { in computeGlyphs()
86 success = LE_MEMORY_ALLOCATION_ERROR; in computeGlyphs()
91 mapCharsToGlyphs(outChars, 0, glyphCount, FALSE, FALSE, glyphStorage, success); in computeGlyphs()
101 LEGlyphStorage &glyphStorage, LEErrorCode &success) in adjustGlyphPositions() argument
103 if (LE_FAILURE(success)) { in adjustGlyphPositions()
108 success = LE_ILLEGAL_ARGUMENT_ERROR; in adjustGlyphPositions()
113 LETableReference kernTable(fFontInstance, LE_KERN_TABLE_TAG, success); in adjustGlyphPositions()
114 KernTable kt(kernTable, success); in adjustGlyphPositions()
115 kt.process(glyphStorage, success); in adjustGlyphPositions()