HomeSort by relevance Sort by last modified time
    Searched refs:outCharCount (Results 1 - 6 of 6) sorted by null

  /external/icu/icu4c/source/layout/
HangulLayoutEngine.cpp 238 le_int32 outCharCount = 0;
245 le_int32 outStart = outCharCount;
257 outChars[outCharCount] = trail;
258 glyphStorage.setCharIndex(outCharCount, i-offset, success);
259 glyphStorage.setAuxData(outCharCount++, nullFeatures, success);
264 outChars[outCharCount] = lead;
265 glyphStorage.setCharIndex(outCharCount, i-offset, success);
266 glyphStorage.setAuxData(outCharCount++, ljmoFeatures, success);
270 outChars[outCharCount] = vowel;
271 glyphStorage.setCharIndex(outCharCount, i-offset, success)
    [all...]
KhmerLayoutEngine.cpp 75 le_int32 outCharCount = KhmerReordering::reorder(&chars[offset], count, fScriptCode, outChars, glyphStorage);
77 glyphStorage.adoptGlyphCount(outCharCount);
78 return outCharCount;
TibetanLayoutEngine.cpp 81 le_int32 outCharCount = TibetanReordering::reorder(&chars[offset], count, fScriptCode, outChars, glyphStorage);
83 glyphStorage.adoptGlyphCount(outCharCount);
84 return outCharCount;
IndicLayoutEngine.cpp 119 le_int32 outCharCount;
121 outCharCount = IndicReordering::v2process(&chars[offset], count, fScriptCode, outChars, glyphStorage);
123 outCharCount = IndicReordering::reorder(&chars[offset], count, fScriptCode, outChars, glyphStorage, &fMPreFixups, success);
131 glyphStorage.adoptGlyphCount(outCharCount);
132 return outCharCount;
LayoutEngine.cpp 213 le_int32 i, dir = 1, out = 0, outCharCount = count;
270 outCharCount = canonGSUBTable->process(canonGSUBTable, fakeGlyphStorage, rightToLeft, scriptTag, langSysTag, (const GlyphDefinitionTableHeader*)NULL, substitutionFilter, canonFeatureMap, canonFeatureMapCount, FALSE, success);
277 out = (rightToLeft? outCharCount - 1 : 0);
287 outChars = LE_NEW_ARRAY(LEUnicode, outCharCount);
295 for (i = 0; i < outCharCount; i += 1, out += dir) {
302 return outCharCount;
318 le_int32 outCharCount = characterProcessing(chars, offset, count, max, rightToLeft, outChars, glyphStorage, success);
321 mapCharsToGlyphs(outChars, 0, outCharCount, rightToLeft, rightToLeft, glyphStorage, success);
OpenTypeLayoutEngine.cpp 407 le_int32 outCharCount, outGlyphCount;
418 outCharCount = characterProcessing(chars, offset, count, max, rightToLeft, outChars, fakeGlyphStorage, success);
426 glyphProcessing(outChars, 0, outCharCount, outCharCount, rightToLeft, fakeGlyphStorage, success);
428 //adjustGlyphs(outChars, 0, outCharCount, rightToLeft, fakeGlyphs, fakeGlyphCount);

Completed in 63 milliseconds