Home | History | Annotate | Download | only in gencnval

Lines Matching defs:aliases

60 /* The maximum number of aliases that a standard tag/converter combination can have.
102 uint16_t *aliases; /* Index into stringStore */
107 uint16_t totalAliasCount; /* Total aliases in this column */
118 uint16_t totalAliasCount; /* Total aliases in this row */
126 /* Used for storing all aliases */
131 /* Used for storing the lists section that point to aliases */
135 /* Were the standard tags declared before the aliases. */
299 /* write the table of aliases based on a tag/converter name combination */
312 if (tags[i].aliasList[n].aliases!=NULL) {
313 uprv_free(tags[i].aliasList[n].aliases);
331 /* Add the empty tag, which is for untagged aliases */
336 /* read the list of aliases */
442 /* The name itself may be tagged, so let's added it to the aliases list properly */
445 /* get all the real aliases */
570 tags[tag].aliases[converter] = alias;
643 fprintf(stderr, "%s:%d: warning: Too many aliases defined for all converters\n",
676 fprintf(stderr, "%s:%d: error: too many aliases for alias %s and converter %s\n", path,
681 /* Show this warning only once. All aliases are added to the "ALL" tag. */
699 /* Check for duplicate aliases for this tag on all converters */
702 uint16_t aliasNum = tags[standard].aliasList[idx].aliases[idx2];
713 fprintf(stderr, "%s:%d: warning: duplicate aliases %s and %s found for standard %s and converter %s\n", path,
719 fprintf(stderr, "%s:%d: warning: duplicate aliases %s and %s found for standard tag %s between converter %s and converter %s\n", path,
730 /* Check for duplicate default aliases for this converter on all tags */
734 if (tags[idx].aliasList[converter].aliases) {
735 uint16_t aliasNum = tags[idx].aliasList[converter].aliases[0];
752 aliasList->aliases = (uint16_t *)uprv_realloc(aliasList->aliases, (aliasList->aliasCount + 1) * sizeof(aliasList->aliases[0]));
754 aliasList->aliases[0] = 0;
757 if (aliasList->aliases[0] != 0) {
761 GET_ALIAS_STR(aliasList->aliases[0]),
766 aliasList->aliases[0] = GET_ALIAS_NUM(alias);
768 aliasList->aliases[aliasList->aliasCount++] = GET_ALIAS_NUM(alias);
808 uint16_t aliasNum = tags[idx].aliasList[idx2].aliases[idx3];
822 uint16_t aliasNum = tags[idx].aliasList[idx2].aliases[idx3];
927 GET_ALIAS_STR(aliasList->aliases[aliasNum]));*/
928 if (aliasList->aliases[aliasNum]) {
929 value = aliasList->aliases[aliasNum] + offset;
984 /* write the offsets of all the aliases lists in a 2D array, and create the lists. */
1003 udata_write32(out, uniqueAliasesSize); /* list of aliases */
1028 /* Write the unique list of aliases */
1031 /* Write the unique list of aliases */
1051 /* write the aliases strings */
1054 /* write the normalized aliases strings */