Home | History | Annotate | Download | only in uconv

Lines Matching refs:chunk

426     // and include it in the chunk
442 return 0; // complete the last chunk
461 return -1; // LF may be in the next chunk
463 ++u; // include the LF in this chunk
470 return -1; // continue collecting the chunk
610 UnicodeString chunk; // One chunk of the text being collected for transformation.
863 // The end-of-chunk characters are completely included in the
870 chunkLimit = getChunkLimit(chunk, u);
876 // complete the chunk and transform it
877 chunk.append(u, 0, chunkLimit);
879 t->transliterate(chunk);
881 // append the transformation result to the result and empty the chunk
882 out.append(chunk);
883 chunk.remove();
885 // continue collecting the chunk
886 chunk.append(u);