Lines Matching refs:valueTab
2868 ctxt->value = ctxt->valueTab[ctxt->valueNr - 1]; in valuePop()
2871 ret = ctxt->valueTab[ctxt->valueNr]; in valuePop()
2872 ctxt->valueTab[ctxt->valueNr] = NULL; in valuePop()
2904 tmp = (xmlXPathObjectPtr *) xmlRealloc(ctxt->valueTab, in valuePush()
2906 sizeof(ctxt->valueTab[0])); in valuePush()
2912 ctxt->valueTab = tmp; in valuePush()
2914 ctxt->valueTab[ctxt->valueNr] = value; in valuePush()
6219 xmlFree(ret->valueTab); in xmlXPathNewParserContext()
6252 ret->valueTab = (xmlXPathObjectPtr *) in xmlXPathCompParserContext()
6254 if (ret->valueTab == NULL) { in xmlXPathCompParserContext()
6280 if (ctxt->valueTab != NULL) { in xmlXPathFreeParserContext()
6283 xmlXPathReleaseObject(ctxt->context, ctxt->valueTab[i]); in xmlXPathFreeParserContext()
6285 xmlXPathFreeObject(ctxt->valueTab[i]); in xmlXPathFreeParserContext()
6287 xmlFree(ctxt->valueTab); in xmlXPathFreeParserContext()
13174 if (ctxt->valueTab[(ctxt->valueNr - 1) - i] == NULL) { in xmlXPathCompOpEval()
13897 if (ctxt->valueTab == NULL) { in xmlXPathRunEval()
13899 ctxt->valueTab = (xmlXPathObjectPtr *) in xmlXPathRunEval()
13901 if (ctxt->valueTab == NULL) { in xmlXPathRunEval()