• Home
  • Raw
  • Download

Lines Matching refs:resObj

14170     xmlXPathObjectPtr resObj = NULL;  in xmlXPathCompOpEvalToBoolean()  local
14178 resObj = (xmlXPathObjectPtr) op->value4; in xmlXPathCompOpEvalToBoolean()
14180 return(xmlXPathEvaluatePredicateResult(ctxt, resObj)); in xmlXPathCompOpEvalToBoolean()
14181 return(xmlXPathCastToBoolean(resObj)); in xmlXPathCompOpEvalToBoolean()
14203 resObj = valuePop(ctxt); in xmlXPathCompOpEvalToBoolean()
14204 if (resObj == NULL) in xmlXPathCompOpEvalToBoolean()
14215 resObj = valuePop(ctxt); in xmlXPathCompOpEvalToBoolean()
14216 if (resObj == NULL) in xmlXPathCompOpEvalToBoolean()
14221 if (resObj) { in xmlXPathCompOpEvalToBoolean()
14224 if (resObj->type == XPATH_BOOLEAN) { in xmlXPathCompOpEvalToBoolean()
14225 res = resObj->boolval; in xmlXPathCompOpEvalToBoolean()
14235 res = xmlXPathEvaluatePredicateResult(ctxt, resObj); in xmlXPathCompOpEvalToBoolean()
14237 res = xmlXPathCastToBoolean(resObj); in xmlXPathCompOpEvalToBoolean()
14239 xmlXPathReleaseObject(ctxt->context, resObj); in xmlXPathCompOpEvalToBoolean()
14521 xmlXPathObjectPtr resObj = NULL; in xmlXPathRunEval() local
14527 ctxt->comp->stream, &resObj, 0); in xmlXPathRunEval()
14529 if ((res != -1) && (resObj != NULL)) { in xmlXPathRunEval()
14530 valuePush(ctxt, resObj); in xmlXPathRunEval()
14533 if (resObj != NULL) in xmlXPathRunEval()
14534 xmlXPathReleaseObject(ctxt->context, resObj); in xmlXPathRunEval()
14886 xmlXPathObjectPtr *resObj, in xmlXPathCompiledEvalInternal() argument
14917 if (resObj) { in xmlXPathCompiledEvalInternal()
14921 *resObj = NULL; in xmlXPathCompiledEvalInternal()
14923 *resObj = valuePop(pctxt); in xmlXPathCompiledEvalInternal()
14942 ((toBool) || ((resObj) && (*resObj)))) in xmlXPathCompiledEvalInternal()
14950 if ((pctxt->error != XPATH_EXPRESSION_OK) && (resObj) && (*resObj)) { in xmlXPathCompiledEvalInternal()
14951 xmlXPathFreeObject(*resObj); in xmlXPathCompiledEvalInternal()
14952 *resObj = NULL; in xmlXPathCompiledEvalInternal()