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;
3480 * @annot: a schema type structure
3673 * @annot: a schema type structure
3678 xmlSchemaFreeAnnot(xmlSchemaAnnotPtr annot)
3680 if (annot == NULL)
3682 if (annot->next == NULL) {
3683 xmlFree(annot);
3688 prev = annot;
3689 annot = annot->next;
3691 } while (annot != NULL);
3720 if (attr->annot != NULL)
3721 xmlSchemaFreeAnnot(attr->annot);
3738 if (use->annot != NULL)
3739 xmlSchemaFreeAnnot(use->annot);
3788 if (wildcard->annot != NULL)
3789 xmlSchemaFreeAnnot(wildcard->annot);
3808 if (attrGr->annot != NULL)
3809 xmlSchemaFreeAnnot(attrGr->annot);
3873 if (idcDef->annot != NULL)
3874 xmlSchemaFreeAnnot(idcDef->annot);
3906 if (elem->annot != NULL)
3907 xmlSchemaFreeAnnot(elem->annot);
3930 if (facet->annot != NULL)
3931 xmlSchemaFreeAnnot(facet->annot);
3946 if (type->annot != NULL)
3947 xmlSchemaFreeAnnot(type->annot);
3986 if (item->annot != NULL)
3987 xmlSchemaFreeAnnot(item->annot);
4000 if (item->annot != NULL)
4001 xmlSchemaFreeAnnot(item->annot);
4038 if (item->annot != NULL)
4039 xmlSchemaFreeAnnot(item->annot);
4129 if (schema->annot != NULL)
4130 xmlSchemaFreeAnnot(schema->annot);
4236 * @annot: a annotation
4241 xmlSchemaAnnotDump(FILE * output, xmlSchemaAnnotPtr annot)
4245 if (annot == NULL)
4248 content = xmlNodeGetContent(annot->content);
4464 if (type->annot != NULL)
4465 xmlSchemaAnnotDump(output, type->annot);
4501 if (schema->annot != NULL)
4502 xmlSchemaAnnotDump(output, schema->annot);
5504 ret->annot = NULL;
6679 facet->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
6879 xmlSchemaAnnotPtr annot = NULL;
6924 annot = xmlSchemaParseAnnotation(ctxt, child, 1);
6946 particle->annot = annot;
6986 ret->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
7055 ret->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
7425 use->annot = xmlSchemaParseAnnotation(pctxt, child, 1);
7587 ret->annot = xmlSchemaParseAnnotation(pctxt, child, 1);
7814 ret->annot = xmlSchemaParseAnnotation(pctxt, child, 1);
8068 #define ADD_ANNOTATION(annot) \
8069 xmlSchemaAnnotPtr cur = item->annot; \
8070 if (item->annot == NULL) { \
8071 item->annot = annot; \
8072 return (annot); \
8074 cur = item->annot; \
8078 cur->next = annot;
8083 * @annot: the annotation
8091 xmlSchemaAnnotPtr annot)
8093 if ((annItem == NULL) || (annot == NULL))
8098 ADD_ANNOTATION(annot)
8103 ADD_ANNOTATION(annot)
8109 ADD_ANNOTATION(annot)
8117 ADD_ANNOTATION(annot)
8123 ADD_ANNOTATION(annot)
8128 ADD_ANNOTATION(annot)
8144 ADD_ANNOTATION(annot)
8150 ADD_ANNOTATION(annot)
8155 ADD_ANNOTATION(annot)
8162 ADD_ANNOTATION(annot)
8173 return (annot);
8369 item->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
8440 xmlSchemaAnnotPtr annot = NULL;
8474 annot = xmlSchemaParseAnnotation(ctxt, child, 1);
8559 particle->annot = annot;
8794 decl->annot = annot;
8810 if (annot != NULL) {
8812 particle->annot = NULL;
8814 decl->annot = NULL;
8815 xmlSchemaFreeAnnot(annot);
9274 type->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
9393 item->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
9479 item->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
9731 xmlSchemaAnnotPtr annot;
9744 annot = xmlSchemaParseAnnotation(ctxt, child, 1);
9745 if (schema->annot == NULL)
9746 schema->annot = annot;
9748 xmlSchemaFreeAnnot(annot);
9812 annot = xmlSchemaParseAnnotation(ctxt, child, 1);
9813 if (schema->annot == NULL)
9814 schema->annot = annot;
9816 xmlSchemaFreeAnnot(annot);
11275 item->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
12256 type->annot = xmlSchemaParseAnnotation(ctxt, child, 1);