Lines Matching refs:inputChar
1220 UChar inputChar = dest[i];
1221 if ( (inputChar >= 0xFB50) && (inputChar <= 0xFBFF)) {
1222 UChar c = convertFBto06 [ (inputChar - 0xFB50) ];
1225 } else if ( (inputChar >= 0xFE70) && (inputChar <= 0xFEFC)) {
1226 dest[i] = convertFEto06 [ (inputChar - 0xFE70) ] ;
1228 dest[i] = inputChar ;
1387 UChar inputChar = dest[i];
1388 inputChar >= 0xFB50) && (inputChar <= 0xFBFF)) { /* FBxx Arabic range */
1389 UChar c = convertFBto06 [ (inputChar - 0xFB50) ];
1392 } else if( (yehHamzaComposeEnabled == 1) && ((inputChar == HAMZA06_CHAR) || (inputChar == HAMZAFE_CHAR))
1396 } else if ( (seenComposeEnabled == 1) && (isTailChar(inputChar)) && (i< (sourceLength - 1))
1399 } else if (( inputChar >= 0xFE70) && (inputChar <= 0xFEF4 )) { /* FExx Arabic range */
1400 dest[i] = convertFEto06 [ (inputChar - 0xFE70) ];
1402 dest[i] = inputChar ;