Home
last modified time | relevance | path

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

/external/libxml2/
DparserInternals.c1702 if (ctxt->spaceTab == NULL) { in xmlInitParserCtxt()
1703 ctxt->spaceTab = (int *) xmlMalloc(10 * sizeof(int)); in xmlInitParserCtxt()
1706 if (ctxt->spaceTab == NULL) { in xmlInitParserCtxt()
1724 ctxt->spaceTab[0] = -1; in xmlInitParserCtxt()
1725 ctxt->space = &ctxt->spaceTab[0]; in xmlInitParserCtxt()
1782 if (ctxt->spaceTab != NULL) xmlFree(ctxt->spaceTab); in xmlFreeParserCtxt()
Dparser.c1878 tmp = (int *) xmlRealloc(ctxt->spaceTab, in spacePush()
1879 ctxt->spaceMax * sizeof(ctxt->spaceTab[0])); in spacePush()
1885 ctxt->spaceTab = tmp; in spacePush()
1887 ctxt->spaceTab[ctxt->spaceNr] = val; in spacePush()
1888 ctxt->space = &ctxt->spaceTab[ctxt->spaceNr]; in spacePush()
1897 ctxt->space = &ctxt->spaceTab[ctxt->spaceNr - 1]; in spacePop()
1899 ctxt->space = &ctxt->spaceTab[0]; in spacePop()
1900 ret = ctxt->spaceTab[ctxt->spaceNr]; in spacePop()
1901 ctxt->spaceTab[ctxt->spaceNr] = -1; in spacePop()
14275 if (ctxt->spaceTab != NULL) { in xmlCtxtReset()
[all …]
DHTMLparser.c6421 if (ctxt->spaceTab != NULL) { in htmlCtxtReset()
6422 ctxt->spaceTab[0] = -1; in htmlCtxtReset()
6423 ctxt->space = &ctxt->spaceTab[0]; in htmlCtxtReset()
/external/libxml2/include/libxml/
Dparser.h247 int * spaceTab; /* array of space infos */ member