HomeSort by relevance Sort by last modified time
    Searched refs:nodeInfoNr (Results 1 - 2 of 2) sorted by null

  /external/libxml2/
HTMLparser.c 227 if (ctxt->nodeInfoNr >= ctxt->nodeInfoMax) {
240 ctxt->nodeInfoTab[ctxt->nodeInfoNr] = *value;
241 ctxt->nodeInfo = &ctxt->nodeInfoTab[ctxt->nodeInfoNr];
242 return (ctxt->nodeInfoNr++);
256 if (ctxt->nodeInfoNr <= 0)
258 ctxt->nodeInfoNr--;
259 if (ctxt->nodeInfoNr < 0)
261 if (ctxt->nodeInfoNr > 0)
262 ctxt->nodeInfo = &ctxt->nodeInfoTab[ctxt->nodeInfoNr - 1];
265 return &ctxt->nodeInfoTab[ctxt->nodeInfoNr];
    [all...]
  /external/libxml2/include/libxml/
parser.h 308 int nodeInfoNr; /* Depth of the parsing stack */
    [all...]

Completed in 57 milliseconds