Lines Matching refs:vstate
297 ctxt->vstate = &ctxt->vstateTab[ctxt->vstateNr]; in vstateVPush()
331 ctxt->vstate = &ctxt->vstateTab[ctxt->vstateNr - 1]; in vstateVPop()
333 ctxt->vstate = NULL; in vstateVPop()
361 #define CONT ctxt->vstate->cont
362 #define NODE ctxt->vstate->node
363 #define DEPTH ctxt->vstate->depth
364 #define OCCURS ctxt->vstate->occurs
365 #define STATE ctxt->vstate->state
367 #define OCCURRENCE (ctxt->vstate->occurs & (1 << DEPTH))
368 #define PARENT_OCCURRENCE (ctxt->vstate->occurs & ((1 << DEPTH) - 1))
370 #define SET_OCCURRENCE ctxt->vstate->occurs |= (1 << DEPTH)
371 #define RESET_OCCURRENCE ctxt->vstate->occurs &= ((1 << DEPTH) - 1)
402 ctxt->vstate = &ctxt->vstateTab[0]; in vstateVPush()
425 ctxt->vstate = &ctxt->vstateTab[0]; in vstateVPop()
426 ctxt->vstate->cont = ctxt->vstateTab[ctxt->vstateNr].cont; in vstateVPop()
427 ctxt->vstate->node = ctxt->vstateTab[ctxt->vstateNr].node; in vstateVPop()
428 ctxt->vstate->depth = ctxt->vstateTab[ctxt->vstateNr].depth; in vstateVPop()
429 ctxt->vstate->occurs = ctxt->vstateTab[ctxt->vstateNr].occurs; in vstateVPop()
430 ctxt->vstate->state = ctxt->vstateTab[ctxt->vstateNr].state; in vstateVPop()
611 xmlValidDebugState(ctxt->vstate); in xmlValidStateDebug()
4979 cur = ctxt->vstate->node; in xmlValidateElementType()
4985 if (cur != ctxt->vstate->node) in xmlValidateElementType()
4990 cur = ctxt->vstate->node; in xmlValidateElementType()
4996 if (cur != ctxt->vstate->node) in xmlValidateElementType()
5104 cur = ctxt->vstate->node; in xmlValidateElementType()
5110 if (cur != ctxt->vstate->node) in xmlValidateElementType()
5117 cur = ctxt->vstate->node; in xmlValidateElementType()
5123 if (cur != ctxt->vstate->node) in xmlValidateElementType()
5339 ctxt->vstate = &ctxt->vstateTab[0]; in xmlValidateElementContent()
5428 ctxt->vstate = &ctxt->vstateTab[0]; in xmlValidateElementContent()
5722 if ((ctxt->vstateNr > 0) && (ctxt->vstate != NULL)) { in xmlValidatePushElement()
5723 xmlValidStatePtr state = ctxt->vstate; in xmlValidatePushElement()
5814 if ((ctxt->vstateNr > 0) && (ctxt->vstate != NULL)) { in xmlValidatePushCData()
5815 xmlValidStatePtr state = ctxt->vstate; in xmlValidatePushCData()
5888 if ((ctxt->vstateNr > 0) && (ctxt->vstate != NULL)) { in xmlValidatePopElement()
5889 xmlValidStatePtr state = ctxt->vstate; in xmlValidatePopElement()