Lines Matching refs:standard

64 /* The maximum number of aliases that a standard tag/converter combination can have.
139 /* Were the standard tags declared before the aliases. */
171 addAlias(const char *alias, uint16_t standard, uint16_t converter, UBool defaultName);
380 fprintf(stderr, "%s:%d: error: alias table needs to start a list of standard tags\n", path, lineNum);
664 @param standard When standard is 0, then it's the "empty" tag.
667 addAlias(const char *alias, uint16_t standard, uint16_t converter, UBool defaultName) {
672 if(standard>=MAX_TAG_COUNT) {
673 fprintf(stderr, "%s:%d: error: too many standard tags\n", path, lineNum);
680 aliasList = &tags[standard].aliasList[converter];
694 if (standard == ALL_TAG_NUM && GET_ALIAS_STR(converters[converter].converter) != alias) {
710 if (standard != ALL_TAG_NUM) {
713 for (idx2 = 0; idx2 < tags[standard].aliasList[idx].aliasCount; idx2++) {
714 uint16_t aliasNum = tags[standard].aliasList[idx].aliases[idx2];
720 * (alias, standard) duplicates are harmless if they map to the same converter.
725 fprintf(stderr, "%s:%d: warning: duplicate aliases %s and %s found for standard %s and converter %s\n", path,
727 GET_TAG_STR(tags[standard].tag),
731 fprintf(stderr, "%s:%d: warning: duplicate aliases %s and %s found for standard tag %s between converter %s and converter %s\n", path,
733 GET_TAG_STR(tags[standard].tag),
751 fprintf(stderr, "%s:%d: warning: duplicate alias %s found for converter %s and standard tag %s\n", path,
752 lineNum, alias, GET_ALIAS_STR(converters[converter].converter), GET_TAG_STR(tags[standard].tag));
770 fprintf(stderr, "%s:%d: error: Alias %s and %s cannot both be the default alias for standard tag %s and converter %s\n", path,
774 GET_TAG_STR(tags[standard].tag),
785 tags[standard].totalAliasCount++; /* One more to the row */
812 /* resolve this alias based on the prioritization of the standard tags. */