Lines Matching refs:description
151 zval *description = NULL; in PHP_FUNCTION() local
160 if (zend_parse_parameters(ZEND_NUM_ARGS(), "z|z", &assertion, &description) == FAILURE) { in PHP_FUNCTION()
179 if (!description) { in PHP_FUNCTION()
182 zend_string *str = zval_get_string(description); in PHP_FUNCTION()
214 zval *args = safe_emalloc(!description ? 3 : 4, sizeof(zval), 0); in PHP_FUNCTION()
227 if (!description) { in PHP_FUNCTION()
233 ZVAL_STR(&args[3], zval_get_string(description)); in PHP_FUNCTION()
245 if (!description) { in PHP_FUNCTION()
247 } else if (Z_TYPE_P(description) == IS_OBJECT && in PHP_FUNCTION()
248 instanceof_function(Z_OBJCE_P(description), zend_ce_throwable)) { in PHP_FUNCTION()
249 Z_ADDREF_P(description); in PHP_FUNCTION()
250 zend_throw_exception_object(description); in PHP_FUNCTION()
252 zend_string *str = zval_get_string(description); in PHP_FUNCTION()
257 if (!description) { in PHP_FUNCTION()
264 zend_string *str = zval_get_string(description); in PHP_FUNCTION()