• Home
  • Raw
  • Download

Lines Matching refs:sourceChar

898     UChar32 sourceChar = 0x0000;  in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()  local
914 if ((sourceChar = args->converter->fromUChar32)!=0) { in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
932 sourceChar = *source++; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
938 if (sourceChar <= ASCII_END) { in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
939 args->converter->fromUnicodeStatus = sourceChar; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
940 WRITE_TO_TARGET_FROM_U(args,offsets,source,target,targetLimit,sourceChar,err); in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
946 switch (sourceChar) { in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
969 if ((uint16_t)(INDIC_BLOCK_END-sourceChar) <= INDIC_RANGE) { in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
974 if (sourceChar!= DANDA && sourceChar != DOUBLE_DANDA) { in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
976 range =(uint16_t)((sourceChar-INDIC_BLOCK_BEGIN)/DELTA); in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
988 if (sourceChar == PNJ_TIPPI) { in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
990 sourceChar = PNJ_BINDI; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
991 } else if (sourceChar == PNJ_ADHAK) { in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
999 sourceChar -= converterData->currentDeltaFromUnicode; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1003 targetByteUnit=fromUnicodeTable[(uint8_t)sourceChar]; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1006 … if ((validityTable[(uint8_t)sourceChar] & converterData->currentMaskFromUnicode)==0) { in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1008 … if (converterData->currentDeltaFromUnicode!=(TELUGU_DELTA) || sourceChar!=VOCALLIC_RR) { in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1029 …if (converterData->currentDeltaFromUnicode == PNJ_DELTA && (sourceChar + PNJ_DELTA) == PNJ_ADHAK) { in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1037 … == PNJ_DELTA && tempContextFromUnicode == PNJ_ADHAK && isPNJConsonant((sourceChar + PNJ_DELTA))) { in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1059 if (U16_IS_SURROGATE(sourceChar)) { in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1060 if (U16_IS_SURROGATE_LEAD(sourceChar)) { in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1068 sourceChar=U16_GET_SUPPLEMENTARY(sourceChar, trail); in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1091 args->converter->fromUChar32=sourceChar; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1139 #define GET_MAPPING(sourceChar,targetUniChar,data){ \ argument
1140 targetUniChar = toUnicodeTable[(sourceChar)] ; \
1142 if(sourceChar> ASCII_END && \
1179 uint8_t sourceChar = 0x0000; in UConverter_toUnicode_ISCII_OFFSETS_LOGIC() local
1202 sourceChar = (unsigned char)*(source)++; in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1212 if ((uint8_t)(PNJ-sourceChar)<=PNJ-DEV) { in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1213 … data->currentDeltaToUnicode = (uint16_t)(lookupTable[sourceChar & 0x0F][0] * DELTA); in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1214 data->currentMaskToUnicode = (MaskEnum)lookupTable[sourceChar & 0x0F][1]; in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1215 } else if (sourceChar==DEF) { in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1220 if ((sourceChar >= 0x21 && sourceChar <= 0x3F)) { in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1237 if ((uint8_t) (EXT_RANGE_END - sourceChar) <= (EXT_RANGE_END - EXT_RANGE_BEGIN)) { in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1239 if (sourceChar==0xBF || sourceChar == 0xB8) { in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1240 targetUniChar = (sourceChar==0xBF) ? DEV_ABBR_SIGN : DEV_ANUDATTA; in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1267 if (sourceChar==ISCII_HALANT) { in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1285 switch (sourceChar) { in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1289 *contextCharToUnicode = (UChar)sourceChar; in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1309 GET_MAPPING(sourceChar,targetUniChar,data); in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1310 *contextCharToUnicode = sourceChar; in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1320 GET_MAPPING(sourceChar,targetUniChar,data); in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1321 *contextCharToUnicode = sourceChar; in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1328 GET_MAPPING(sourceChar,targetUniChar,data) in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1330 *contextCharToUnicode = sourceChar; in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1353 GET_MAPPING(sourceChar,targetUniChar,data); in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1354 *contextCharToUnicode = sourceChar; in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1424 default:GET_MAPPING(sourceChar,targetUniChar,data) in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1426 *contextCharToUnicode = sourceChar; in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1480 args->converter->toUBytes[0] = (uint8_t) sourceChar; in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()