Home | History | Annotate | Download | only in common

Lines Matching refs:inputChar

1201             UChar inputChar  = dest[i];
1202 if ( (inputChar >= 0xFB50) && (inputChar <= 0xFBFF)) {
1203 UChar c = convertFBto06 [ (inputChar - 0xFB50) ];
1206 } else if ( (inputChar >= 0xFE70) && (inputChar <= 0xFEFC)) {
1207 dest[i] = convertFEto06 [ (inputChar - 0xFE70) ] ;
1209 dest[i] = inputChar ;
1368 UChar inputChar = dest[i];
1369 if ( (inputChar >= 0xFB50) && (inputChar <= 0xFBFF)) { /* FBxx Arabic range */
1370 UChar c = convertFBto06 [ (inputChar - 0xFB50) ];
1373 } else if( (yehHamzaComposeEnabled == 1) && ((inputChar == HAMZA06_CHAR) || (inputChar == HAMZAFE_CHAR))
1377 } else if ( (seenComposeEnabled == 1) && (isTailChar(inputChar)) && (i< (sourceLength - 1))
1380 } else if (( inputChar >= 0xFE70) && (inputChar
1381 dest[i] = convertFEto06 [ (inputChar - 0xFE70) ];
1383 dest[i] = inputChar ;