Lines Matching defs:_xmlElement
307 struct _xmlElement { struct
308 void *_private; /* application data */
309 xmlElementType type; /* XML_ELEMENT_DECL, must be second ! */
310 const xmlChar *name; /* Element name */
311 struct _xmlNode *children; /* NULL */
312 struct _xmlNode *last; /* NULL */
313 struct _xmlDtd *parent; /* -> DTD */
314 struct _xmlNode *next; /* next sibling link */
315 struct _xmlNode *prev; /* previous sibling link */
316 struct _xmlDoc *doc; /* the containing document */
318 xmlElementTypeVal etype; /* The type */
319 xmlElementContentPtr content; /* the allowed element content */
320 xmlAttributePtr attributes; /* List of the declared attributes */
321 const xmlChar *prefix; /* the namespace prefix if any */
323 xmlRegexpPtr contModel; /* the validating regexp */
325 void *contModel;