Lines Matching defs:_xmlElement
345 struct _xmlElement { struct
346 void *_private; /* application data */
347 xmlElementType type; /* XML_ELEMENT_DECL, must be second ! */
348 const xmlChar *name; /* Element name */
349 struct _xmlNode *children; /* NULL */
350 struct _xmlNode *last; /* NULL */
351 struct _xmlDtd *parent; /* -> DTD */
352 struct _xmlNode *next; /* next sibling link */
353 struct _xmlNode *prev; /* previous sibling link */
354 struct _xmlDoc *doc; /* the containing document */
356 xmlElementTypeVal etype; /* The type */
357 xmlElementContentPtr content; /* the allowed element content */
358 xmlAttributePtr attributes; /* List of the declared attributes */
359 const xmlChar *prefix; /* the namespace prefix if any */
361 xmlRegexpPtr contModel; /* the validating regexp */
363 void *contModel;