Lines Matching defs:annot
488 xmlSchemaAnnotPtr annot;
501 xmlSchemaAnnotPtr annot;
518 xmlSchemaAnnotPtr annot;
663 xmlSchemaAnnotPtr annot;
683 xmlSchemaAnnotPtr annot;
701 xmlSchemaAnnotPtr annot;
738 xmlSchemaAnnotPtr annot;
3499 * @annot: a schema type structure
3692 * @annot: a schema type structure
3697 xmlSchemaFreeAnnot(xmlSchemaAnnotPtr annot)
3699 if (annot == NULL)
3701 if (annot->next == NULL) {
3702 xmlFree(annot);
3707 prev = annot;
3708 annot = annot->next;
3710 } while (annot != NULL);
3739 if (attr->annot != NULL)
3740 xmlSchemaFreeAnnot(attr->annot);
3757 if (use->annot != NULL)
3758 xmlSchemaFreeAnnot(use->annot);
3807 if (wildcard->annot != NULL)
3808 xmlSchemaFreeAnnot(wildcard->annot);
3827 if (attrGr->annot != NULL)
3828 xmlSchemaFreeAnnot(attrGr->annot);
3892 if (idcDef->annot != NULL)
3893 xmlSchemaFreeAnnot(idcDef->annot);
3925 if (elem->annot != NULL)
3926 xmlSchemaFreeAnnot(elem->annot);
3949 if (facet->annot != NULL)
3950 xmlSchemaFreeAnnot(facet->annot);
3965 if (type->annot != NULL)
3966 xmlSchemaFreeAnnot(type->annot);
4005 if (item->annot != NULL)
4006 xmlSchemaFreeAnnot(item->annot);
4019 if (item->annot != NULL)
4020 xmlSchemaFreeAnnot(item->annot);
4057 if (item->annot != NULL)
4058 xmlSchemaFreeAnnot(item->annot);
4148 if (schema->annot != NULL)
4149 xmlSchemaFreeAnnot(schema->annot);
4255 * @annot: a annotation
4260 xmlSchemaAnnotDump(FILE * output, xmlSchemaAnnotPtr annot)
4264 if (annot == NULL)
4267 content = xmlNodeGetContent(annot->content);
4269 fprintf(output, " Annot: %s\n", content);
4272 fprintf(output, " Annot: empty\n");
4483 if (type->annot != NULL)
4484 xmlSchemaAnnotDump(output, type->annot);
4520 if (schema->annot != NULL)
4521 xmlSchemaAnnotDump(output, schema->annot);
5523 ret->annot = NULL;
6698 facet->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
6898 xmlSchemaAnnotPtr annot = NULL;
6943 annot = xmlSchemaParseAnnotation(ctxt, child, 1);
6965 particle->annot = annot;
7005 ret->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
7074 ret->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
7444 use->annot = xmlSchemaParseAnnotation(pctxt, child, 1);
7606 ret->annot = xmlSchemaParseAnnotation(pctxt, child, 1);
7833 ret->annot = xmlSchemaParseAnnotation(pctxt, child, 1);
8087 #define ADD_ANNOTATION(annot) \
8088 xmlSchemaAnnotPtr cur = item->annot; \
8089 if (item->annot == NULL) { \
8090 item->annot = annot; \
8091 return (annot); \
8093 cur = item->annot; \
8097 cur->next = annot;
8102 * @annot: the annotation
8110 xmlSchemaAnnotPtr annot)
8112 if ((annItem == NULL) || (annot == NULL))
8117 ADD_ANNOTATION(annot)
8122 ADD_ANNOTATION(annot)
8128 ADD_ANNOTATION(annot)
8136 ADD_ANNOTATION(annot)
8142 ADD_ANNOTATION(annot)
8147 ADD_ANNOTATION(annot)
8163 ADD_ANNOTATION(annot)
8169 ADD_ANNOTATION(annot)
8174 ADD_ANNOTATION(annot)
8181 ADD_ANNOTATION(annot)
8192 return (annot);
8388 item->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
8459 xmlSchemaAnnotPtr annot = NULL;
8493 annot = xmlSchemaParseAnnotation(ctxt, child, 1);
8578 particle->annot = annot;
8813 decl->annot = annot;
8829 if (annot != NULL) {
8831 particle->annot = NULL;
8833 decl->annot = NULL;
8834 xmlSchemaFreeAnnot(annot);
9293 type->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
9412 item->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
9498 item->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
9750 xmlSchemaAnnotPtr annot;
9763 annot = xmlSchemaParseAnnotation(ctxt, child, 1);
9764 if (schema->annot == NULL)
9765 schema->annot = annot;
9767 xmlSchemaFreeAnnot(annot);
9831 annot = xmlSchemaParseAnnotation(ctxt, child, 1);
9832 if (schema->annot == NULL)
9833 schema->annot = annot;
9835 xmlSchemaFreeAnnot(annot);
11294 item->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
12275 type->annot = xmlSchemaParseAnnotation(ctxt, child, 1);