Lines Matching refs:NULL

43 	zend_string *callable = NULL;  in dom_xpath_ext_function_php()
53 if (intern == NULL) { in dom_xpath_ext_function_php()
74 zend_throw_error(NULL, "Function name must be passed as the first argument"); in dom_xpath_ext_function_php()
141 if (obj->stringval == NULL) { in dom_xpath_ext_function_php()
149 fci.object = NULL; in dom_xpath_ext_function_php()
150 fci.named_params = NULL; in dom_xpath_ext_function_php()
154 zend_throw_error(NULL, "Unable to call handler %s()", ZSTR_VAL(callable)); in dom_xpath_ext_function_php()
157 zend_throw_error(NULL, "Not allowed to call handler '%s()'.", ZSTR_VAL(callable)); in dom_xpath_ext_function_php()
160 result = zend_call_function(&fci, NULL); in dom_xpath_ext_function_php()
165 if (intern->node_list == NULL) { in dom_xpath_ext_function_php()
216 xmlDocPtr docp = NULL; in PHP_METHOD()
228 if (ctx == NULL) { in PHP_METHOD()
234 if (intern != NULL) { in PHP_METHOD()
236 if (oldctx != NULL) { in PHP_METHOD()
260 xmlDoc *docp = NULL; in dom_xpath_document_read()
309 if (ctxp == NULL) { in PHP_METHOD()
310 zend_throw_error(NULL, "Invalid XPath Context"); in PHP_METHOD()
332 zval *id, retval, *context = NULL; in php_xpath_eval()
334 xmlNodePtr nodep = NULL; in php_xpath_eval()
340 xmlDoc *docp = NULL; in php_xpath_eval()
341 xmlNsPtr *ns = NULL; in php_xpath_eval()
353 if (ctxp == NULL) { in php_xpath_eval()
354 zend_throw_error(NULL, "Invalid XPath Context"); in php_xpath_eval()
359 if (docp == NULL) { in php_xpath_eval()
360 php_error_docref(NULL, E_WARNING, "Invalid XPath Document Pointer"); in php_xpath_eval()
364 if (context != NULL) { in php_xpath_eval()
373 zend_throw_error(NULL, "Node from wrong document"); in php_xpath_eval()
383 if (ns != NULL) { in php_xpath_eval()
384 while (ns[nsnbr] != NULL) in php_xpath_eval()
394 ctxp->node = NULL; in php_xpath_eval()
396 if (ns != NULL) { in php_xpath_eval()
398 ctxp->namespaces = NULL; in php_xpath_eval()
420 …if (xpathobjp->type == XPATH_NODESET && NULL != (nodesetp = xpathobjp->nodesetval) && nodesetp->no… in php_xpath_eval()
492 zend_string *name = NULL; in PHP_METHOD()
493 HashTable *ht = NULL; in PHP_METHOD()