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