Home
last modified time | relevance | path

Searched refs:currentDeltaFromUnicode (Results 1 – 2 of 2) sorted by relevance

/external/icu/icu4c/source/common/
Ducnvisci.c123 uint16_t currentDeltaFromUnicode; /* current delta in Indic block */ member
206 converterData->currentDeltaFromUnicode in _ISCIIOpen()
263 data->currentDeltaFromUnicode=data->defDeltaToUnicode; in _ISCIIReset()
911 newDelta=converterData->currentDeltaFromUnicode; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
980 … if (newDelta!= converterData->currentDeltaFromUnicode || converterData->isFirstBuffer) { in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
981 converterData->currentDeltaFromUnicode = newDelta; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
987 if (converterData->currentDeltaFromUnicode == PNJ_DELTA) { in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
999 sourceChar -= converterData->currentDeltaFromUnicode; 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()
[all …]
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetISCII.java117 short currentDeltaFromUnicode; /* current delta in Indic block */ field in CharsetISCII.UConverterDataISCII
136 this.currentDeltaFromUnicode = 0x0000; /* contextCharFromUnicode */ in initialize()
138 …this.currentDeltaFromUnicode = (short)(lookupInitialData[option & UCNV_OPTIONS_VERSION_MASK].uniLa… in initialize()
1220 newDelta = converterData.currentDeltaFromUnicode; in encodeLoop()
1295 … if (newDelta != converterData.currentDeltaFromUnicode || converterData.isFirstBuffer) { in encodeLoop()
1296 converterData.currentDeltaFromUnicode = newDelta; in encodeLoop()
1301 if (converterData.currentDeltaFromUnicode == PNJ_DELTA) { in encodeLoop()
1312 sourceChar -= converterData.currentDeltaFromUnicode; in encodeLoop()
1320 … if (converterData.currentDeltaFromUnicode != (TELUGU_DELTA) || sourceChar != VOCALLIC_RR) { in encodeLoop()
1340 … if (converterData.currentDeltaFromUnicode == PNJ_DELTA && (sourceChar + PNJ_DELTA) == PNJ_ADHAK) { in encodeLoop()
[all …]