• Home
  • Raw
  • Download

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()
4980 cur = ctxt->vstate->node; in xmlValidateElementType()
4986 if (cur != ctxt->vstate->node) in xmlValidateElementType()
4991 cur = ctxt->vstate->node; in xmlValidateElementType()
4997 if (cur != ctxt->vstate->node) in xmlValidateElementType()
5105 cur = ctxt->vstate->node; in xmlValidateElementType()
5111 if (cur != ctxt->vstate->node) in xmlValidateElementType()
5118 cur = ctxt->vstate->node; in xmlValidateElementType()
5124 if (cur != ctxt->vstate->node) in xmlValidateElementType()
5340 ctxt->vstate = &ctxt->vstateTab[0]; in xmlValidateElementContent()
5429 ctxt->vstate = &ctxt->vstateTab[0]; in xmlValidateElementContent()
5723 if ((ctxt->vstateNr > 0) && (ctxt->vstate != NULL)) { in xmlValidatePushElement()
5724 xmlValidStatePtr state = ctxt->vstate; in xmlValidatePushElement()
5815 if ((ctxt->vstateNr > 0) && (ctxt->vstate != NULL)) { in xmlValidatePushCData()
5816 xmlValidStatePtr state = ctxt->vstate; in xmlValidatePushCData()
5889 if ((ctxt->vstateNr > 0) && (ctxt->vstate != NULL)) { in xmlValidatePopElement()
5890 xmlValidStatePtr state = ctxt->vstate; in xmlValidatePopElement()