Lines Matching refs:nodeNr
1770 if (ctxt->nodeNr >= ctxt->nodeMax) { in nodePush()
1783 if ((((unsigned int) ctxt->nodeNr) > xmlParserMaxDepth) && in nodePush()
1791 ctxt->nodeTab[ctxt->nodeNr] = value; in nodePush()
1793 return (ctxt->nodeNr++); in nodePush()
1810 if (ctxt->nodeNr <= 0) in nodePop()
1812 ctxt->nodeNr--; in nodePop()
1813 if (ctxt->nodeNr > 0) in nodePop()
1814 ctxt->node = ctxt->nodeTab[ctxt->nodeNr - 1]; in nodePop()
1817 ret = ctxt->nodeTab[ctxt->nodeNr]; in nodePop()
1818 ctxt->nodeTab[ctxt->nodeNr] = NULL; in nodePop()
12993 ctxt->vctxt.nodeNr = 0; in xmlParseCtxtExternalEntity()
14838 ctxt->nodeNr = 0; in xmlCtxtReset()