Home
last modified time | relevance | path

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

/external/libxml2/
Drelaxng.c387 xmlRegExecCtxtPtr *elemTab; /* the stack of regexp runtime */ member
8077 if (ctxt->elemTab == NULL) { in xmlRelaxNGElemPush()
8079 ctxt->elemTab = (xmlRegExecCtxtPtr *) xmlMalloc(ctxt->elemMax * in xmlRelaxNGElemPush()
8082 if (ctxt->elemTab == NULL) { in xmlRelaxNGElemPush()
8089 ctxt->elemTab = (xmlRegExecCtxtPtr *) xmlRealloc(ctxt->elemTab, in xmlRelaxNGElemPush()
8093 if (ctxt->elemTab == NULL) { in xmlRelaxNGElemPush()
8098 ctxt->elemTab[ctxt->elemNr++] = exec; in xmlRelaxNGElemPush()
8119 ret = ctxt->elemTab[ctxt->elemNr]; in xmlRelaxNGElemPop()
8120 ctxt->elemTab[ctxt->elemNr] = NULL; in xmlRelaxNGElemPop()
8122 ctxt->elem = ctxt->elemTab[ctxt->elemNr - 1]; in xmlRelaxNGElemPop()
[all …]