Home | History | Annotate | Download | only in gencnval

Lines Matching refs:aliases

62 /* The maximum number of aliases that a standard tag/converter combination can have.
104 uint16_t *aliases; /* Index into stringStore */
109 uint16_t totalAliasCount; /* Total aliases in this column */
120 uint16_t totalAliasCount; /* Total aliases in this row */
128 /* Used for storing all aliases */
133 /* Used for storing the lists section that point to aliases */
137 /* Were the standard tags declared before the aliases. */
309 /* write the table of aliases based on a tag/converter name combination */
322 if (tags[i].aliasList[n].aliases!=NULL) {
323 uprv_free(tags[i].aliasList[n].aliases);
341 /* Add the empty tag, which is for untagged aliases */
346 /* read the list of aliases */
452 /* The name itself may be tagged, so let's added it to the aliases list properly */
455 /* get all the real aliases */
580 tags[tag].aliases[converter] = alias;
653 fprintf(stderr, "%s:%d: warning: Too many aliases defined for all converters\n",
686 fprintf(stderr, "%s:%d: error: too many aliases for alias %s and converter %s\n", path,
691 /* Show this warning only once. All aliases are added to the "ALL" tag. */
709 /* Check for duplicate aliases for this tag on all converters */
712 uint16_t aliasNum = tags[standard].aliasList[idx].aliases[idx2];
723 fprintf(stderr, "%s:%d: warning: duplicate aliases %s and %s found for standard %s and converter %s\n", path,
729 fprintf(stderr, "%s:%d: warning: duplicate aliases %s and %s found for standard tag %s between converter %s and converter %s\n", path,
740 /* Check for duplicate default aliases for this converter on all tags */
744 if (tags[idx].aliasList[converter].aliases) {
745 uint16_t aliasNum = tags[idx].aliasList[converter].aliases[0];
762 aliasList->aliases = (uint16_t *)uprv_realloc(aliasList->aliases, (aliasList->aliasCount + 1) * sizeof(aliasList->aliases[0]));
764 aliasList->aliases[0] = 0;
767 if (aliasList->aliases[0] != 0) {
771 GET_ALIAS_STR(aliasList->aliases[0]),
776 aliasList->aliases[0] = GET_ALIAS_NUM(alias);
778 aliasList->aliases[aliasList->aliasCount++] = GET_ALIAS_NUM(alias);
818 uint16_t aliasNum = tags[idx].aliasList[idx2].aliases[idx3];
832 uint16_t aliasNum = tags[idx].aliasList[idx2].aliases[idx3];
937 GET_ALIAS_STR(aliasList->aliases[aliasNum]));*/
938 if (aliasList->aliases[aliasNum]) {
939 value = aliasList->aliases[aliasNum] + offset;
994 /* write the offsets of all the aliases lists in a 2D array, and create the lists. */
1013 udata_write32(out, uniqueAliasesSize); /* list of aliases */
1038 /* Write the unique list of aliases */
1041 /* Write the unique list of aliases */
1061 /* write the aliases strings */
1064 /* write the normalized aliases strings */