HomeSort by relevance Sort by last modified time
    Searched defs:outChars (Results 1 - 5 of 5) sorted by null

  /external/icu/icu4c/source/layout/
ThaiLayoutEngine.cpp 58 // NOTE: this assumes that ThaiShaping::compose will allocate the outChars array...
70 LEUnicode *outChars;
75 outChars = LE_NEW_ARRAY(LEUnicode, count * 2);
77 if (outChars == NULL) {
85 LE_DELETE_ARRAY(outChars);
90 glyphCount = ThaiShaping::compose(chars, offset, count, fGlyphSet, fErrorChar, outChars, glyphStorage);
91 mapCharsToGlyphs(outChars, 0, glyphCount, FALSE, FALSE, glyphStorage, success);
93 LE_DELETE_ARRAY(outChars);
LayoutEngine.cpp 199 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success)
287 outChars = LE_NEW_ARRAY(LEUnicode, outCharCount);
289 if (outChars == NULL) {
296 outChars[out] = (LEUnicode) LE_GET_GLYPH(fakeGlyphStorage[i]);
317 LEUnicode *outChars = NULL;
318 le_int32 outCharCount = characterProcessing(chars, offset, count, max, rightToLeft, outChars, glyphStorage, success);
320 if (outChars != NULL) {
321 mapCharsToGlyphs(outChars, 0, outCharCount, rightToLeft, rightToLeft, glyphStorage, success);
322 LE_DELETE_ARRAY(outChars); // FIXME: a subclass may have allocated this, in which case this delete might not work...
OpenTypeLayoutEngine.cpp 283 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success)
300 outChars = LE_NEW_ARRAY(LEUnicode, count);
302 if (outChars == NULL) {
308 LE_DELETE_ARRAY(outChars);
312 CanonShaping::reorderMarks(&chars[offset], count, rightToLeft, outChars, glyphStorage);
405 LEUnicode *outChars = NULL;
418 outCharCount = characterProcessing(chars, offset, count, max, rightToLeft, outChars, fakeGlyphStorage, success);
424 if (outChars != NULL) {
426 glyphProcessing(outChars, 0, outCharCount, outCharCount, rightToLeft, fakeGlyphStorage, success);
427 LE_DELETE_ARRAY(outChars); // FIXME: a subclass may have allocated this, in which case this delete might not work..
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
OldFileWriterTest.java 135 char[] outChars = new char[capacity];
136 int outCount = reader.read(outChars);
137 String outStr = new String(outChars, 0, outCount);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
OutputStreamWriterTest.java 440 char[] outChars = new char[capacity];
441 int outCount = reader.read(outChars);
442 String outStr = new String(outChars, 0, outCount);

Completed in 103 milliseconds