Searched refs:outCharCount (Results 1 - 6 of 6) sorted by relevance

/macosx-10.10.1/ICU-531.30/icuSources/layout/
H A DHangulLayoutEngine.cpp238 le_int32 outCharCount = 0; local
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,
[all...]
H A DKhmerLayoutEngine.cpp75 le_int32 outCharCount = KhmerReordering::reorder(&chars[offset], count, fScriptCode, outChars, glyphStorage); local
77 glyphStorage.adoptGlyphCount(outCharCount);
78 return outCharCount;
H A DTibetanLayoutEngine.cpp81 le_int32 outCharCount = TibetanReordering::reorder(&chars[offset], count, fScriptCode, outChars, glyphStorage); local
83 glyphStorage.adoptGlyphCount(outCharCount);
84 return outCharCount;
H A DIndicLayoutEngine.cpp119 le_int32 outCharCount; local
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;
H A DLayoutEngine.cpp213 le_int32 i, dir = 1, out = 0, outCharCount = count; local
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); local
321 mapCharsToGlyphs(outChars, 0, outCharCount, rightToLeft, rightToLeft, glyphStorage, success);
H A DOpenTypeLayoutEngine.cpp407 le_int32 outCharCount, outGlyphCount; local
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 265 milliseconds