/external/icu/icu4c/source/common/ |
D | ucnvmbcs.cpp | 867 mbcsTable=&sharedData->mbcs; in ucnv_MBCSGetFilteredUnicodeSetForUnicode() 1068 sharedData->mbcs.outputType==MBCS_OUTPUT_DBCS_ONLY ? in ucnv_MBCSGetUnicodeSetForUnicode() 1116 if( (cx=sharedData->mbcs.extIndexes)!=NULL && in _extFromU() 1181 if( (cx=sharedData->mbcs.extIndexes)!=NULL && in _extToU() 1272 mbcsTable=&sharedData->mbcs; in _EBCDICSwapLFNL() 1560 UConverterMBCSTable *mbcsTable=&sharedData->mbcs; in ucnv_MBCSLoad() 1629 baseSharedData->mbcs.baseSharedData!=NULL in ucnv_MBCSLoad() 1647 uprv_memcpy(mbcsTable, &baseSharedData->mbcs, sizeof(UConverterMBCSTable)); in ucnv_MBCSLoad() 1678 if(baseSharedData->mbcs.outputType==MBCS_OUTPUT_2_SISO) { in ucnv_MBCSLoad() 1881 UConverterMBCSTable *mbcsTable=&sharedData->mbcs; in ucnv_MBCSUnload() [all …]
|
D | ucnv_ext.cpp | 272 ((cnv)->sharedData->mbcs.outputType==MBCS_OUTPUT_2_SISO ? (int8_t)(cnv)->mode : \ 273 (cnv)->sharedData->mbcs.outputType==MBCS_OUTPUT_DBCS_ONLY ? 1 : -1) 377 match=ucnv_extMatchToU(cnv->sharedData->mbcs.extIndexes, (int8_t)UCNV_SISO_STATE(cnv), in ucnv_extContinueMatchToU() 395 ucnv_extWriteToU(cnv, cnv->sharedData->mbcs.extIndexes, in ucnv_extContinueMatchToU() 770 cnv->sharedData->mbcs.outputType==MBCS_OUTPUT_DBCS_ONLY) in ucnv_extInitialMatchFromU() 873 match=ucnv_extMatchFromU(cnv->sharedData->mbcs.extIndexes, in ucnv_extContinueMatchFromU() 897 ucnv_extWriteFromU(cnv, cnv->sharedData->mbcs.extIndexes, in ucnv_extContinueMatchFromU() 1046 cx=sharedData->mbcs.extIndexes; in ucnv_extGetUnicodeSet() 1062 } else if( sharedData->mbcs.outputType==MBCS_OUTPUT_DBCS_ONLY || in ucnv_extGetUnicodeSet()
|
D | ucnv_bld.h | 55 UConverterMBCSTable mbcs; member 124 UConverterMBCSTable mbcs; member
|
D | ucnvmbcs.h | 516 (UChar)MBCS_ENTRY_FINAL_VALUE_16((sharedData)->mbcs.stateTable[0][(uint8_t)(b)]) 527 (UBool)MBCS_ENTRY_IS_TRANSITION((sharedData)->mbcs.stateTable[0][(uint8_t)(byte)])
|
D | ucnv2022.cpp | 1141 if(c<0x10000 || (sharedData->mbcs.unicodeMask&UCNV_HAS_SUPPLEMENTARY)) { in MBCS_FROM_UCHAR32_ISO2022() 1142 table=sharedData->mbcs.fromUnicodeTable; in MBCS_FROM_UCHAR32_ISO2022() 1146 myValue=MBCS_VALUE_2_FROM_STAGE_2(sharedData->mbcs.fromUnicodeBytes, stage2Entry, c); in MBCS_FROM_UCHAR32_ISO2022() 1153 p=MBCS_POINTER_3_FROM_STAGE_2(sharedData->mbcs.fromUnicodeBytes, stage2Entry, c); in MBCS_FROM_UCHAR32_ISO2022() 1179 cx=sharedData->mbcs.extIndexes; in MBCS_FROM_UCHAR32_ISO2022() 1202 if(c>=0x10000 && !(sharedData->mbcs.unicodeMask&UCNV_HAS_SUPPLEMENTARY)) { in MBCS_SINGLE_FROM_UCHAR32() 1206 table=sharedData->mbcs.fromUnicodeTable; in MBCS_SINGLE_FROM_UCHAR32() 1208 value=MBCS_SINGLE_RESULT_FROM_U(table, (uint16_t *)sharedData->mbcs.fromUnicodeBytes, c); in MBCS_SINGLE_FROM_UCHAR32()
|
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
D | CharsetMBCS.java | 241 UConverterMBCSTable mbcsTable = data.mbcs; in loadConverter() 320 || baseSharedData.mbcs.baseSharedData != null) { in loadConverter() 328 mbcsTable = data.mbcs = baseSharedData.mbcs; in loadConverter() 350 if (baseSharedData.mbcs.outputType == MBCS_OUTPUT_2_SISO) { in loadConverter() 862 mbcsTable = sharedData.mbcs; in initializeConverter() 964 mbcsTable = sharedData.mbcs; in EBCDICSwapLFNL() 967 int[] tableInts = sharedData.mbcs.fromUnicodeTableInts; in EBCDICSwapLFNL() 1256 static char MBCS_SINGLE_SIMPLE_GET_NEXT_BMP(UConverterMBCSTable mbcs, final int b) { in MBCS_SINGLE_SIMPLE_GET_NEXT_BMP() argument 1258 return MBCS_ENTRY_FINAL_VALUE_16(mbcs.stateTable[0][b]); in MBCS_SINGLE_SIMPLE_GET_NEXT_BMP() 1620 return sharedData.mbcs.outputType == MBCS_OUTPUT_2_SISO ? (byte) mode in SISO_STATE() [all …]
|
D | UConverterSharedData.java | 42 CharsetMBCS.UConverterMBCSTable mbcs; field in UConverterSharedData 46 mbcs = new CharsetMBCS.UConverterMBCSTable(); in UConverterSharedData()
|
D | CharsetISO2022.java | 276 if (c >= 0x10000 && !sharedData.mbcs.hasSupplementary()) { in MBCSSingleFromUChar32() 280 table = sharedData.mbcs.fromUnicodeTable; in MBCSSingleFromUChar32() 282 value = CharsetMBCS.MBCS_SINGLE_RESULT_FROM_U(table, sharedData.mbcs.fromUnicodeChars, c); in MBCSSingleFromUChar32() 983 …getUniChar = CharsetMBCS.MBCS_SINGLE_SIMPLE_GET_NEXT_BMP(myConverterData.myConverterArray[cs].mbcs, in decodeLoop() 1923 … myConverterData.currentConverter.sharedData.mbcs.outputType = CharsetMBCS.MBCS_OUTPUT_2; in encodeLoop() 1957 … myConverterData.currentConverter.sharedData.mbcs.outputType = CharsetMBCS.MBCS_OUTPUT_2; in encodeLoop() 2409 … myConverterData.currentConverter.sharedData.mbcs.outputType = CharsetMBCS.MBCS_OUTPUT_3; in encodeLoop() 2436 … myConverterData.currentConverter.sharedData.mbcs.outputType = CharsetMBCS.MBCS_OUTPUT_2; in encodeLoop() 2701 … myConverterData.currentConverter.sharedData.mbcs.outputType = CharsetMBCS.MBCS_OUTPUT_2; in encodeLoop()
|
D | CharsetLMBCS.java | 702 … uniChar = CharsetMBCS.MBCS_SINGLE_SIMPLE_GET_NEXT_BMP(cnv.mbcs, CurByte); in LMBCSGetNextUCharWorker() 723 … if (CharsetMBCS.MBCS_ENTRY_IS_TRANSITION(cnv.mbcs.stateTable[0][CurByte]) /* isLeadByte */) { in LMBCSGetNextUCharWorker() 746 uniChar = CharsetMBCS.MBCS_SINGLE_SIMPLE_GET_NEXT_BMP(cnv.mbcs, CurByte); in LMBCSGetNextUCharWorker()
|
/external/python/cpython3/Lib/encodings/ |
D | __init__.py | 164 import encodings.mbcs 165 return encodings.mbcs.getregentry()
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/mbcs/ |
D | BIG5Tool.java | 29 package com.ibm.icu.dev.tool.charsetdet.mbcs;
|
D | EUCTool.java | 30 package com.ibm.icu.dev.tool.charsetdet.mbcs;
|
/external/python/cpython3/Doc/library/ |
D | codecs.rst | 989 aliases: utf-8, utf8, latin-1, latin1, iso-8859-1, iso8859-1, mbcs 1278 | mbcs | ansi, | Windows only: Encode | 1474 :mod:`encodings.mbcs` --- Windows ANSI codepage 1477 .. module:: encodings.mbcs
|
D | os.path.rst | 23 names on Windows (in the standard ``mbcs`` encoding), hence Windows
|
D | sys.rst | 511 * On Windows, the encoding may be ``'utf-8'`` or ``'mbcs'``, depending 518 Windows is no longer guaranteed to return ``'mbcs'``. See :pep:`529` 1323 Changes the default filesystem encoding and errors mode to 'mbcs' and
|
/external/python/cpython2/Doc/library/ |
D | sys.rst | 417 performed. :func:`getfilesystemencoding` still returns ``'mbcs'``, as 422 * On Windows 9x, the encoding is ``'mbcs'``.
|
D | ctypes.rst | 1993 encoding, like ``'utf-8'`` or ``'mbcs'``, *errors* must be a string 1998 conversion rules. On windows, the initial conversion rules are ``('mbcs',
|
D | codecs.rst | 1153 | mbcs | dbcs | Windows only: Encode |
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.0b1.rst | 1571 Adds oem encoding, alias ansi to mbcs, move aliasmbcs to codec lookup.
|
/external/python/cpython2/Doc/howto/ |
D | unicode.rst | 586 Windows, Python uses the name "mbcs" to refer to whatever the currently
|
/external/python/cpython3/Doc/using/ |
D | cmdline.rst | 766 will revert to their pre-3.6 values of 'mbcs' and 'replace', respectively.
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.3.rst | 985 The :mod:`~encodings.mbcs` codec has been rewritten to handle correctly 987 :mod:`~encodings.mbcs` codec now supports all error handlers, instead of only
|
D | 3.6.rst | 1047 alias for the existing ``'mbcs'`` encoding, which uses the ``CP_ACP`` code page.
|
/external/python/cpython3/Doc/c-api/ |
D | init.rst | 151 If the flag is non-zero, use the ``mbcs`` encoding instead of the UTF-8
|
/external/python/cpython2/Doc/faq/ |
D | programming.rst | 1167 Note that on Windows, there is an encoding known as "mbcs", which uses an
|