Lines Matching defs:link

59 	Link_t			link;
65 Link_t link;
76 Link_t link;
83 Link_t link;
98 Link_t link;
107 Link_t link;
427 cp->link.code = copy(&b, arg[0]);
432 fprintf(stderr, "%s: %d: %s: duplicate charset\n", command, line, cp->link.code);
443 tp->link.code = copy(&b, arg[0]);
486 fprintf(stderr, "%s: %d: %s: duplicate territory\n", command, line, tp->link.code);
497 lp->link.code = copy(&b, arg[0]);
511 fprintf(lf, "\nconst Lc_attribute_t attribute_%s[] =\n{\n", lp->link.code);
532 ap->link.code = b;
533 ap->link.index = i++;
555 fprintf(stderr, "%s: %d: %s: duplicate language\n", command, line, lp->link.code);
566 mp->link.code = copy(&b, arg[0]);
593 if (!strcmp(al->attribute->link.code, arg[4]))
606 fprintf(stderr, "%s: %d: %s: duplicate map\n", command, line, mp->link.code);
698 for (cp = (Charset_t*)state.charset.root; cp; cp = (Charset_t*)cp->link.next)
700 fprintf(lf, "{\"%s\",", cp->link.code);
721 for (lp = (Language_t*)state.language.root; lp; lp = (Language_t*)lp->link.next)
723 fprintf(lf, "{\"%s\",\"%s\",", lp->link.code, lp->name);
728 fprintf(lf, "&lc_charsets[%d],0,", lp->charset ? lp->charset->link.index : 0);
731 fprintf(lf, "&attribute_%s[%d],", lp->link.code, al->attribute->link.index);
746 for (tp = (Territory_t*)state.territory.root; tp; tp = (Territory_t*)tp->link.next)
748 fprintf(lf, "{\"%s\",\"%s\",", tp->link.code, tp->name);
755 fprintf(lf, "&lc_languages[%d],", ll->language->link.index);
766 for (mp = (Map_t*)state.map.root; mp; mp = (Map_t*)mp->link.next)
768 fprintf(lf, "{\"%s\",", mp->link.code);
769 fprintf(lf, "&lc_languages[%d],", mp->language->link.index);
770 fprintf(lf, "&lc_territories[%d],", mp->territory->link.index);
771 fprintf(lf, "&lc_charsets[%d],", mp->charset ? mp->charset->link.index : 0);
773 fprintf(lf, "&attribute_%s[%d]", mp->language->link.code, mp->attribute->link.index);