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

/openjdk7/jdk/src/share/native/sun/font/layout/
H A DKhmerLayoutEngine.cpp100 le_int32 outCharCount = KhmerReordering::reorder(&chars[offset], count, fScriptCode, outChars, glyphStorage); local
102 glyphStorage.adoptGlyphCount(outCharCount);
103 return outCharCount;
H A DTibetanLayoutEngine.cpp106 le_int32 outCharCount = TibetanReordering::reorder(&chars[offset], count, fScriptCode, outChars, glyphStorage); local
108 glyphStorage.adoptGlyphCount(outCharCount);
109 return outCharCount;
H A DIndicLayoutEngine.cpp144 le_int32 outCharCount; local
146 outCharCount = IndicReordering::v2process(&chars[offset], count, fScriptCode, outChars, glyphStorage);
148 outCharCount = IndicReordering::reorder(&chars[offset], count, fScriptCode, outChars, glyphStorage, &fMPreFixups, success);
156 glyphStorage.adoptGlyphCount(outCharCount);
157 return outCharCount;
H A DHangulLayoutEngine.cpp263 le_int32 outCharCount = 0; local
270 le_int32 outStart = outCharCount;
282 outChars[outCharCount] = trail;
283 glyphStorage.setCharIndex(outCharCount, i-offset, success);
284 glyphStorage.setAuxData(outCharCount++, nullFeatures, success);
289 outChars[outCharCount] = lead;
290 glyphStorage.setCharIndex(outCharCount, i-offset, success);
291 glyphStorage.setAuxData(outCharCount++, ljmoFeatures, success);
295 outChars[outCharCount] = vowel;
296 glyphStorage.setCharIndex(outCharCount,
[all...]
H A DLayoutEngine.cpp269 le_int32 i, dir = 1, out = 0, outCharCount = count; local
326 outCharCount = canonGSUBTable->process(canonGSUBTable, fakeGlyphStorage, rightToLeft, scriptTag, langSysTag, (const GlyphDefinitionTableHeader*)NULL, substitutionFilter, canonFeatureMap, canonFeatureMapCount, FALSE, success);
333 out = (rightToLeft? outCharCount - 1 : 0);
343 outChars = LE_NEW_ARRAY(LEUnicode, outCharCount);
351 for (i = 0; i < outCharCount; i += 1, out += dir) {
358 return outCharCount;
374 le_int32 outCharCount = characterProcessing(chars, offset, count, max, rightToLeft, outChars, glyphStorage, success); local
377 mapCharsToGlyphs(outChars, 0, outCharCount, rightToLeft, rightToLeft, glyphStorage, success);
H A DOpenTypeLayoutEngine.cpp432 le_int32 outCharCount, outGlyphCount; local
443 outCharCount = characterProcessing(chars, offset, count, max, rightToLeft, outChars, fakeGlyphStorage, success);
451 glyphProcessing(outChars, 0, outCharCount, outCharCount, rightToLeft, fakeGlyphStorage, success);
453 //adjustGlyphs(outChars, 0, outCharCount, rightToLeft, fakeGlyphs, fakeGlyphCount);

Completed in 38 milliseconds