HomeSort by relevance Sort by last modified time
    Searched refs:mbcsTable (Results 1 - 3 of 3) sorted by null

  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
UConverterDataReader.java 485 protected void readMBCSTable(MBCSHeader header, UConverterMBCSTable mbcsTable) throws IOException
488 mbcsTable.countStates = (byte) header.countStates;
489 mbcsTable.stateTable = new int[header.countStates][256];
492 intBuffer.get(mbcsTable.stateTable[i]);
495 mbcsTable.countToUFallbacks = header.countToUFallbacks;
496 mbcsTable.toUFallbacks = new MBCSToUFallback[header.countToUFallbacks];
500 mbcsTable.toUFallbacks[i] = new MBCSToUFallback(offset, codePoint);
514 mbcsTable.unicodeCodeUnits = new char[length / 2];
515 charBuffer.get(mbcsTable.unicodeCodeUnits);
522 if (mbcsTable.outputType == CharsetMBCS.MBCS_OUTPUT_1)
    [all...]
CharsetMBCS.java 246 UConverterMBCSTable mbcsTable = data.mbcs;
264 mbcsTable.outputType = (byte) header.flags;
268 // if(offset!=0 && mbcsTable.outputType == MBCS_OUTPUT_EXT_ONLY) {
269 if (mbcsTable.outputType == MBCS_OUTPUT_EXT_ONLY) {
275 mbcsTable.extIndexes = reader.readExtIndexes(offset - reader.bytesReadAfterStaticData());
284 * if(mbcsTable.extIndexes != null) {
286 * try { //int nbytes = mbcsTable.extIndexes[UConverterExt.UCNV_EXT_TO_U_LENGTH]*4 +
287 * mbcsTable.extIndexes[UConverterExt.UCNV_EXT_TO_U_UCHARS_LENGTH]*2 +
288 * mbcsTable.extIndexes[UConverterExt.UCNV_EXT_FROM_U_LENGTH]*6 +
289 * mbcsTable.extIndexes[UConverterExt.UCNV_EXT_FROM_U_BYTES_LENGTH]
    [all...]
  /external/icu/icu4c/source/common/
ucnvmbcs.cpp 631 enumToU(UConverterMBCSTable *mbcsTable, int8_t stateProps[],
642 row=mbcsTable->stateTable[state];
643 unicodeCodeUnits=mbcsTable->unicodeCodeUnits;
662 mbcsTable, stateProps, nextState,
805 ucnv_MBCSEnumToUnicode(UConverterMBCSTable *mbcsTable,
832 getStateProp(mbcsTable->stateTable, stateProps, 0);
834 for(state=0; state<mbcsTable->countStates; ++state) {
841 mbcsTable, stateProps, state, 0, 0,
854 const UConverterMBCSTable *mbcsTable;
863 mbcsTable=&sharedData->mbcs
    [all...]

Completed in 247 milliseconds