Home | History | Annotate | Download | only in dex

Lines Matching refs:ch

70             char ch = s.charAt(i);
71 if (ch != 0 && ch <= 127) { // U+0000 uses two bytes.
73 } else if (ch <= 2047) {
92 char ch = s.charAt(i);
93 if (ch != 0 && ch <= 127) { // U+0000 uses two bytes.
94 dst[offset++] = (byte) ch;
95 } else if (ch <= 2047) {
96 dst[offset++] = (byte) (0xc0 | (0x1f & (ch >> 6)));
97 dst[offset++] = (byte) (0x80 | (0x3f & ch));
99 dst[offset++] = (byte) (0xe0 | (0x0f & (ch >> 12)));
100 dst[offset++] = (byte) (0x80 | (0x3f & (ch >> 6)));
101 dst[offset++] = (byte) (0x80 | (0x3f & ch));