• 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()
640 xmlValidDebugState(ctxt->vstate); in xmlValidStateDebug()
5083 cur = ctxt->vstate->node; in xmlValidateElementType()
5089 if (cur != ctxt->vstate->node) in xmlValidateElementType()
5094 cur = ctxt->vstate->node; in xmlValidateElementType()
5100 if (cur != ctxt->vstate->node) in xmlValidateElementType()
5208 cur = ctxt->vstate->node; in xmlValidateElementType()
5214 if (cur != ctxt->vstate->node) in xmlValidateElementType()
5221 cur = ctxt->vstate->node; in xmlValidateElementType()
5227 if (cur != ctxt->vstate->node) in xmlValidateElementType()
5444 ctxt->vstate = &ctxt->vstateTab[0]; in xmlValidateElementContent()
5533 ctxt->vstate = &ctxt->vstateTab[0]; in xmlValidateElementContent()
5827 if ((ctxt->vstateNr > 0) && (ctxt->vstate != NULL)) { in xmlValidatePushElement()
5828 xmlValidStatePtr state = ctxt->vstate; in xmlValidatePushElement()
5919 if ((ctxt->vstateNr > 0) && (ctxt->vstate != NULL)) { in xmlValidatePushCData()
5920 xmlValidStatePtr state = ctxt->vstate; in xmlValidatePushCData()
5992 if ((ctxt->vstateNr > 0) && (ctxt->vstate != NULL)) { in xmlValidatePopElement()
5993 xmlValidStatePtr state = ctxt->vstate; in xmlValidatePopElement()