Home | History | Annotate | Download | only in libxml2

Lines Matching refs:annot

488     xmlSchemaAnnotPtr annot;
501 xmlSchemaAnnotPtr annot;
518 xmlSchemaAnnotPtr annot;
663 xmlSchemaAnnotPtr annot;
683 xmlSchemaAnnotPtr annot;
701 xmlSchemaAnnotPtr annot;
738 xmlSchemaAnnotPtr annot;
3501 * @annot: a schema type structure
3694 * @annot: a schema type structure
3699 xmlSchemaFreeAnnot(xmlSchemaAnnotPtr annot)
3701 if (annot == NULL)
3703 if (annot->next == NULL) {
3704 xmlFree(annot);
3709 prev = annot;
3710 annot = annot->next;
3712 } while (annot != NULL);
3741 if (attr->annot != NULL)
3742 xmlSchemaFreeAnnot(attr->annot);
3759 if (use->annot != NULL)
3760 xmlSchemaFreeAnnot(use->annot);
3809 if (wildcard->annot != NULL)
3810 xmlSchemaFreeAnnot(wildcard->annot);
3829 if (attrGr->annot != NULL)
3830 xmlSchemaFreeAnnot(attrGr->annot);
3894 if (idcDef->annot != NULL)
3895 xmlSchemaFreeAnnot(idcDef->annot);
3927 if (elem->annot != NULL)
3928 xmlSchemaFreeAnnot(elem->annot);
3951 if (facet->annot != NULL)
3952 xmlSchemaFreeAnnot(facet->annot);
3967 if (type->annot != NULL)
3968 xmlSchemaFreeAnnot(type->annot);
4007 if (item->annot != NULL)
4008 xmlSchemaFreeAnnot(item->annot);
4021 if (item->annot != NULL)
4022 xmlSchemaFreeAnnot(item->annot);
4059 if (item->annot != NULL)
4060 xmlSchemaFreeAnnot(item->annot);
4150 if (schema->annot != NULL)
4151 xmlSchemaFreeAnnot(schema->annot);
4257 * @annot: a annotation
4262 xmlSchemaAnnotDump(FILE * output, xmlSchemaAnnotPtr annot)
4266 if (annot == NULL)
4269 content = xmlNodeGetContent(annot->content);
4271 fprintf(output, " Annot: %s\n", content);
4274 fprintf(output, " Annot: empty\n");
4485 if (type->annot != NULL)
4486 xmlSchemaAnnotDump(output, type->annot);
4522 if (schema->annot != NULL)
4523 xmlSchemaAnnotDump(output, schema->annot);
5525 ret->annot = NULL;
6700 facet->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
6900 xmlSchemaAnnotPtr annot = NULL;
6945 annot = xmlSchemaParseAnnotation(ctxt, child, 1);
6967 particle->annot = annot;
7007 ret->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
7076 ret->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
7446 use->annot = xmlSchemaParseAnnotation(pctxt, child, 1);
7608 ret->annot = xmlSchemaParseAnnotation(pctxt, child, 1);
7835 ret->annot = xmlSchemaParseAnnotation(pctxt, child, 1);
8089 #define ADD_ANNOTATION(annot) \
8090 xmlSchemaAnnotPtr cur = item->annot; \
8091 if (item->annot == NULL) { \
8092 item->annot = annot; \
8093 return (annot); \
8095 cur = item->annot; \
8099 cur->next = annot;
8104 * @annot: the annotation
8112 xmlSchemaAnnotPtr annot)
8114 if ((annItem == NULL) || (annot == NULL))
8119 ADD_ANNOTATION(annot)
8124 ADD_ANNOTATION(annot)
8130 ADD_ANNOTATION(annot)
8138 ADD_ANNOTATION(annot)
8144 ADD_ANNOTATION(annot)
8149 ADD_ANNOTATION(annot)
8165 ADD_ANNOTATION(annot)
8171 ADD_ANNOTATION(annot)
8176 ADD_ANNOTATION(annot)
8183 ADD_ANNOTATION(annot)
8194 return (annot);
8390 item->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
8461 xmlSchemaAnnotPtr annot = NULL;
8495 annot = xmlSchemaParseAnnotation(ctxt, child, 1);
8580 particle->annot = annot;
8815 decl->annot = annot;
8831 if (annot != NULL) {
8833 particle->annot = NULL;
8835 decl->annot = NULL;
8836 xmlSchemaFreeAnnot(annot);
9295 type->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
9414 item->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
9500 item->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
9752 xmlSchemaAnnotPtr annot;
9765 annot = xmlSchemaParseAnnotation(ctxt, child, 1);
9766 if (schema->annot == NULL)
9767 schema->annot = annot;
9769 xmlSchemaFreeAnnot(annot);
9833 annot = xmlSchemaParseAnnotation(ctxt, child, 1);
9834 if (schema->annot == NULL)
9835 schema->annot = annot;
9837 xmlSchemaFreeAnnot(annot);
11296 item->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
12277 type->annot = xmlSchemaParseAnnotation(ctxt, child, 1);