• Home
  • Raw
  • Download

Lines Matching full:else

32         else if (c >= 0xff61 && c <= 0xff9f) {  in ENCODER()
37 else if (c >= 0xf8f0 && c <= 0xf8f3) { in ENCODER()
42 else in ENCODER()
55 else TRYMAP_ENC(jisxcommon, code, c) { in ENCODER()
67 else if (c >= 0xe000 && c < 0xe758) { in ENCODER()
74 else in ENCODER()
94 else if (c >= 0xa0 && c <= 0xdf) { in DECODER()
97 else in DECODER()
102 else if (c >= 0xfd/* && c <= 0xff*/) { in DECODER()
113 else if ((c >= 0x81 && c <= 0x9f) || (c >= 0xe0 && c <= 0xea)){ in DECODER()
123 else return 2; in DECODER()
125 else if (c >= 0xf0 && c <= 0xf9) { in DECODER()
130 else in DECODER()
133 else in DECODER()
165 else TRYMAP_ENC(jisx0213_bmp, code, c) { in ENCODER()
176 else in ENCODER()
179 else { in ENCODER()
191 } else in ENCODER()
196 else TRYMAP_ENC(jisxcommon, code, c); in ENCODER()
197 else if (c >= 0xff61 && c <= 0xff9f) { in ENCODER()
203 else if (c == 0xff3c) in ENCODER()
206 else if (c == 0xff5e) in ENCODER()
209 else in ENCODER()
212 else if (c >> 16 == EMPBASE >> 16) { in ENCODER()
214 else TRYMAP_ENC(jisx0213_emp, code, c & 0xffff); in ENCODER()
215 else return insize; in ENCODER()
217 else in ENCODER()
224 } else { in ENCODER()
258 else in DECODER()
261 else if (c == 0x8f) { in DECODER()
270 else TRYMAP_DEC(jisx0213_2_bmp, **outbuf, c2, c3) ; in DECODER()
271 else TRYMAP_DEC(jisx0213_2_emp, code, c2, c3) { in DECODER()
276 else TRYMAP_DEC(jisx0212, **outbuf, c2, c3) ; in DECODER()
277 else return 3; in DECODER()
280 else { in DECODER()
289 else if (c == 0x21 && c2 == 0x40) **outbuf = 0xff3c; in DECODER()
290 else if (c == 0x22 && c2 == 0x32) **outbuf = 0xff5e; in DECODER()
291 else TRYMAP_DEC(jisx0208, **outbuf, c, c2); in DECODER()
292 else TRYMAP_DEC(jisx0213_1_bmp, **outbuf, c, c2); in DECODER()
293 else TRYMAP_DEC(jisx0213_1_emp, code, c, c2) { in DECODER()
298 else TRYMAP_DEC(jisx0213_pair, code, c, c2) { in DECODER()
303 else return 2; in DECODER()
331 else if (c >= 0xff61 && c <= 0xff9f) { in ENCODER()
338 else if (c == 0xff3c) /* FULL-WIDTH REVERSE SOLIDUS */ in ENCODER()
340 else if (c == 0xa5) { /* YEN SIGN */ in ENCODER()
344 } else if (c == 0x203e) { /* OVERLINE */ in ENCODER()
350 else in ENCODER()
357 } else { in ENCODER()
390 else in DECODER()
393 else if (c == 0x8f) { in DECODER()
403 else in DECODER()
406 else { in DECODER()
416 else in DECODER()
420 else return 2; in DECODER()
442 #else in ENCODER()
444 else if (c == 0x00a5) code = 0x5c; /* YEN SIGN */ in ENCODER()
445 else if (c == 0x203e) code = 0x7e; /* OVERLINE */ in ENCODER()
447 else JISX0201_K_ENCODE(c, code) in ENCODER()
448 else UCS4INVALID(c) in ENCODER()
449 else code = NOCHAR; in ENCODER()
464 else if (c == 0xff3c) in ENCODER()
467 else in ENCODER()
495 #else in DECODER()
498 else JISX0201_K_DECODE(c, **outbuf) in DECODER()
499 else if ((c >= 0x81 && c <= 0x9f) || (c >= 0xe0 && c <= 0xea)){ in DECODER()
524 else in DECODER()
527 else in DECODER()
550 else DECODE_SURROGATE(c) in ENCODER()
564 else TRYMAP_ENC(jisx0213_bmp, code, c) { in ENCODER()
575 else in ENCODER()
578 else { in ENCODER()
591 else in ENCODER()
596 else TRYMAP_ENC(jisxcommon, code, c) { in ENCODER()
601 else return 1; in ENCODER()
603 else if (c >> 16 == EMPBASE >> 16) { in ENCODER()
605 else TRYMAP_ENC(jisx0213_emp, code, c&0xffff); in ENCODER()
606 else return insize; in ENCODER()
608 else in ENCODER()
617 else if (c1 >= 0xac || c1 == 0xa8) c1 -= 0x49; in ENCODER()
618 else c1 -= 0x43; in ENCODER()
620 else /* Plane 1 */ in ENCODER()
641 else if ((c >= 0x81 && c <= 0x9f) || (c >= 0xe0 && c <= 0xfc)){ in DECODER()
659 else TRYMAP_DEC(jisx0208, **outbuf, c1, c2) { in DECODER()
662 else TRYMAP_DEC(jisx0213_1_bmp, **outbuf, in DECODER()
666 else TRYMAP_DEC(jisx0213_1_emp, code, c1, c2) { in DECODER()
669 else TRYMAP_DEC(jisx0213_pair, code, c1, c2) { in DECODER()
673 else in DECODER()
677 else { /* Plane 2 */ in DECODER()
679 else if (c1 >= 0x63 || c1 == 0x5f) c1 -= 0x37; in DECODER()
680 else c1 -= 0x3d; in DECODER()
684 else TRYMAP_DEC(jisx0213_2_bmp, **outbuf, in DECODER()
686 else TRYMAP_DEC(jisx0213_2_emp, code, c1, c2) { in DECODER()
691 else in DECODER()
697 else in DECODER()