Home | History | Annotate | Download | only in gennames

Lines Matching refs:errorCode

374     UErrorCode errorCode = U_ZERO_ERROR;
379 u_init(&errorCode);
380 if (U_FAILURE(errorCode) && errorCode != U_FILE_ACCESS_ERROR) {
385 fprintf(stderr, "%s: can not initialize ICU. errorCode = %s\n",
386 argv[0], u_errorName(errorCode));
647 UErrorCode errorCode=U_ZERO_ERROR;
652 u_parseDelimitedFile(filename, ';', fields, 2, nameAliasesLineFn, NULL, &errorCode);
653 if(U_FAILURE(errorCode)) {
654 fprintf(stderr, "gennames parse error: %s\n", u_errorName(errorCode));
655 exit(errorCode);
666 UErrorCode errorCode=U_ZERO_ERROR;
668 u_parseDelimitedFile(filename, ';', fields, 15, lineFn, storeOptions, &errorCode);
669 if(U_FAILURE(errorCode)) {
670 fprintf(stderr, "gennames parse error: %s\n", u_errorName(errorCode));
671 exit(errorCode);
782 UErrorCode errorCode;
785 errorCode=U_ZERO_ERROR;
787 compareWords, NULL, FALSE, &errorCode);
833 errorCode=U_ZERO_ERROR;
835 compareWords, NULL, FALSE, &errorCode);
1042 UErrorCode errorCode=U_ZERO_ERROR;
1052 haveCopyright ? U_COPYRIGHT_STRING : NULL, &errorCode);
1053 if(U_FAILURE(errorCode)) {
1054 fprintf(stderr, "gennames: unable to create data memory, error %d\n", errorCode);
1055 exit(errorCode);
1176 dataLength=udata_finish(pData, &errorCode);
1177 if(U_FAILURE(errorCode)) {
1178 fprintf(stderr, "gennames: error %d writing the output file\n", errorCode);
1179 exit(errorCode);