Lines Matching refs:targetUniChar
1116 #define WRITE_TO_TARGET_TO_U(args,source,target,offsets,offset,targetUniChar,delta, err){\ argument
1118 if(targetUniChar>ASCII_END && \
1119 targetUniChar != ZWJ && \
1120 targetUniChar != ZWNJ && \
1121 targetUniChar != DANDA && \
1122 targetUniChar != DOUBLE_DANDA){ \
1124 targetUniChar+=(uint16_t)(delta); \
1128 *(target)++ = (UChar)targetUniChar; \
1134 (UChar)targetUniChar; \
1139 #define GET_MAPPING(sourceChar,targetUniChar,data){ \ argument
1140 targetUniChar = toUnicodeTable[(sourceChar)] ; \
1143 (validityTable[(targetUniChar & 0x7F)] & data->currentMaskToUnicode)==0){ \
1146 targetUniChar!=VOCALLIC_RR){ \
1147 targetUniChar=missingCharMarker; \
1178 uint32_t targetUniChar = 0x0000; in UConverter_toUnicode_ISCII_OFFSETS_LOGIC() local
1199 targetUniChar = missingCharMarker; in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1240 targetUniChar = (sourceChar==0xBF) ? DEV_ABBR_SIGN : DEV_ANUDATTA; in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1243 if (validityTable[(uint8_t)targetUniChar] & data->currentMaskToUnicode) { in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1252 …TARGET_TO_U(args,source,target,args->offsets,(source-args->source -2),targetUniChar,data->currentD… in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1258 targetUniChar = missingCharMarker; in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1268 targetUniChar = 0x0020; /* replace with space accoding to Indic FAQ */ in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1270 targetUniChar = ZWJ; in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1279 …TARGET_TO_U(args,source,target,args->offsets,(source-args->source -2),targetUniChar,data->currentD… in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1304 targetUniChar = DOUBLE_DANDA; in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1309 GET_MAPPING(sourceChar,targetUniChar,data); in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1316 targetUniChar = ZWNJ; in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1320 GET_MAPPING(sourceChar,targetUniChar,data); in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1328 GET_MAPPING(sourceChar,targetUniChar,data) in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1339 targetUniChar=vowelSignESpecialCases[i][1]; in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1346 if (validityTable[(uint8_t)targetUniChar] & data->currentMaskToUnicode) { in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1353 GET_MAPPING(sourceChar,targetUniChar,data); in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1360 targetUniChar = ZWJ; in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1373 targetUniChar = PNJ_RRA; in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1374 …O_TARGET_TO_U(args, source, target, args->offsets, (source-args->source)-2, targetUniChar, 0, err); in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1376 targetUniChar = PNJ_SIGN_VIRAMA; in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1377 …O_TARGET_TO_U(args, source, target, args->offsets, (source-args->source)-2, targetUniChar, 0, err); in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1379 targetUniChar = PNJ_HA; in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1380 …O_TARGET_TO_U(args, source, target, args->offsets, (source-args->source)-2, targetUniChar, 0, err); in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1398 targetUniChar=nuktaSpecialCases[i][1]; in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1405 if (validityTable[(uint8_t)targetUniChar] & data->currentMaskToUnicode) { in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1415 …TARGET_TO_U(args,source,target,args->offsets,(source-args->source -2),targetUniChar,data->currentD… in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1424 default:GET_MAPPING(sourceChar,targetUniChar,data) in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1433 …(*toUnicodeStatus + PNJ_DELTA) == PNJ_SIGN_VIRAMA && (targetUniChar + PNJ_DELTA) == data->prevToUn… in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1451 …if (data->currentDeltaToUnicode == PNJ_DELTA && (targetUniChar + PNJ_DELTA) == PNJ_BINDI && isPNJB… in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1452 targetUniChar = PNJ_TIPPI - PNJ_DELTA; in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1454 …} else if (data->currentDeltaToUnicode == PNJ_DELTA && (targetUniChar + PNJ_DELTA) == PNJ_SIGN_VIR… in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1465 if (targetUniChar != missingCharMarker) { in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()
1467 *toUnicodeStatus = (UChar) targetUniChar; in UConverter_toUnicode_ISCII_OFFSETS_LOGIC()