/php-src/ext/spl/ |
H A D | spl_iterators.c | 885 static zend_function *spl_recursive_it_get_method(zend_object **zobject, zend_string *method, const… in spl_recursive_it_get_method() argument 898 function_handler = zend_std_get_method(zobject, method, key); in spl_recursive_it_get_method() 900 if ((function_handler = zend_hash_find_ptr(&Z_OBJCE_P(zobj)->function_table, method)) == NULL) { in spl_recursive_it_get_method() 902 function_handler = (*zobject)->handlers->get_method(zobject, method, key); in spl_recursive_it_get_method() 1223 static zend_function *spl_dual_it_get_method(zend_object **object, zend_string *method, const zval … in spl_dual_it_get_method() argument 1230 function_handler = zend_std_get_method(object, method, key); in spl_dual_it_get_method() 1232 if ((function_handler = zend_hash_find_ptr(&intern->inner.ce->function_table, method)) == NULL) { in spl_dual_it_get_method() 1235 function_handler = (*object)->handlers->get_method(object, method, key); in spl_dual_it_get_method()
|
H A D | spl_fixedarray.c | 37 …YACCESS_OVERRIDE(object, method) UNEXPECTED((object)->ce != spl_ce_SplFixedArray && (object)->ce->… argument
|
/php-src/ext/gd/ |
H A D | gd.c | 3948 gdInterpolationMethod method, old_method; in PHP_FUNCTION() local 3963 method = tmp_m; in PHP_FUNCTION() 3998 if (gdImageSetInterpolationMethod(im, method)) { in PHP_FUNCTION() 4290 zend_long method = GD_BILINEAR_FIXED; in PHP_FUNCTION() local 4295 Z_PARAM_LONG(method) in PHP_FUNCTION() 4300 if (method == -1) { in PHP_FUNCTION() 4301 method = GD_BILINEAR_FIXED; in PHP_FUNCTION() 4303 RETURN_BOOL(gdImageSetInterpolationMethod(im, (gdInterpolationMethod) method)); in PHP_FUNCTION()
|
/php-src/docs-old/ |
H A D | streams.md | 248 `php_stream_ops` structure, which holds the "virtual method table" for the 253 implementation need only implement write, read, close and flush. The gets method 254 is intended to be used for streams if there is an underlying method that can
|
/php-src/ext/zip/ |
H A D | php_zip_arginfo.h | 261 ZEND_ARG_TYPE_INFO(0, method, IS_LONG, 0) 267 ZEND_ARG_TYPE_INFO(0, method, IS_LONG, 0) 274 ZEND_ARG_TYPE_INFO(0, method, IS_LONG, 0) 280 ZEND_ARG_TYPE_INFO(0, method, IS_LONG, 0) 300 ZEND_ARG_TYPE_INFO(0, method, IS_LONG, 0)
|
/php-src/ext/intl/ |
H A D | ERROR_CONVENTIONS.md | 39 * The last is ALSO stored in the object whose method call triggered the error,
|
/php-src/Zend/ |
H A D | zend_object_handlers.h | 156 typedef zend_function *(*zend_object_get_method_t)(zend_object **object, zend_string *method, const…
|
H A D | zend_builtin_functions_arginfo.h | 94 ZEND_ARG_TYPE_INFO(0, method, IS_STRING, 0)
|
H A D | zend_API.c | 4110 zval *method = NULL; in zend_get_callable_name_ex() local 4115 method = zend_hash_index_find_deref(Z_ARRVAL_P(callable), 1); in zend_get_callable_name_ex() 4118 if (obj == NULL || method == NULL || Z_TYPE_P(method) != IS_STRING) { in zend_get_callable_name_ex() 4123 return zend_create_member_string(Z_STR_P(obj), Z_STR_P(method)); in zend_get_callable_name_ex() 4125 return zend_create_member_string(Z_OBJCE_P(obj)->name, Z_STR_P(method)); in zend_get_callable_name_ex() 4201 zval *method = zend_hash_index_find(Z_ARRVAL_P(callable), 1); in zend_is_callable_at_frame() local 4202 if (!obj || !method) { in zend_is_callable_at_frame() 4213 ZVAL_DEREF(method); in zend_is_callable_at_frame() 4214 if (Z_TYPE_P(method) != IS_STRING) { in zend_is_callable_at_frame() 4238 callable = method; in zend_is_callable_at_frame()
|
H A D | zend_execute.c | 2448 zend_throw_error(NULL, "Call to undefined method %s::%s()", ZSTR_VAL(ce->name), ZSTR_VAL(method)); in zend_undefined_method() 5030 zval *method; in zend_init_dynamic_call_array() local 5032 method = zend_hash_index_find(function, 1); in zend_init_dynamic_call_array() 5034 if (UNEXPECTED(!obj) || UNEXPECTED(!method)) { in zend_init_dynamic_call_array() 5045 ZVAL_DEREF(method); in zend_init_dynamic_call_array() 5046 if (UNEXPECTED(Z_TYPE_P(method) != IS_STRING)) { in zend_init_dynamic_call_array() 5059 fbc = called_scope->get_static_method(called_scope, Z_STR_P(method)); in zend_init_dynamic_call_array() 5061 fbc = zend_std_get_static_method(called_scope, Z_STR_P(method), NULL); in zend_init_dynamic_call_array() 5065 zend_undefined_method(called_scope, Z_STR_P(method)); in zend_init_dynamic_call_array() 5081 fbc = Z_OBJ_HT_P(obj)->get_method(&object, Z_STR_P(method), NULL); in zend_init_dynamic_call_array() [all …]
|
H A D | zend.h | 199 zend_function *(*get_static_method)(zend_class_entry *ce, zend_string* method);
|
/php-src/ext/reflection/ |
H A D | php_reflection.c | 1481 intern->ptr = method; in reflection_method_factory() 2419 zval *method; in ZEND_METHOD() local 2445 name = zval_try_get_string(method); in ZEND_METHOD() 4411 zval method; in _addmethod() local 4412 reflection_method_factory(ce, mptr, NULL, &method); in _addmethod() 4413 zend_hash_next_index_insert_new(ht, &method); in _addmethod() 5926 property_reference *ref, zend_object *object, const char *method) in reflection_property_check_lazy_compatible() argument 5931 method, ZSTR_VAL(intern->ce->name), in reflection_property_check_lazy_compatible() 5939 method, ZSTR_VAL(intern->ce->name), in reflection_property_check_lazy_compatible() 5947 method, ZSTR_VAL(intern->ce->name), in reflection_property_check_lazy_compatible() [all …]
|
/php-src/ext/standard/tests/serialize/ |
H A D | serialization_objects_005.phpt | 124 The script tried to call a method on an incomplete object. Please ensure that the class definition …
|
/php-src/ |
H A D | CODING_STANDARDS.md | 171 Good method names: 180 Bad method names:
|
/php-src/ext/standard/tests/strings/ |
H A D | strstr.phpt | 69 The error can be avoided by choosing the __toString magix method as follows: */
|
H A D | strpos.phpt | 97 The error can be avoided by choosing the __toString magix method as follows: */
|
/php-src/ext/date/tests/ |
H A D | DateTime_data-fall-type2-type2.inc | 4 * Note: test names match method names in a set of PHPUnit tests
|
H A D | DateTime_data-fall-type2-type3.inc | 4 * Note: test names match method names in a set of PHPUnit tests
|
H A D | DateTime_data-fall-type3-type2.inc | 4 * Note: test names match method names in a set of PHPUnit tests
|
H A D | DateTime_data-fall-type3-type3.inc | 4 * Note: test names match method names in a set of PHPUnit tests
|
/php-src/main/streams/ |
H A D | transports.c | 364 param.inputs.method = crypto_method; in php_stream_xport_crypto_setup()
|
/php-src/sapi/fpm/tests/ |
H A D | logreader.inc | 242 * Get all lines that has been returned by getLine() method.
|
/php-src/sapi/phpdbg/ |
H A D | phpdbg.c | 335 char *class, *method; in PHP_FUNCTION() local 338 if (zend_parse_parameters(ZEND_NUM_ARGS(), "ss", &class, &clen, &method, &mlen) == FAILURE) { in PHP_FUNCTION() 342 phpdbg_set_breakpoint_method(class, method); in PHP_FUNCTION()
|
/php-src/ext/spl/tests/ |
H A D | bug55701.phpt | 235 // Supplemental test: no method should throw LogicException if it is invoked
|
/php-src/ext/curl/ |
H A D | multi.c | 282 if (ch->handlers.write->method == PHP_CURL_RETURN) { in PHP_FUNCTION()
|