Home
last modified time | relevance | path

Searched refs:func (Results 26 – 50 of 170) sorted by path

1234567

/PHP-5.5/Zend/tests/traits/
H A Dbug61998.phpt7 func as newFunc;
10 public function func() {
16 public function func() {
22 public function func() {
32 func as newFunc;
33 func as func2;
51 $f->func(); //from Foo
55 $b->func(); //from Bar
/PHP-5.5/Zend/
H A Dzend_API.c4006 zend_function *func; in zend_resolve_method_name() local
4019 while (zend_hash_get_current_data_ex(function_table, (void **)&func, &iterator) == SUCCESS) { in zend_resolve_method_name()
4020 if (func == f) { in zend_resolve_method_name()
H A Dzend_builtin_functions.c1139 union _zend_function *func = NULL; in ZEND_FUNCTION() local
1145 if (func->type == ZEND_INTERNAL_FUNCTION in ZEND_FUNCTION()
1146 && (func->common.fn_flags & ZEND_ACC_CALL_VIA_HANDLER) != 0 in ZEND_FUNCTION()
1149 RETVAL_BOOL((func->common.scope == zend_ce_closure in ZEND_FUNCTION()
1155 efree(func); in ZEND_FUNCTION()
1353 zend_function *func; in ZEND_FUNCTION() local
1378 if (retval && func->type == ZEND_INTERNAL_FUNCTION && in ZEND_FUNCTION()
1720 if (func->type == ZEND_INTERNAL_FUNCTION) { in copy_function_name()
1722 } else if (func->type == ZEND_USER_FUNCTION) { in copy_function_name()
1825 zend_function new_function, *func; in ZEND_FUNCTION() local
[all …]
H A Dzend_closures.c39 zend_function func; member
75 efree(func); in ZEND_METHOD()
121 ce = closure->func.common.scope; in ZEND_METHOD()
133 ce = closure->func.common.scope; in ZEND_METHOD()
172 return &closure->func; in zend_get_closure_method_def()
289 …zend_create_closure(&result, &closure->func, closure->func.common.scope, closure->this_ptr TSRMLS_… in zend_closure_clone()
303 *fptr_ptr = &closure->func; in zend_closure_get_closure()
333 if (closure->func.type == ZEND_USER_FUNCTION && closure->func.op_array.static_variables) { in zend_closure_get_debug_info()
450 closure->func = *func; in zend_create_closure()
472 if(func->common.scope != NULL) { in zend_create_closure()
[all …]
H A Dzend_hash.h310 #define ZEND_HANDLE_NUMERIC_EX(key, length, idx, func) do { \ in END_EXTERN_C() argument
340 func; \ in END_EXTERN_C()
345 #define ZEND_HANDLE_NUMERIC(key, length, func) do { \ argument
348 ZEND_HANDLE_NUMERIC_EX(key, length, idx, return func); \
H A Dzend_llist.c171 ZEND_API void zend_llist_apply_with_del(zend_llist *l, int (*func)(void *data)) in zend_llist_apply_with_del()
178 if (func(element->data)) { in zend_llist_apply_with_del()
186 ZEND_API void zend_llist_apply(zend_llist *l, llist_apply_func_t func TSRMLS_DC) in zend_llist_apply()
191 func(element->data TSRMLS_CC); in zend_llist_apply()
229 ZEND_API void zend_llist_apply_with_argument(zend_llist *l, llist_apply_with_arg_func_t func, void … in zend_llist_apply_with_argument() argument
234 func(element->data, arg TSRMLS_CC); in zend_llist_apply_with_argument()
239 ZEND_API void zend_llist_apply_with_arguments(zend_llist *l, llist_apply_with_args_func_t func TSRM… in zend_llist_apply_with_arguments()
246 func(element->data, num_args, args TSRMLS_CC); in zend_llist_apply_with_arguments()
H A Dzend_llist.h58 ZEND_API void zend_llist_apply(zend_llist *l, llist_apply_func_t func TSRMLS_DC);
59 ZEND_API void zend_llist_apply_with_del(zend_llist *l, int (*func)(void *data));
60 ZEND_API void zend_llist_apply_with_argument(zend_llist *l, llist_apply_with_arg_func_t func, void …
61 ZEND_API void zend_llist_apply_with_arguments(zend_llist *l, llist_apply_with_args_func_t func TSRM…
H A Dzend_object_handlers.c875 …zend_internal_function *func = (zend_internal_function *)EG(current_execute_data)->function_state.… in zend_std_call_user_call() local
892 ZVAL_STRING(method_name_ptr, func->function_name, 0); /* no dup - it's a copy */ in zend_std_call_user_call()
914 efree(func); in zend_std_call_user_call()
1093 …zend_internal_function *func = (zend_internal_function *)EG(current_execute_data)->function_state.… in zend_std_callstatic_user_call() local
1110 ZVAL_STRING(method_name_ptr, func->function_name, 0); /* no dup - it's a copy */ in zend_std_callstatic_user_call()
1131 efree(func); in zend_std_callstatic_user_call()
H A Dzend_ptr_stack.c84 ZEND_API void zend_ptr_stack_apply(zend_ptr_stack *stack, void (*func)(void *)) in zend_ptr_stack_apply()
89 func(stack->elements[i]); in zend_ptr_stack_apply()
94 ZEND_API void zend_ptr_stack_clean(zend_ptr_stack *stack, void (*func)(void *), zend_bool free_elem… in zend_ptr_stack_clean()
96 zend_ptr_stack_apply(stack, func); in zend_ptr_stack_clean()
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…
H A Dzend_vm_gen.php1353 list($kind, $func, $name) = $dsk;
1354 out($f, "ZEND_API int $func(");
/PHP-5.5/
H A Dacinclude.m41325 AC_TRY_COMPILE([#include <time.h>],[struct tm *(*func)() = localtime_r],[
1330 AC_TRY_COMPILE([#include <time.h>],[struct tm *(*func)() = gmtime_r],[
1335 AC_TRY_COMPILE([#include <time.h>],[char *(*func)() = asctime_r],[
1340 AC_TRY_COMPILE([#include <time.h>],[char *(*func)() = ctime_r],[
1345 AC_TRY_COMPILE([#include <string.h>],[char *(*func)() = strtok_r],[
1470 AC_TRY_COMPILE([#include <stdio.h>],[int (*func)() = fclose],[
1883 dnl PHP_CHECK_FUNC_LIB(func, libs)
1885 dnl This macro checks whether 'func' or '__func' exists
1926 dnl PHP_CHECK_FUNC(func, ...)
1928 dnl This macro checks whether 'func' or '__func' exists
/PHP-5.5/ext/bcmath/libbcmath/src/
H A Dbcmath.h96 #define _PROTOTYPE(func, args) func args argument
98 #define _PROTOTYPE(func, args) func() argument
/PHP-5.5/ext/com_dotnet/
H A Dcom_handlers.c266 union _zend_function *func; in com_method_get() local
358 func = emalloc(sizeof(*fptr)); in com_method_get()
359 memcpy(func, fptr, sizeof(*fptr)); in com_method_get()
361 return func; in com_method_get()
H A Dcom_typeinfo.c437 FUNCDESC *func; in php_com_process_typeinfo() local
482 isprop = (func->invkind & DISPATCH_PROPERTYGET || func->invkind & DISPATCH_PROPERTYPUT); in php_com_process_typeinfo()
484 if (!isprop || lastid != func->memid) { in php_com_process_typeinfo()
486 lastid = func->memid; in php_com_process_typeinfo()
500 ITypeInfo_GetNames(typeinfo, func->memid, names, func->cParams + 1, &cnames); in php_com_process_typeinfo()
506 if (func->elemdescFunc.tdesc.vt != VT_VOID) { in php_com_process_typeinfo()
508 vt_to_string(func->elemdescFunc.tdesc.vt), in php_com_process_typeinfo()
509 func->elemdescFunc.tdesc.vt in php_com_process_typeinfo()
530 for (j = 0; j < func->cParams; j++) { in php_com_process_typeinfo()
559 j == func->cParams - 1 ? ' ' : ',' in php_com_process_typeinfo()
[all …]
/PHP-5.5/ext/com_dotnet/tests/
H A Dbug33386.phpt11 public function func1() { echo " func one\n"; }
12 public function func2() { echo " func two\n"; }
23 $oScript->ExecuteStatement ("tfA.func$i");
24 $oScript->ExecuteStatement ("func$i");
28 $oScript->ExecuteStatement ("tfB.func$i");
35 func one
36 func one
37 func two
38 func two
39 func one
[all …]
/PHP-5.5/ext/curl/
H A Dinterface.c1702 zval *func = ch->handlers->passwd; in curl_passwd() local
1718 error = call_user_function(EG(function_table), NULL, func, retval, 2, argv TSRMLS_CC); in curl_passwd()
1728 …r_docref(NULL TSRMLS_CC, E_WARNING, "User handler '%s' did not return a string", Z_STRVAL_P(func)); in curl_passwd()
/PHP-5.5/ext/filter/tests/
H A D029.phpt16 var_dump(filter_var("qwe", FILTER_CALLBACK, array("options"=>"no such func")));
/PHP-5.5/ext/gd/tests/
H A Dbug43073.phpt8 include dirname(__FILE__) . '/func.inc';
H A Dbug43073_1.phpt8 include dirname(__FILE__) . '/func.inc';
H A Dbug48801.phpt8 include dirname(__FILE__) . '/func.inc';
H A Dbug48801_1.phpt8 include dirname(__FILE__) . '/func.inc';
/PHP-5.5/ext/intl/breakiterator/
H A Dbreakiterator_methods.cpp44 BreakIterator *(*func)(const Locale&, UErrorCode&), in _breakiter_factory()
66 biter = func(Locale::createFromName(locale_str), status); in _breakiter_factory()
196 int32_t (BreakIterator::*func)(), in _breakiter_no_args_ret_int32() argument
212 int32_t res = (bio->biter->*func)(); in _breakiter_no_args_ret_int32()
219 int32_t (BreakIterator::*func)(int32_t), in _breakiter_int32_ret_int32()
244 int32_t res = (bio->biter->*func)((int32_t)arg); in _breakiter_int32_ret_int32()
/PHP-5.5/ext/intl/calendar/
H A Dcalendar_methods.cpp218 int32_t (Calendar::*func)(UCalendarDateFields, UErrorCode&) const, in _php_intlcal_field_uec_ret_in32t_method()
243 int32_t result = (co->ucal->*func)( in _php_intlcal_field_uec_ret_in32t_method()
360 UBool (Calendar::*func)(const Calendar&, UErrorCode&) const, in _php_intlcal_before_after()
385 UBool res = (co->ucal->*func)(*when_co->ucal, CALENDAR_ERROR_CODE(co)); in _php_intlcal_before_after()
666 int32_t (Calendar::*func)(UCalendarDateFields) const, in _php_intlcal_field_ret_in32t_method()
691 int32_t result = (co->ucal->*func)((UCalendarDateFields)field); in _php_intlcal_field_ret_in32t_method()
/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()

Completed in 82 milliseconds

1234567