Lines Matching defs:_xmlValidCtxt
71 struct _xmlValidCtxt { struct
72 void *userData; /* user specific data block */
73 xmlValidityErrorFunc error; /* the callback in case of errors */
74 xmlValidityWarningFunc warning; /* the callback in case of warning */
77 xmlNodePtr node; /* Current parsed Node */
78 int nodeNr; /* Depth of the parsing stack */
79 int nodeMax; /* Max depth of the parsing stack */
80 xmlNodePtr *nodeTab; /* array of nodes */
82 unsigned int flags; /* internal flags */
83 xmlDocPtr doc; /* the document */
84 int valid; /* temporary validity check result */
87 xmlValidState *vstate; /* current state */
88 int vstateNr; /* Depth of the validation stack */
89 int vstateMax; /* Max depth of the validation stack */
90 xmlValidState *vstateTab; /* array of validation states */
93 xmlAutomataPtr am; /* the automata */
94 xmlAutomataStatePtr state; /* used to build the automata */
96 void *am;
97 void *state;