Searched refs:fptr (Results 1 – 9 of 9) sorted by relevance
/php-src/ext/reflection/ |
H A D | php_reflection.c | 142 zend_function *fptr; member 202 if (fptr in _copy_function() 212 return fptr; in _copy_function() 219 if (fptr in _free_function() 812 if (fptr->type == ZEND_USER_FUNCTION && fptr->op_array.doc_comment) { in _function_string() 841 if (fptr->common.prototype && fptr->common.prototype->common.scope) { in _function_string() 1365 reference->fptr = fptr; in reflection_parameter_factory() 1977 fptr->common.attributes, 0, fptr->common.scope, target, in ZEND_METHOD() 1978 fptr->type == ZEND_USER_FUNCTION ? fptr->op_array.filename : NULL); in ZEND_METHOD() 2413 if (!fptr) { in ZEND_METHOD() [all …]
|
/php-src/Zend/ |
H A D | zend_API.c | 2859 ce->clone = fptr; in zend_add_magic_method() 2861 ce->constructor = fptr; in zend_add_magic_method() 2864 ce->destructor = fptr; in zend_add_magic_method() 2866 ce->__get = fptr; in zend_add_magic_method() 2869 ce->__set = fptr; in zend_add_magic_method() 2872 ce->__call = fptr; in zend_add_magic_method() 2874 ce->__unset = fptr; in zend_add_magic_method() 2877 ce->__isset = fptr; in zend_add_magic_method() 2882 ce->__tostring = fptr; in zend_add_magic_method() 2884 ce->__debugInfo = fptr; in zend_add_magic_method() [all …]
|
H A D | zend_inheritance.c | 899 if (fptr->common.scope) { in zend_get_function_declaration() 904 smart_str_appendl(&str, ZSTR_VAL(fptr->common.scope->name), ZSTR_LEN(fptr->common.scope->name)); in zend_get_function_declaration() 912 if (fptr->common.arg_info) { in zend_get_function_declaration() 914 zend_arg_info *arg_info = fptr->common.arg_info; in zend_get_function_declaration() 916 required = fptr->common.required_num_args; in zend_get_function_declaration() 917 num_args = fptr->common.num_args; in zend_get_function_declaration() 918 if (fptr->common.fn_flags & ZEND_ACC_VARIADIC) { in zend_get_function_declaration() 933 if (fptr->type == ZEND_INTERNAL_FUNCTION) { in zend_get_function_declaration() 942 if (fptr->type == ZEND_INTERNAL_FUNCTION) { in zend_get_function_declaration() 952 zend_op *op = fptr->op_array.opcodes; in zend_get_function_declaration() [all …]
|
H A D | zend_API.h | 388 const zend_class_entry *ce, const zend_function *fptr, zend_string *lcname, int error_type); 389 ZEND_API void zend_add_magic_method(zend_class_entry *ce, zend_function *fptr, zend_string *lcname);
|
/php-src/ext/zend_test/ |
H A D | test.c | 849 zend_internal_function *fptr; in zend_test_class_method_get() local 857 fptr->type = ZEND_INTERNAL_FUNCTION; in zend_test_class_method_get() 858 fptr->num_args = 0; in zend_test_class_method_get() 859 fptr->scope = (*object)->ce; in zend_test_class_method_get() 863 fptr->doc_comment = NULL; in zend_test_class_method_get() 865 return (zend_function*)fptr; in zend_test_class_method_get() 873 zend_internal_function *fptr; in zend_test_class_static_method_get() local 882 fptr->num_args = 0; in zend_test_class_static_method_get() 883 fptr->scope = ce; in zend_test_class_static_method_get() 887 fptr->doc_comment = NULL; in zend_test_class_static_method_get() [all …]
|
/php-src/ext/com_dotnet/ |
H A D | com_handlers.c | 291 zend_internal_function f, *fptr = NULL; in com_method_get() local 305 if (obj->method_cache == NULL || NULL == (fptr = zend_hash_find_ptr(obj->method_cache, name))) { in com_method_get() 316 fptr = &f; in com_method_get() 378 if (fptr) { in com_method_get() 381 zend_string_addref(fptr->function_name); in com_method_get() 382 func = emalloc(sizeof(*fptr)); in com_method_get() 383 memcpy(func, fptr, sizeof(*fptr)); in com_method_get()
|
/php-src/ext/date/lib/ |
H A D | parse_date.re | 2225 while (*fptr && *ptr) { 2239 if (*fptr != *ptr) { 2243 fptr++; 2249 fptr++; 2484 if (*ptr != *fptr) { 2505 if (!fptr[1]) { 2509 fptr++; 2510 if (*ptr != *fptr) { 2587 fptr++; 2597 if (*fptr) { [all …]
|
H A D | parse_date.c | 25075 while (*fptr && *ptr) { in timelib_parse_from_format_with_map() 25089 if (*fptr != *ptr) { in timelib_parse_from_format_with_map() 25093 fptr++; in timelib_parse_from_format_with_map() 25099 fptr++; in timelib_parse_from_format_with_map() 25334 if (*ptr != *fptr) { in timelib_parse_from_format_with_map() 25355 if (!fptr[1]) { in timelib_parse_from_format_with_map() 25359 fptr++; in timelib_parse_from_format_with_map() 25360 if (*ptr != *fptr) { in timelib_parse_from_format_with_map() 25437 fptr++; in timelib_parse_from_format_with_map() 25447 if (*fptr) { in timelib_parse_from_format_with_map() [all …]
|
/php-src/ext/pcre/pcre2lib/ |
H A D | pcre2_match.c | 4434 PCRE2_SPTR fptr; in match() local 4455 fptr = Feptr - 1; in match() 4456 if (!utf) fc = *fptr; else in match() 4458 BACKCHAR(fptr); in match() 4459 GETCHAR(fc, fptr); in match() 4463 Feptr = fptr; in match()
|
Completed in 120 milliseconds