Lines Matching refs:nodeInfoNr
227 if (ctxt->nodeInfoNr >= ctxt->nodeInfoMax) { in htmlNodeInfoPush()
240 ctxt->nodeInfoTab[ctxt->nodeInfoNr] = *value; in htmlNodeInfoPush()
241 ctxt->nodeInfo = &ctxt->nodeInfoTab[ctxt->nodeInfoNr]; in htmlNodeInfoPush()
242 return (ctxt->nodeInfoNr++); in htmlNodeInfoPush()
256 if (ctxt->nodeInfoNr <= 0) in htmlNodeInfoPop()
258 ctxt->nodeInfoNr--; in htmlNodeInfoPop()
259 if (ctxt->nodeInfoNr < 0) in htmlNodeInfoPop()
261 if (ctxt->nodeInfoNr > 0) in htmlNodeInfoPop()
262 ctxt->nodeInfo = &ctxt->nodeInfoTab[ctxt->nodeInfoNr - 1]; in htmlNodeInfoPop()
265 return &ctxt->nodeInfoTab[ctxt->nodeInfoNr]; in htmlNodeInfoPop()
5092 ctxt->nodeInfoNr = 0; in htmlInitParserCtxt()