Home
last modified time | relevance | path

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

/external/libxml2/
DparserInternals.c1616 if (ctxt->spaceTab == NULL) { in xmlInitParserCtxt()
1617 ctxt->spaceTab = (int *) xmlMalloc(10 * sizeof(int)); in xmlInitParserCtxt()
1620 if (ctxt->spaceTab == NULL) { in xmlInitParserCtxt()
1638 ctxt->spaceTab[0] = -1; in xmlInitParserCtxt()
1639 ctxt->space = &ctxt->spaceTab[0]; in xmlInitParserCtxt()
1696 if (ctxt->spaceTab != NULL) xmlFree(ctxt->spaceTab); in xmlFreeParserCtxt()
Dparser.c1730 tmp = (int *) xmlRealloc(ctxt->spaceTab, in spacePush()
1731 ctxt->spaceMax * sizeof(ctxt->spaceTab[0])); in spacePush()
1737 ctxt->spaceTab = tmp; in spacePush()
1739 ctxt->spaceTab[ctxt->spaceNr] = val; in spacePush()
1740 ctxt->space = &ctxt->spaceTab[ctxt->spaceNr]; in spacePush()
1749 ctxt->space = &ctxt->spaceTab[ctxt->spaceNr - 1]; in spacePop()
1751 ctxt->space = &ctxt->spaceTab[0]; in spacePop()
1752 ret = ctxt->spaceTab[ctxt->spaceNr]; in spacePop()
1753 ctxt->spaceTab[ctxt->spaceNr] = -1; in spacePop()
13925 if (ctxt->spaceTab != NULL) { in xmlCtxtReset()
[all …]
DHTMLparser.c5861 if (ctxt->spaceTab != NULL) { in htmlCtxtReset()
5862 ctxt->spaceTab[0] = -1; in htmlCtxtReset()
5863 ctxt->space = &ctxt->spaceTab[0]; in htmlCtxtReset()
/external/libxml2/include/libxml/
Dparser.h244 int * spaceTab; /* array of space infos */ member