Home
last modified time | relevance | path

Searched refs:func (Results 76 – 100 of 170) sorted by relevance

1234567

/PHP-5.5/ext/standard/tests/general_functions/
H A Dis_callable_basic2.phpt70 public function func() {
209 object_class::func
211 object_class::func
290 no_member_class::func
292 no_member_class::func
533 object_class::func
535 object_class::func
614 no_member_class::func
616 no_member_class::func
695 object_class::func
[all …]
/PHP-5.5/Zend/tests/
H A Dns_058.phpt8 return "func ok\n";
47 func ok
H A Dns_057.phpt10 return "func ok\n";
49 func ok
H A Disset_expr_error.phpt2 Error message for isset(func())
H A Dbug40815.phpt2 Bug #40815 (using strings like "class::func" and static methods in set_exception_handler() might re…
H A Dbug69212.phpt2 Bug #69212: Leaking VIA_HANDLER func when exception thrown in __call/... arg passing
/PHP-5.5/ext/spl/internal/
H A Dfilteriterator.inc118 * @param func Name of method to invoke
121 function __call($func, $params)
123 return call_user_func_array(array($this->it, $func), $params);
H A Diteratoriterator.inc107 * @param func Name of method to invoke
110 function __call($func, $params)
112 return call_user_func_array(array($this->iterator, $func), $params);
H A Dlimititerator.inc125 * @param func Name of method to invoke
128 function __call($func, $params)
130 return call_user_func_array(array($this->it, $func), $params);
H A Dcachingiterator.inc119 * @param func Name of method to invoke
122 function __call($func, $params)
124 return call_user_func_array(array($this->it, $func), $params);
/PHP-5.5/ext/spl/tests/
H A Dspl_autoload_007.phpt40 foreach($funcs as $idx => $func)
45 var_dump($func);
46 spl_autoload_register($func);
/PHP-5.5/ext/xmlwriter/
H A DTODO3 - Sync with xmlwriter (new dtd func?)
/PHP-5.5/ext/oci8/
H A Dphp_oci8_int.h256 #define PHP_OCI_CALL(func, params) \ argument
259 php_printf ("OCI8 DEBUG: " #func " at (%s:%d) \n", __FILE__, __LINE__); \
262 func params; \
266 #define PHP_OCI_CALL_RETURN(__retval, func, params) \ argument
269 php_printf ("OCI8 DEBUG: " #func " at (%s:%d) \n", __FILE__, __LINE__); \
272 __retval = func params; \
/PHP-5.5/main/
H A Doutput.c508 handler->func.user = user; in php_output_handler_create_user()
532 handler->func.internal = output_handler; in php_output_handler_create_internal()
666 php_output_handler_alias_ctor_t *func = NULL; in php_output_handler_alias() local
668 zend_hash_find(&php_output_handler_aliases, name, name_len+1, (void *) &func); in php_output_handler_alias()
669 return func; in php_output_handler_alias()
721 zval_ptr_dtor(&handler->func.user->zoh); in php_output_handler_dtor()
722 efree(handler->func.user); in php_output_handler_dtor()
977 …if (SUCCESS == zend_fcall_info_call(&handler->func.user->fci, &handler->func.user->fcc, &retval, N… in php_output_handler_op()
994 zend_fcall_info_argn(&handler->func.user->fci TSRMLS_CC, 0); in php_output_handler_op()
1005 if (SUCCESS == handler->func.internal(&handler->opaq, context)) { in php_output_handler_op()
[all …]
/PHP-5.5/ext/opcache/
H A Dzend_accelerator_blacklist.h47 void zend_accel_blacklist_apply(zend_blacklist *blacklist, apply_func_arg_t func, void *argument TS…
/PHP-5.5/Zend/
H A Dzend_ptr_stack.h41 ZEND_API void zend_ptr_stack_apply(zend_ptr_stack *stack, void (*func)(void *));
42 ZEND_API void zend_ptr_stack_clean(zend_ptr_stack *stack, void (*func)(void *), zend_bool free_elem…
/PHP-5.5/ext/reflection/tests/
H A DReflectionParameter_canBePassedByValue.phpt8 $func = new ReflectionFunction($fun);
9 $parameters = $func->getParameters();
/PHP-5.5/ext/standard/tests/class_object/
H A Dmethod_exists_basic_003.phpt15 var_dump(method_exists('UndefC', 'func'));
/PHP-5.5/ext/intl/collator/
H A Dcollator_sort.c265 collator_compare_func_t func; in collator_get_compare_function() local
270 func = collator_numeric_compare_function; in collator_get_compare_function()
274 func = collator_icu_compare_function; in collator_get_compare_function()
279 func = collator_regular_compare_function; in collator_get_compare_function()
283 return func; in collator_get_compare_function()
/PHP-5.5/ext/gd/tests/
H A Dbug48801.phpt8 include dirname(__FILE__) . '/func.inc';
H A Dbug48801_1.phpt8 include dirname(__FILE__) . '/func.inc';
/PHP-5.5/ext/standard/tests/array/
H A Darray_intersect_1.phpt50 echo "begin ------------ array_uintersect_uassoc() with ordinary func -\n";
55 echo "end ------------ array_uintersect_uassoc() with ordinary func -\n";
219 begin ------------ array_uintersect_uassoc() with ordinary func -
291 end ------------ array_uintersect_uassoc() with ordinary func -
/PHP-5.5/ext/pdo_sqlite/
H A Dphp_pdo_sqlite_int.h41 zval *func, *step, *fini; member
/PHP-5.5/ext/phar/
H A Dfunc_interceptors.c1056 #define PHAR_INTERCEPT(func) \ argument
1057 PHAR_G(orig_##func) = NULL; \
1058 if (SUCCESS == zend_hash_find(CG(function_table), #func, sizeof(#func), (void **)&orig)) { \
1059 PHAR_G(orig_##func) = orig->internal_function.handler; \
1060 orig->internal_function.handler = phar_##func; \
1094 #define PHAR_RELEASE(func) \ argument
1095 …if (PHAR_G(orig_##func) && SUCCESS == zend_hash_find(CG(function_table), #func, sizeof(#func), (vo…
1096 orig->internal_function.handler = PHAR_G(orig_##func); \
1098 PHAR_G(orig_##func) = NULL;
/PHP-5.5/ext/session/
H A Dmod_user.c47 static zval *ps_call_handler(zval *func, int argc, zval **argv TSRMLS_DC) in ps_call_handler() argument
53 if (call_user_function(EG(function_table), NULL, func, retval, argc, argv TSRMLS_CC) == FAILURE) { in ps_call_handler()

Completed in 59 milliseconds

1234567