Lines Matching refs:nodeNr
450 if (ctxt->nodeNr >= ctxt->nodeMax) { in nodeVPush()
461 ctxt->nodeTab[ctxt->nodeNr] = value; in nodeVPush()
463 return (ctxt->nodeNr++); in nodeVPush()
470 if (ctxt->nodeNr <= 0) in nodeVPop()
472 ctxt->nodeNr--; in nodeVPop()
473 if (ctxt->nodeNr > 0) in nodeVPop()
474 ctxt->node = ctxt->nodeTab[ctxt->nodeNr - 1]; in nodeVPop()
477 ret = ctxt->nodeTab[ctxt->nodeNr]; in nodeVPop()
478 ctxt->nodeTab[ctxt->nodeNr] = NULL; in nodeVPop()
5307 ctxt->nodeNr = 0; in xmlValidateElementContent()
5387 ctxt->nodeNr = 0; in xmlValidateElementContent()
5545 ctxt->nodeNr = 0; in xmlValidateElementContent()
5612 ctxt->nodeNr = 0; in xmlValidateOneCdataElement()