Lines Matching refs:nodeNr
1758 if (ctxt->nodeNr >= ctxt->nodeMax) { in nodePush()
1771 if ((((unsigned int) ctxt->nodeNr) > xmlParserMaxDepth) && in nodePush()
1779 ctxt->nodeTab[ctxt->nodeNr] = value; in nodePush()
1781 return (ctxt->nodeNr++); in nodePush()
1798 if (ctxt->nodeNr <= 0) in nodePop()
1800 ctxt->nodeNr--; in nodePop()
1801 if (ctxt->nodeNr > 0) in nodePop()
1802 ctxt->node = ctxt->nodeTab[ctxt->nodeNr - 1]; in nodePop()
1805 ret = ctxt->nodeTab[ctxt->nodeNr]; in nodePop()
1806 ctxt->nodeTab[ctxt->nodeNr] = NULL; in nodePop()
13195 ctxt->vctxt.nodeNr = 0; in xmlParseCtxtExternalEntity()
15032 ctxt->nodeNr = 0; in xmlCtxtReset()