Home | History | Annotate | Download | only in gennames

Lines Matching refs:errorCode

356     UErrorCode errorCode = U_ZERO_ERROR;
361 u_init(&errorCode);
362 if (U_FAILURE(errorCode) && errorCode != U_FILE_ACCESS_ERROR) {
367 fprintf(stderr, "%s: can not initialize ICU. errorCode = %s\n",
368 argv[0], u_errorName(errorCode));
555 UErrorCode errorCode=U_ZERO_ERROR;
557 u_parseDelimitedFile(filename, ';', fields, 15, lineFn, storeOptions, &errorCode
558 if(U_FAILURE(errorCode)) {
559 fprintf(stderr, "gennames parse error: %s\n", u_errorName(errorCode));
560 exit(errorCode);
666 UErrorCode errorCode;
669 errorCode=U_ZERO_ERROR;
671 compareWords, NULL, FALSE, &errorCode);
717 errorCode=U_ZERO_ERROR;
719 compareWords, NULL, FALSE, &errorCode);
926 UErrorCode errorCode=U_ZERO_ERROR;
936 haveCopyright ? U_COPYRIGHT_STRING : NULL, &errorCode);
937 if(U_FAILURE(errorCode)) {
938 fprintf(stderr, "gennames: unable to create data memory, error %d\n", errorCode);
939 exit(errorCode);
1060 dataLength=udata_finish(pData, &errorCode);
1061 if(U_FAILURE(errorCode)) {
1062 fprintf(stderr, "gennames: error %d writing the output file\n", errorCode);
1063 exit(errorCode);