Home | History | Annotate | Download | only in charset

Lines Matching refs:ch

46             byte ch;
52 ch = source.get();
54 target.put((char) (ch & 0xff));
73 int i, ch = 0;
80 ch = sourceArray[i];
81 if ((ch & 0xff00) == 0) {
82 targetArray[i + offset] = (byte) ch;
93 if ((ch & 0xff00) != 0) {
96 return encodeMalformedOrUnmappable(source, ch, flush);
103 int ch;
111 ch = source.get();
112 if ((ch & 0xff00) == 0) {
114 target.put((byte) ch);
123 return encodeMalformedOrUnmappable(source, ch, flush);