Home | History | Annotate | Download | only in toolutil

Lines Matching refs:ucm

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);
285 fprintf(stderr, "ucm error: illegal <mb_cur_max> %s\n", *pValue);
294 fprintf(stderr, "ucm error: illegal <mb_cur_min> %s\n", *pValue);
309 fprintf(stderr, "ucm error: <icu:state> entry for non-MBCS table or before the <uconv_class> line\n");
314 fprintf(stderr, "ucm error: <icu:state> before the <mb_cur_max> line\n");
321 fprintf(stderr, "ucm error: <icu:base> without a base table name\n");
324 uprv_strcpy(ucm->baseName, *pValue);
398 fprintf(stderr, "ucm error: the state table contains loops\n");
430 fprintf(stderr, "ucm error: missing conversion type (<uconv_class>)\n");
446 fprintf(stderr, "ucm error: missing state table information (<icu:state>) for MBCS\n");
475 fprintf(stderr, "ucm error: unknown charset structure\n");
488 fprintf(stderr, "ucm error: max B/char < min B/char\n");
500 fprintf(stderr, "ucm error: max B/char too large\n");
522 fprintf(stderr, "ucm warning: min B/char too small\n");
535 fprintf(stderr, "ucm error: state table entry [%x][%x] has a next state of %x that is too high\n",
540 fprintf(stderr, "ucm error: state table entry [%x][%x] is final but has a non-initial next state of %x\n",
544 fprintf(stderr, "ucm error: state table entry [%x][%x] is not final but has an initial next state of %x\n",
554 fprintf(stderr, "ucm error: SI/SO codepages must have max 2 bytes/char (not %x)\n", (int)states->maxCharLength);
558 fprintf(stderr, "ucm error: SI/SO codepages must have at least 3 states (not %x)\n", (int)states->countStates);
570 fprintf(stderr, "ucm error: SI/SO codepages must have in states 0 and 1 transitions e:1.s, f:0.s\n");
581 fprintf(stderr, "ucm error: state %d is 'initial' - not supported except for SI/SO codepages\n", (int)state);
985 fprintf(stderr, "ucm error: there is no state information!\n");
1007 fprintf(stderr, "ucm error: byte sequence ends in illegal state\n");
1010 fprintf(stderr, "ucm error: byte sequence ends in state-change-only\n");
1026 fprintf(stderr, "ucm error: byte sequence reached reserved action code, entry: 0x%02lx\n", (unsigned long)entry);
1033 fprintf(stderr, "ucm error: byte sequence too short, ends in non-final state %u\n", state);
1042 fprintf(stderr, "ucm error: SI/SO (like EBCDIC-stateful) result with %d characters does not contain all DBCS\n", (int)count);