/external/icu/icu4c/source/data/mappings/ |
ucmebcdic.mk | 5 # A list of EBCDIC UCM's to build 8 UCM_SOURCE_EBCDIC = ebcdic-xml-us.ucm\ 9 ibm-1025_P100-1995.ucm ibm-1026_P100-1995.ucm ibm-1097_P100-1995.ucm\ 10 ibm-1112_P100-1995.ucm ibm-1122_P100-1999.ucm ibm-1130_P100-1997.ucm\ 11 ibm-1132_P100-1998.ucm ibm-1137_P100-1999.ucm ibm-1364_P110-2007.ucm [all...] |
ucmcore.mk | 5 # A list of UCM's to build for core MIME/Unix/Windows encodings 20 UCM_SOURCE_CORE=ibm-912_P100-1995.ucm ibm-913_P100-2000.ucm\ 21 ibm-914_P100-1995.ucm ibm-915_P100-1995.ucm ibm-5012_P100-1999.ucm\ 22 ibm-920_P100-1995.ucm ibm-923_P100-1998.ucm ibm-1089_P100-1995.ucm\ 23 ibm-4909_P100-1999.ucm\ [all...] |
ucmfiles.mk | 5 # A list of UCM's to build 19 # | UCM_SOURCE_LOCAL = myconverter.ucm ... 25 # if the name contains either JIPS, KEIS, or JEF. (e.g. my_KEIS_converter.ucm) 27 # | UCM_SOURCE_EBCDIC_IGNORE_SISO_LOCAL = my_KEIS_converter.ucm 32 # | UCM_SOURCE = ibm-913.ucm ibm-949.ucm ibm-37.ucm 38 UCM_SOURCE_FILES = ibm-437_P100-1995.ucm\ 39 ibm-737_P100-1997.ucm\ 40 ibm-720_P100-1997.ucm\ [all...] |
ucmlocal.mk | 4 # A list of additional .ucm files to build for Google. 5 # Note: noop-*.ucm are for Android only to prevent 2022 security attack. 8 noop-cns-11643.ucm \ 9 noop-gb2312_gl.ucm \ 10 noop-iso-ir-165.ucm
|
/external/icu/icu4c/source/tools/makeconv/ |
makeconv.cpp | 36 #include "ucm.h" 43 UCMFile *ucm; member in struct:ConvData 68 ucm_close(data->ucm); 69 data->ucm=NULL; 226 "\tread .ucm codepage mapping files and write .cnv files\n" 245 printf("makeconv version %u.%u, ICU tool to read .ucm codepage mapping files and write .cnv files\n", 443 if(ucm_parseHeaderLine(data->ucm, line, &key, &value)) { 487 staticData->maxBytesPerChar=(int8_t)data->ucm->states.maxCharLength; 488 staticData->minBytesPerChar=(int8_t)data->ucm->states.minCharLength; 489 staticData->conversionType=data->ucm->states.conversionType [all...] |
genmbcs.h | 104 MBCSOpen(UCMFile *ucm); 124 CnvExtOpen(UCMFile *ucm);
|
genmbcs.cpp | 26 #include "ucm.h" 38 UCMFile *ucm; member in struct:MBCSData 40 /* toUnicode (state table in ucm->states) */ 152 MBCSInit(MBCSData *mbcsData, UCMFile *ucm) { 155 mbcsData->ucm=ucm; /* aliased, not owned */ 164 MBCSOpen(UCMFile *ucm) { 171 MBCSInit(mbcsData, ucm); 199 sum=mbcsData->ucm->states.countToUCodeUnits; 217 maxCharLength=mbcsData->ucm->states.maxCharLength [all...] |
gencnvex.c | 28 #include "ucm.h" 49 UCMFile *ucm; member in struct:CnvExtData 51 /* toUnicode (state table in ucm->states) */ 74 CnvExtOpen(UCMFile *ucm) { 84 extData->ucm=ucm; /* aliased, not owned */ 127 length=(int32_t)uprv_strlen(extData->ucm->baseName)+1; 130 extData->ucm->baseName[length++]=0; 142 udata_writeBlock(pData, extData->ucm->baseName, length); 220 indexes[UCNV_EXT_FLAGS]=extData->ucm->ext->unicodeMask [all...] |
/external/icu/icu4c/source/tools/toolutil/ |
ucm.c | 10 * file name: ucm.c 18 * This file reads a .ucm file, stores its mappings and sorts them. 19 * It implements handling of Unicode conversion mappings from .ucm files 37 #include "ucm.h" 137 * Comparing by lengths first is for compatibility with old .ucm tools 247 fprintf(stderr, "ucm error: unable to allocate reverseMap\n"); 261 fprintf(stderr, "ucm error: sortTable()/uprv_sortArray() fails - %s\n", 374 "ucm error: the base table contains a mapping whose input sequence\n" 399 "ucm error: the base table contains a mapping whose input sequence\n" 491 "ucm error: the base table contains a mapping whose input sequence\n 1013 UCMFile *ucm=(UCMFile *)uprv_malloc(sizeof(UCMFile)); local [all...] |
ucm.h | 8 * file name: ucm.h 16 * Definitions for the .ucm file parser and handler module ucm.c. 65 UCM_FLAGS_EXPLICIT, /* .ucm file has mappings with | fallback indicators */ 66 UCM_FLAGS_IMPLICIT, /* .ucm file has mappings without | fallback indicators, later wins */ 125 ucm_close(UCMFile *ucm); 128 ucm_parseHeaderLine(UCMFile *ucm, 140 ucm_addMappingAuto(UCMFile *ucm, UBool forBase, UCMStates *baseStates, 146 ucm_addMappingFromLine(UCMFile *ucm, const char *line, UBool forBase, UCMStates *baseStates); 169 * Read a table from a .ucm file, from after the CHARMAP line t [all...] |
ucmstate.c | 18 * This file handles ICU .ucm file state information as part of the ucm module. 29 #include "ucm.h" 192 fprintf(stderr, "ucm error: too many states (maximum %u)\n", MBCS_MAX_STATE_COUNT); 199 fprintf(stderr, "ucm error: parse error in state definition at '%s'\n", error); 207 ucm_parseHeaderLine(UCMFile *ucm, 213 states=&ucm->states; 239 fprintf(stderr, "ucm error: no header field <key> in line \"%s\"\n", line); 245 fprintf(stderr, "ucm error: incomplete header field <key> in line \"%s\"\n", line); 275 fprintf(stderr, "ucm error: unknown <uconv_class> %s\n", *pValue) [all...] |
/external/icu/icu4c/source/test/testdata/ |
testdata.mak | 132 "$(TESTDATABLD)\test1.cnv": "$(TESTDATA)\test1.ucm" 136 "$(TESTDATABLD)\test1bmp.cnv": "$(TESTDATA)\test1bmp.ucm" 140 "$(TESTDATABLD)\test2.cnv": "$(TESTDATA)\test2.ucm" 144 "$(TESTDATABLD)\test3.cnv": "$(TESTDATA)\test3.ucm" 148 "$(TESTDATABLD)\test4.cnv": "$(TESTDATA)\test4.ucm" 152 "$(TESTDATABLD)\test4x.cnv": "$(TESTDATA)\test4x.ucm" 156 "$(TESTDATABLD)\test5.cnv": "$(TESTDATA)\test5.ucm" 160 "$(TESTDATABLD)\ibm9027.cnv": "$(TESTDATA)\ibm9027.ucm"
|
/frameworks/av/media/libmedia/ |
CharacterEncodingDetector.cpp | 87 const UCharsetMatch *ucm; local 191 ucm = ucsdet_detect(csd, &status); 192 if (!ucm) { 196 enc = ucsdet_getName(ucm, &status); 198 enc, mNames.getEntry(i), ucsdet_getConfidence(ucm, &status));
|
/external/icu/icu4c/source/data/ |
Makefile.in | 279 ## UCM files 284 ALL_UCM_SOURCE=ibm-37_P100-1995.ucm ibm-1047_P100-1995.ucm $(UCM_SOURCE_CORE) $(UCM_SOURCE_FILES) $(UCM_SOURCE_EBCDIC) $(UCM_SOURCE_LOCAL) 286 CNV_FILES = $(ALL_UCM_SOURCE:%.ucm=$(BUILDDIR)/%.cnv) 287 CNV_FILES_SHORT = $(ALL_UCM_SOURCE:%.ucm=%.cnv) 290 CNV_FILES_SPECIAL=$(UCM_SOURCE_SPECIAL:%.ucm=$(BUILDDIR)/%.cnv) 291 CNV_FILES_SHORT_SPECIAL=$(UCM_SOURCE_SPECIAL:%.ucm=%.cnv) 589 $(INVOKE) $(TOOLBINDIR)/makeconv --ignore-siso-check -c -d $(BUILDDIR) $(UCMSRCDIR)/$(@F:%.cnv=%.ucm) 591 $(BUILDDIR)/%.cnv: $(UCMSRCDIR)/%.ucm $(TOOLBINDIR)/makeconv$(TOOLEXEEXT) [all...] |
makedata.mak | 33 .SUFFIXES : .nrm .icu .ucm .cnv .dll .dat .res .txt .c 64 # The directory that contains ucmcore.mk files along with *.ucm files 184 # We're including a list of .ucm files. 191 UCM_SOURCE=ibm-37_P100-1995.ucm ibm-1047_P100-1995.ucm 231 CNV_FILES=$(UCM_SOURCE:.ucm=.cnv) 233 CNV_FILES_SPECIAL=$(UCM_SOURCE_SPECIAL:.ucm=.cnv) 787 @"$(ICUTOOLS)\makeconv\$(CFG)\makeconv" -c -d"$(ICUBLD_PKG)" $(ICUSRCDATA_RELATIVE_PATH)\$(ICUUCM)\$(@B).ucm 793 @"$(ICUTOOLS)\makeconv\$(CFG)\makeconv" -c --ignore-siso-check -d"$(ICUBLD_PKG)" $(ICUSRCDATA_RELATIVE_PATH)\$(ICUUCM)\$(@B).ucm [all...] |
/external/icu/icu4c/source/extra/uconv/ |
makedata.mak | 62 .SUFFIXES : .ucm .cnv .dll .dat .res .txt .c
|