Lines Matching refs:nodeInfoNr
224 if (ctxt->nodeInfoNr >= ctxt->nodeInfoMax) { in htmlNodeInfoPush()
237 ctxt->nodeInfoTab[ctxt->nodeInfoNr] = *value; in htmlNodeInfoPush()
238 ctxt->nodeInfo = &ctxt->nodeInfoTab[ctxt->nodeInfoNr]; in htmlNodeInfoPush()
239 return (ctxt->nodeInfoNr++); in htmlNodeInfoPush()
253 if (ctxt->nodeInfoNr <= 0) in htmlNodeInfoPop()
255 ctxt->nodeInfoNr--; in htmlNodeInfoPop()
256 if (ctxt->nodeInfoNr < 0) in htmlNodeInfoPop()
258 if (ctxt->nodeInfoNr > 0) in htmlNodeInfoPop()
259 ctxt->nodeInfo = &ctxt->nodeInfoTab[ctxt->nodeInfoNr - 1]; in htmlNodeInfoPop()
262 return &ctxt->nodeInfoTab[ctxt->nodeInfoNr]; in htmlNodeInfoPop()
4781 ctxt->nodeInfoNr = 0; in htmlInitParserCtxt()