OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:outChars
(Results
1 - 6
of
6
) sorted by null
/external/icu4c/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
);
OpenTypeLayoutEngine.cpp
179
LEUnicode *&
outChars
, LEGlyphStorage &glyphStorage, LEErrorCode &success)
196
outChars
= LE_NEW_ARRAY(LEUnicode, count);
198
if (
outChars
== NULL) {
204
LE_DELETE_ARRAY(
outChars
);
208
CanonShaping::reorderMarks(&chars[offset], count, rightToLeft,
outChars
, glyphStorage);
301
LEUnicode *
outChars
= NULL;
314
outCharCount = characterProcessing(chars, offset, count, max, rightToLeft,
outChars
, fakeGlyphStorage, success);
320
if (
outChars
!= NULL) {
321
fakeGlyphCount = glyphProcessing(
outChars
, 0, outCharCount, outCharCount, rightToLeft, fakeGlyphStorage, success);
322
LE_DELETE_ARRAY(
outChars
); // FIXME: a subclass may have allocated this, in which case this delete might not work..
[
all
...]
LayoutEngine.cpp
193
LEUnicode *&
outChars
, LEGlyphStorage &glyphStorage, LEErrorCode &success)
281
outChars
= LE_NEW_ARRAY(LEUnicode, outCharCount);
283
if (
outChars
== NULL) {
290
outChars
[out] = (LEUnicode) LE_GET_GLYPH(fakeGlyphStorage[i]);
311
LEUnicode *
outChars
= NULL;
312
le_int32 outCharCount = characterProcessing(chars, offset, count, max, rightToLeft,
outChars
, glyphStorage, success);
314
if (
outChars
!= NULL) {
315
mapCharsToGlyphs(
outChars
, 0, outCharCount, rightToLeft, rightToLeft, glyphStorage, success);
316
LE_DELETE_ARRAY(
outChars
); // FIXME: a subclass may have allocated this, in which case this delete might not work...
/dalvik/vm/
Ddm.c
301
u2*
outChars
;
323
outChars
= (u2*) &buf[0x08];
325
set2BE((u1*) (
outChars
++), *chars++);
359
u2*
outChars
= (u2*) &buf[0x08];
361
set2BE((u1*) (
outChars
++), *chars++);
/libcore/luni/src/test/java/tests/api/java/io/
FileWriterTest.java
370
char[]
outChars
= new char[capacity];
371
int outCount = reader.read(
outChars
);
372
String outStr = new String(
outChars
, 0, outCount);
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
OutputStreamWriterTest.java
443
char[]
outChars
= new char[capacity];
444
int outCount = reader.read(
outChars
);
445
String outStr = new String(
outChars
, 0, outCount);
Completed in 201 milliseconds