Lines Matching refs:method

1290 static void reflection_method_factory(zend_class_entry *ce, zend_function *method, zval *closure_ob…  in reflection_method_factory()  argument
1301 ZVAL_STRING(name, (method->common.scope && method->common.scope->trait_aliases)? in reflection_method_factory()
1302 zend_resolve_method_name(ce, method) : method->common.function_name, 1); in reflection_method_factory()
1303 ZVAL_STRINGL(classname, method->common.scope->name, method->common.scope->name_length, 1); in reflection_method_factory()
1306 intern->ptr = method; in reflection_method_factory()
2183 zval **method; in ZEND_METHOD() local
2189 || (zend_hash_index_find(Z_ARRVAL_P(reference), 1, (void **) &method) == FAILURE)) in ZEND_METHOD()
2207 convert_to_string_ex(method); in ZEND_METHOD()
2208 lcname_len = Z_STRLEN_PP(method); in ZEND_METHOD()
2209 lcname = zend_str_tolower_dup(Z_STRVAL_PP(method), lcname_len); in ZEND_METHOD()
2220 "Method %s::%s() does not exist", ce->name, Z_STRVAL_PP(method)); in ZEND_METHOD()
3733 zval *method; in _addmethod() local
3738 ALLOC_ZVAL(method); in _addmethod()
3748 reflection_method_factory(ce, mptr, NULL, method TSRMLS_CC); in _addmethod()
3749 add_next_index_zval(retval, method); in _addmethod()
6142 REGISTER_REFLECTION_CLASS_CONST_LONG(method, "IS_STATIC", ZEND_ACC_STATIC); in PHP_MINIT_FUNCTION()
6143 REGISTER_REFLECTION_CLASS_CONST_LONG(method, "IS_PUBLIC", ZEND_ACC_PUBLIC); in PHP_MINIT_FUNCTION()
6144 REGISTER_REFLECTION_CLASS_CONST_LONG(method, "IS_PROTECTED", ZEND_ACC_PROTECTED); in PHP_MINIT_FUNCTION()
6145 REGISTER_REFLECTION_CLASS_CONST_LONG(method, "IS_PRIVATE", ZEND_ACC_PRIVATE); in PHP_MINIT_FUNCTION()
6146 REGISTER_REFLECTION_CLASS_CONST_LONG(method, "IS_ABSTRACT", ZEND_ACC_ABSTRACT); in PHP_MINIT_FUNCTION()
6147 REGISTER_REFLECTION_CLASS_CONST_LONG(method, "IS_FINAL", ZEND_ACC_FINAL); in PHP_MINIT_FUNCTION()