Home | History | Annotate | Download | only in common

Lines Matching defs:inputChar

1216             UChar inputChar  = dest[i];
1217 if ( (inputChar >= 0xFB50) && (inputChar <= 0xFBFF)) {
1218 UChar c = convertFBto06 [ (inputChar - 0xFB50) ];
1221 } else if ( (inputChar >= 0xFE70) && (inputChar <= 0xFEFC)) {
1222 dest[i] = convertFEto06 [ (inputChar - 0xFE70) ] ;
1224 dest[i] = inputChar ;
1381 UChar inputChar = dest[i];
1382 if ( (inputChar >= 0xFB50) && (inputChar <= 0xFBFF)) { /* FBxx Arabic range */
1383 UChar c = convertFBto06 [ (inputChar - 0xFB50) ];
1386 } else if( (yehHamzaComposeEnabled == 1) && ((inputChar == HAMZA06_CHAR) || (inputChar == HAMZAFE_CHAR))
1390 } else if ( (seenComposeEnabled == 1) && (isTailChar(inputChar)) && (i< (sourceLength - 1))
1393 } else if (( inputChar >= 0xFE70) && (inputChar <= 0xFEF4 )) { /* FExx Arabic range */
1394 dest[i] = convertFEto06 [ (inputChar - 0xFE70) ];
1396 dest[i] = inputChar ;