Home
last modified time | relevance | path

Searched refs:spaceTab (Results 1 – 4 of 4) sorted by relevance

/external/libxml2/
DparserInternals.c1615 if (ctxt->spaceTab == NULL) { in xmlInitParserCtxt()
1616 ctxt->spaceTab = (int *) xmlMalloc(10 * sizeof(int)); in xmlInitParserCtxt()
1619 if (ctxt->spaceTab == NULL) { in xmlInitParserCtxt()
1637 ctxt->spaceTab[0] = -1; in xmlInitParserCtxt()
1638 ctxt->space = &ctxt->spaceTab[0]; in xmlInitParserCtxt()
1694 if (ctxt->spaceTab != NULL) xmlFree(ctxt->spaceTab); in xmlFreeParserCtxt()
Dparser.c1474 ctxt->spaceTab = (int *) xmlRealloc(ctxt->spaceTab, in spacePush()
1475 ctxt->spaceMax * sizeof(ctxt->spaceTab[0])); in spacePush()
1476 if (ctxt->spaceTab == NULL) { in spacePush()
1481 ctxt->spaceTab[ctxt->spaceNr] = val; in spacePush()
1482 ctxt->space = &ctxt->spaceTab[ctxt->spaceNr]; in spacePush()
1491 ctxt->space = &ctxt->spaceTab[ctxt->spaceNr - 1]; in spacePop()
1493 ctxt->space = &ctxt->spaceTab[0]; in spacePop()
1494 ret = ctxt->spaceTab[ctxt->spaceNr]; in spacePop()
1495 ctxt->spaceTab[ctxt->spaceNr] = -1; in spacePop()
13027 if (ctxt->spaceTab != NULL) { in xmlCtxtReset()
[all …]
DHTMLparser.c5819 if (ctxt->spaceTab != NULL) { in htmlCtxtReset()
5820 ctxt->spaceTab[0] = -1; in htmlCtxtReset()
5821 ctxt->space = &ctxt->spaceTab[0]; in htmlCtxtReset()
/external/libxml2/include/libxml/
Dparser.h244 int * spaceTab; /* array of space infos */ member