Home
last modified time | relevance | path

Searched refs:nodeInfoNr (Results 1 – 2 of 2) sorted by relevance

/external/libxml2/
DHTMLparser.c224 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()
[all …]
/external/libxml2/include/libxml/
Dparser.h308 int nodeInfoNr; /* Depth of the parsing stack */ member