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. */
166 addAlias(const char *alias, uint16_t standard, uint16_t converter, UBool defaultName);
359 fprintf(stderr, "%s:%d: error: alias table needs to start a list of standard tags\n", path, lineNum);
642 @param standard When standard is 0, then it's the "empty" tag.
645 addAlias(const char *alias, uint16_t standard, uint16_t converter, UBool defaultName) {
651 if(standard>=MAX_TAG_COUNT) {
652 fprintf(stderr, "%s:%d: error: too many standard tags\n", path, lineNum);
659 aliasList = &tags[standard].aliasList[converter];
673 if (standard == ALL_TAG_NUM && GET_ALIAS_STR(converters[converter].converter) != alias) {
689 if (standard != ALL_TAG_NUM) {
692 for (idx2 = 0; idx2 < tags[standard].aliasList[idx].aliasCount; idx2++) {
693 uint16_t aliasNum = tags[standard].aliasList[idx].aliases[idx2];
699 * (alias, standard) duplicates are harmless if they map to the same converter.
704 fprintf(stderr, "%s:%d: warning: duplicate aliases %s and %s found for standard %s and converter %s\n", path,
706 GET_TAG_STR(tags[standard].tag),
710 fprintf(stderr, "%s:%d: warning: duplicate aliases %s and %s found for standard tag %s between converter %s and converter %s\n", path,
712 GET_TAG_STR(tags[standard].tag),
731 fprintf(stderr, "%s:%d: warning: duplicate alias %s found for converter %s and standard tag %s\n", path,
732 lineNum, alias, GET_ALIAS_STR(converters[converter].converter), GET_TAG_STR(tags[standard].tag));
750 fprintf(stderr, "%s:%d: error: Alias %s and %s cannot both be the default alias for standard tag %s and converter %s\n", path,
754 GET_TAG_STR(tags[standard].tag),
765 tags[standard].totalAliasCount++; /* One more to the row */
792 /* resolve this alias based on the prioritization of the standard tags. */