Lines Matching refs:error_type

1965 …lementation(const zend_class_entry *ce, const zend_function *fptr, int error_type TSRMLS_DC) /* {{…  in zend_check_magic_method_implementation()
1977 …zend_error(error_type, "Destructor %s::%s() cannot take arguments", ce->name, ZEND_DESTRUCTOR_FUNC… in zend_check_magic_method_implementation()
1979 …zend_error(error_type, "Method %s::%s() cannot accept any arguments", ce->name, ZEND_CLONE_FUNC_NA… in zend_check_magic_method_implementation()
1982 …zend_error(error_type, "Method %s::%s() must take exactly 1 argument", ce->name, ZEND_GET_FUNC_NAM… in zend_check_magic_method_implementation()
1984 …zend_error(error_type, "Method %s::%s() cannot take arguments by reference", ce->name, ZEND_GET_FU… in zend_check_magic_method_implementation()
1988 …zend_error(error_type, "Method %s::%s() must take exactly 2 arguments", ce->name, ZEND_SET_FUNC_NA… in zend_check_magic_method_implementation()
1990 …zend_error(error_type, "Method %s::%s() cannot take arguments by reference", ce->name, ZEND_SET_FU… in zend_check_magic_method_implementation()
1994 …zend_error(error_type, "Method %s::%s() must take exactly 1 argument", ce->name, ZEND_UNSET_FUNC_N… in zend_check_magic_method_implementation()
1996 …zend_error(error_type, "Method %s::%s() cannot take arguments by reference", ce->name, ZEND_UNSET_… in zend_check_magic_method_implementation()
2000 …zend_error(error_type, "Method %s::%s() must take exactly 1 argument", ce->name, ZEND_ISSET_FUNC_N… in zend_check_magic_method_implementation()
2002 …zend_error(error_type, "Method %s::%s() cannot take arguments by reference", ce->name, ZEND_ISSET_… in zend_check_magic_method_implementation()
2006 …zend_error(error_type, "Method %s::%s() must take exactly 2 arguments", ce->name, ZEND_CALL_FUNC_N… in zend_check_magic_method_implementation()
2008 …zend_error(error_type, "Method %s::%s() cannot take arguments by reference", ce->name, ZEND_CALL_F… in zend_check_magic_method_implementation()
2014 …zend_error(error_type, "Method %s::%s() must take exactly 2 arguments", ce->name, ZEND_CALLSTATIC_… in zend_check_magic_method_implementation()
2016 …zend_error(error_type, "Method %s::%s() cannot take arguments by reference", ce->name, ZEND_CALLST… in zend_check_magic_method_implementation()
2021 …zend_error(error_type, "Method %s::%s() cannot take arguments", ce->name, ZEND_TOSTRING_FUNC_NAME); in zend_check_magic_method_implementation()
2034 int error_type; in zend_register_functions() local
2042 error_type = E_CORE_WARNING; in zend_register_functions()
2044 error_type = E_WARNING; in zend_register_functions()
2072 …zend_error(error_type, "Invalid access level for %s%s%s() - access must be exactly one of public, … in zend_register_functions()
2119 …zend_error(error_type, "Static function %s%s%s() cannot be abstract", scope ? scope->name : "", sc… in zend_register_functions()
2124 …zend_error(error_type, "Interface %s cannot contain non abstract method %s()", scope->name, ptr->f… in zend_register_functions()
2131 …zend_error(error_type, "Method %s%s%s() cannot be a NULL function", scope ? scope->name : "", scop… in zend_register_functions()
2160 zend_error(error_type, "Destructor %s::%s() cannot take arguments", scope->name, ptr->fname); in zend_register_functions()
2182 zend_check_magic_method_implementation(scope, reg_function, error_type TSRMLS_CC); in zend_register_functions()
2197 …zend_error(error_type, "Function registration failed - duplicate name - %s%s%s", scope ? scope->na… in zend_register_functions()
2219 …zend_error(error_type, "Constructor %s::%s() cannot be static", scope->name, ctor->common.function… in zend_register_functions()
2226 …zend_error(error_type, "Destructor %s::%s() cannot be static", scope->name, dtor->common.function_… in zend_register_functions()
2233 …zend_error(error_type, "Constructor %s::%s() cannot be static", scope->name, clone->common.functio… in zend_register_functions()
2239 …zend_error(error_type, "Method %s::%s() cannot be static", scope->name, __call->common.function_na… in zend_register_functions()
2245 …zend_error(error_type, "Method %s::%s() must be static", scope->name, __callstatic->common.functio… in zend_register_functions()
2251 …zend_error(error_type, "Method %s::%s() cannot be static", scope->name, __tostring->common.functio… in zend_register_functions()
2257 …zend_error(error_type, "Method %s::%s() cannot be static", scope->name, __get->common.function_nam… in zend_register_functions()
2263 …zend_error(error_type, "Method %s::%s() cannot be static", scope->name, __set->common.function_nam… in zend_register_functions()
2269 …zend_error(error_type, "Method %s::%s() cannot be static", scope->name, __unset->common.function_n… in zend_register_functions()
2275 …zend_error(error_type, "Method %s::%s() cannot be static", scope->name, __isset->common.function_n… in zend_register_functions()