Lines Matching refs:outCharCount

238     le_int32 outCharCount = 0;  in characterProcessing()  local
245 le_int32 outStart = outCharCount; in characterProcessing()
257 outChars[outCharCount] = trail; in characterProcessing()
258 glyphStorage.setCharIndex(outCharCount, i-offset, success); in characterProcessing()
259 glyphStorage.setAuxData(outCharCount++, nullFeatures, success); in characterProcessing()
264 outChars[outCharCount] = lead; in characterProcessing()
265 glyphStorage.setCharIndex(outCharCount, i-offset, success); in characterProcessing()
266 glyphStorage.setAuxData(outCharCount++, ljmoFeatures, success); in characterProcessing()
270 outChars[outCharCount] = vowel; in characterProcessing()
271 glyphStorage.setCharIndex(outCharCount, i-offset, success); in characterProcessing()
272 glyphStorage.setAuxData(outCharCount++, vjmoFeatures, success); in characterProcessing()
276 outChars[outCharCount] = trail; in characterProcessing()
277 glyphStorage.setCharIndex(outCharCount, i-offset, success); in characterProcessing()
278 glyphStorage.setAuxData(outCharCount++, tjmoFeatures, success); in characterProcessing()
293 le_int32 outLength = outCharCount - outStart; in characterProcessing()
317 outCharCount = outStart; in characterProcessing()
318 outChars[outCharCount] = syllable; in characterProcessing()
319 glyphStorage.setCharIndex(outCharCount, inStart-offset, success); in characterProcessing()
320 glyphStorage.setAuxData(outCharCount++, nullFeatures, success); in characterProcessing()
326 outChars[outCharCount] = 0xFFFF; in characterProcessing()
327 glyphStorage.setCharIndex(outCharCount, d - offset, success); in characterProcessing()
328 glyphStorage.setAuxData(outCharCount++, nullFeatures, success); in characterProcessing()
334 glyphStorage.adoptGlyphCount(outCharCount); in characterProcessing()
335 return outCharCount; in characterProcessing()