Home | History | Annotate | Download | only in gencnval

Lines Matching full:standard

60 /* The maximum number of aliases that a standard tag/converter combination can have.
135 /* Were the standard tags declared before the aliases. */
167 addAlias(const char *alias, uint16_t standard, uint16_t converter, UBool defaultName);
377 fprintf(stderr, "%s:%d: error: alias table needs to start a list of standard tags\n", path, lineNum);
660 @param standard When standard is 0, then it's the "empty" tag.
663 addAlias(const char *alias, uint16_t standard, uint16_t converter, UBool defaultName) {
668 if(standard>=MAX_TAG_COUNT) {
669 fprintf(stderr, "%s:%d: error: too many standard tags\n", path, lineNum);
676 aliasList = &tags[standard].aliasList[converter];
690 if (standard == ALL_TAG_NUM && GET_ALIAS_STR(converters[converter].converter) != alias) {
706 if (standard != ALL_TAG_NUM) {
709 for (idx2 = 0; idx2 < tags[standard].aliasList[idx].aliasCount; idx2++) {
710 uint16_t aliasNum = tags[standard].aliasList[idx].aliases[idx2];
716 * (alias, standard) duplicates are harmless if they map to the same converter.
721 fprintf(stderr, "%s:%d: warning: duplicate aliases %s and %s found for standard %s and converter %s\n", path,
723 GET_TAG_STR(tags[standard].tag),
727 fprintf(stderr, "%s:%d: warning: duplicate aliases %s and %s found for standard tag %s between converter %s and converter %s\n", path,
729 GET_TAG_STR(tags[standard].tag),
747 fprintf(stderr, "%s:%d: warning: duplicate alias %s found for converter %s and standard tag %s\n", path,
748 lineNum, alias, GET_ALIAS_STR(converters[converter].converter), GET_TAG_STR(tags[standard].tag));
766 fprintf(stderr, "%s:%d: error: Alias %s and %s cannot both be the default alias for standard tag %s and converter %s\n", path,
770 GET_TAG_STR(tags[standard].tag),
781 tags[standard].totalAliasCount++; /* One more to the row */
808 /* resolve this alias based on the prioritization of the standard tags. */