Lines Matching refs:aliases

64 /* The maximum number of aliases that a standard tag/converter combination can have.
106 uint16_t *aliases; /* Index into stringStore */
111 uint16_t totalAliasCount; /* Total aliases in this column */
122 uint16_t totalAliasCount; /* Total aliases in this row */
130 /* Used for storing all aliases */
135 /* Used for storing the lists section that point to aliases */
139 /* Were the standard tags declared before the aliases. */
310 /* write the table of aliases based on a tag/converter name combination */
323 if (tags[i].aliasList[n].aliases!=NULL) {
324 uprv_free(tags[i].aliasList[n].aliases);
342 /* Add the empty tag, which is for untagged aliases */
347 /* read the list of aliases */
453 /* The name itself may be tagged, so let's added it to the aliases list properly */
456 /* get all the real aliases */
581 tags[tag].aliases[converter] = alias;
655 fprintf(stderr, "%s:%d: warning: Too many aliases defined for all converters\n",
688 fprintf(stderr, "%s:%d: error: too many aliases for alias %s and converter %s\n", path,
693 /* Show this warning only once. All aliases are added to the "ALL" tag. */
711 /* Check for duplicate aliases for this tag on all converters */
714 uint16_t aliasNum = tags[standard].aliasList[idx].aliases[idx2];
725 fprintf(stderr, "%s:%d: warning: duplicate aliases %s and %s found for standard %s and converter %s\n", path,
731 fprintf(stderr, "%s:%d: warning: duplicate aliases %s and %s found for standard tag %s between converter %s and converter %s\n", path,
742 /* Check for duplicate default aliases for this converter on all tags */
746 if (tags[idx].aliasList[converter].aliases) {
747 uint16_t aliasNum = tags[idx].aliasList[converter].aliases[0];
764 aliasList->aliases = (uint16_t *)uprv_realloc(aliasList->aliases, (aliasList->aliasCount + 1) * sizeof(aliasList->aliases[0]));
766 aliasList->aliases[0] = 0;
769 if (aliasList->aliases[0] != 0) {
773 GET_ALIAS_STR(aliasList->aliases[0]),
778 aliasList->aliases[0] = GET_ALIAS_NUM(alias);
780 aliasList->aliases[aliasList->aliasCount++] = GET_ALIAS_NUM(alias);
820 uint16_t aliasNum = tags[idx].aliasList[idx2].aliases[idx3];
834 uint16_t aliasNum = tags[idx].aliasList[idx2].aliases[idx3];
941 GET_ALIAS_STR(aliasList->aliases[aliasNum]));*/
942 if (aliasList->aliases[aliasNum]) {
943 value = aliasList->aliases[aliasNum] + offset;
998 /* write the offsets of all the aliases lists in a 2D array, and create the lists. */
1017 udata_write32(out, uniqueAliasesSize); /* list of aliases */
1042 /* Write the unique list of aliases */
1045 /* Write the unique list of aliases */
1065 /* write the aliases strings */
1068 /* write the normalized aliases strings */