Home
last modified time | relevance | path

Searched refs:common (Results 1 – 25 of 221) sorted by path

123456789

/PHP-5.5/
H A D.gdbinit55 if $fst.function->common.function_name
60 if $fst.function.common.scope
61 printf "%s->", $fst.function.common.scope->name
93 if $fst.function.common.scope
94 printf "%s::", $fst.function.common.scope->name
98 printf "%s(", $fst.function->common.function_name
146 printf "%s() ", $fst.function->common.function_name
407 printf "\"%s\"\n", $func->common.function_name
H A DINSTALL59 For the first and most common form, you need three things: PHP itself,
240 It's also common to setup the .phps extension to show highlighted PHP
356 ("Group daemon" is also very common) PHP will not be able to open
1014 # apt-get install php5-common libapache2-mod-php5 php5-cli
1336 The most common way to load a PHP extension is to include it in your
1535 Some problems are more common than others. The most common ones are
1792 This section holds common questions about the way to install PHP. PHP
H A DNEWS2446 . Update list of common mime types. Added webm, ogv, ogg. (Lars,
5855 common non-text types such as "application/xhtml+xml" to be converted
6014 win32 systems by adding a common getopt implementation into core.
7123 - Fixed bug #42627 (bz2 extension fails to build with -fno-common).
H A DREADME.SELF-CONTAINED-EXTENSIONS107 ext_skel can be of great help when creating the common code for all modules
H A DUPGRADING519 happen in many common setups. It is due to some technical and
H A Dconfigure.in159 dnl Catch common errors here to save a few seconds of our users' time
/PHP-5.5/Zend/
H A DZEND_CHANGES387 common to call parent constructors from derived classes, the way
H A Dzend_API.c791 … const char *class_name = active_function->common.scope ? active_function->common.scope->name : ""; in zend_parse_va_args()
814 … const char *class_name = active_function->common.scope ? active_function->common.scope->name : ""; in zend_parse_va_args()
1981 if (fptr->common.num_args != 1) { in zend_check_magic_method_implementation()
1987 if (fptr->common.num_args != 2) { in zend_check_magic_method_implementation()
1993 if (fptr->common.num_args != 1) { in zend_check_magic_method_implementation()
1999 if (fptr->common.num_args != 1) { in zend_check_magic_method_implementation()
2005 if (fptr->common.num_args != 2) { in zend_check_magic_method_implementation()
2013 if (fptr->common.num_args != 2) { in zend_check_magic_method_implementation()
4012 !f->common.scope || in zend_resolve_method_name()
4014 return f->common.function_name; in zend_resolve_method_name()
[all …]
H A Dzend_builtin_functions.c1070 if ((mptr->common.fn_flags & ZEND_ACC_PUBLIC) in ZEND_FUNCTION()
1074 || ((mptr->common.fn_flags & ZEND_ACC_PRIVATE) && in ZEND_FUNCTION()
1075 EG(scope) == mptr->common.scope)))) { in ZEND_FUNCTION()
1079 uint len = strlen(mptr->common.function_name); in ZEND_FUNCTION()
1087 mptr->common.scope == ce || in ZEND_FUNCTION()
1149 RETVAL_BOOL((func->common.scope == zend_ce_closure in ZEND_FUNCTION()
2114 ptr->function_state.function->common.scope, in ZEND_FUNCTION()
2120 if (ptr->function_state.function->common.scope) { in ZEND_FUNCTION()
2302 ptr->function_state.function->common.scope, in zend_fetch_debug_backtrace()
2310 if (ptr->function_state.function->common.scope) { in zend_fetch_debug_backtrace()
[all …]
H A Dzend_closures.c121 ce = closure->func.common.scope; in ZEND_METHOD()
133 ce = closure->func.common.scope; in ZEND_METHOD()
158 invoke->common = closure->func.common; in zend_get_closure_invoke_method()
314 *ce_ptr = closure->func.common.scope; in zend_closure_get_closure()
352 for (i = 0; i < closure->func.common.num_args; i++) { in zend_closure_get_debug_info()
451 closure->func.common.prototype = NULL; in zend_create_closure()
452 closure->func.common.fn_flags |= ZEND_ACC_CLOSURE; in zend_create_closure()
472 if(func->common.scope != NULL) { in zend_create_closure()
494 closure->func.common.scope = scope; in zend_create_closure()
496 closure->func.common.fn_flags |= ZEND_ACC_PUBLIC; in zend_create_closure()
[all …]
H A Dzend_compile.c3139 if (proto->common.required_num_args < fe->common.required_num_args in zend_do_perform_implementation_check()
3140 || proto->common.num_args > fe->common.num_args) { in zend_do_perform_implementation_check()
3224 for (i=proto->common.num_args; i < fe->common.num_args; i++) { in zend_do_perform_implementation_check()
3413 …&& parent->common.scope != (child->common.prototype ? child->common.prototype->common.scope : chil… in do_inheritance_check_on_method()
3418 …child->common.prototype ? child->common.prototype->common.scope->name : child->common.scope->name); in do_inheritance_check_on_method()
3459 …} else if (!(parent->common.fn_flags & ZEND_ACC_CTOR) || (parent->common.prototype && (parent->com… in do_inheritance_check_on_method()
3461 child->common.prototype = parent->common.prototype ? parent->common.prototype : parent; in do_inheritance_check_on_method()
3464 if (child->common.prototype && (child->common.prototype->common.fn_flags & ZEND_ACC_ABSTRACT)) { in do_inheritance_check_on_method()
3938 fn->common.scope->name, fn->common.function_name, in zend_add_trait_method()
4004 …fn_copy.common.fn_flags = alias->modifiers | (fn->common.fn_flags ^ (fn->common.fn_flags & ZEND_AC… in zend_traits_copy_functions()
[all …]
H A Dzend_compile.h334 #define ZEND_FN_SCOPE_NAME(function) ((function) && (function)->common.scope ? (function)->common.…
348 } common; member
824 ((((zend_function*)(zf))->common.arg_info && \
825 arg_num <= ((zend_function*)(zf))->common.num_args) ? \
826 (((zend_function *)(zf))->common.arg_info[arg_num-1].pass_by_reference & (m1)) : \
827 (((zend_function *)(zf))->common.fn_flags & (m2))))
H A Dzend_execute.c581 const char *fname = zf->common.function_name; in zend_verify_arg_error()
585 if (zf->common.scope) { in zend_verify_arg_error()
587 fclass = zf->common.scope->name; in zend_verify_arg_error()
607 if (!zf->common.arg_info in zend_verify_arg_type()
608 || arg_num>zf->common.num_args) { in zend_verify_arg_type()
612 cur_arg_info = &zf->common.arg_info[arg_num-1]; in zend_verify_arg_type()
1485 …(execute_data_ptr->function_state.function->common.fn_flags & ZEND_ACC_RETURN_REFERENCE)?return_va… in execute_internal()
H A Dzend_execute_API.c817 … EX(function_state).function->common.scope ? EX(function_state).function->common.scope->name : "", in zend_call_function()
818 EX(function_state).function->common.scope ? "::" : "", in zend_call_function()
819 EX(function_state).function->common.function_name); in zend_call_function()
842 … EX(function_state).function->common.scope ? EX(function_state).function->common.scope->name : "", in zend_call_function()
844 EX(function_state).function->common.function_name); in zend_call_function()
918 EG(scope) = EX(function_state).function->common.scope; in zend_call_function()
947 if (EX(function_state).function->common.scope) { in zend_call_function()
948 EG(scope) = EX(function_state).function->common.scope; in zend_call_function()
1543 ai.afn[idx] ? ai.afn[idx]->common.function_name : "", \
1554 if (fn->common.fn_flags & ZEND_ACC_ABSTRACT) { in zend_verify_abstract_class_function()
[all …]
H A Dzend_object_handlers.c934 if (fbc->common.scope == ce && EG(scope) == ce) { in zend_check_private_int()
946 && fbc->common.scope == EG(scope)) { in zend_check_private_int()
1060 is_derived_class(fbc->common.scope, EG(scope)) && in zend_std_get_method()
1065 && priv_fbc->common.fn_flags & ZEND_ACC_PRIVATE in zend_std_get_method()
1066 && priv_fbc->common.scope == EG(scope)) { in zend_std_get_method()
1070 if ((fbc->common.fn_flags & ZEND_ACC_PROTECTED)) { in zend_std_get_method()
1201 if (UNEXPECTED(!(fbc->common.fn_flags & ZEND_ACC_STATIC))) { in zend_std_get_static_method()
1222 } else if ((fbc->common.fn_flags & ZEND_ACC_PROTECTED)) { in zend_std_get_static_method()
1317 if (UNEXPECTED(constructor->common.scope != EG(scope))) { in zend_std_get_constructor()
1321 … to private %s::%s() from invalid context", constructor->common.scope->name, constructor->common.f… in zend_std_get_constructor()
[all …]
H A Dzend_object_handlers.h150 ((fbc)->common.prototype ? (fbc)->common.prototype->common.scope : (fbc)->common.scope)
H A Dzend_vm_def.h1928 …return(E_ERROR, "Cannot call abstract method %s::%s()", fbc->common.scope->name, fbc->common.funct… in ZEND_VM_HELPER()
1934 fbc->common.scope ? fbc->common.scope->name : "", in ZEND_VM_HELPER()
1935 fbc->common.scope ? "::" : "", in ZEND_VM_HELPER()
1936 fbc->common.function_name); in ZEND_VM_HELPER()
1939 if (fbc->common.scope && in ZEND_VM_HELPER()
1940 !(fbc->common.fn_flags & ZEND_ACC_STATIC) && in ZEND_VM_HELPER()
1943 if (fbc->common.fn_flags & ZEND_ACC_ALLOW_STATIC) { in ZEND_VM_HELPER()
1968 if (fbc->common.arg_info) { in ZEND_VM_HELPER()
2045 efree((char*)fbc->common.function_name); in ZEND_VM_HELPER()
2593 …if (EG(This) && Z_OBJCE_P(EG(This)) != ce->constructor->common.scope && (ce->constructor->common.f…
[all …]
H A Dzend_vm_execute.h489 …return(E_ERROR, "Cannot call abstract method %s::%s()", fbc->common.scope->name, fbc->common.funct… in zend_do_fcall_common_helper_SPEC()
495 fbc->common.scope ? fbc->common.scope->name : "", in zend_do_fcall_common_helper_SPEC()
496 fbc->common.scope ? "::" : "", in zend_do_fcall_common_helper_SPEC()
497 fbc->common.function_name); in zend_do_fcall_common_helper_SPEC()
500 if (fbc->common.scope && in zend_do_fcall_common_helper_SPEC()
501 !(fbc->common.fn_flags & ZEND_ACC_STATIC) && in zend_do_fcall_common_helper_SPEC()
504 if (fbc->common.fn_flags & ZEND_ACC_ALLOW_STATIC) { in zend_do_fcall_common_helper_SPEC()
529 if (fbc->common.arg_info) { in zend_do_fcall_common_helper_SPEC()
606 efree((char*)fbc->common.function_name); in zend_do_fcall_common_helper_SPEC()
3622 …if (EG(This) && Z_OBJCE_P(EG(This)) != ce->constructor->common.scope && (ce->constructor->common.f… in ZEND_INIT_STATIC_METHOD_CALL_SPEC_CONST_CONST_HANDLER()
[all …]
/PHP-5.5/Zend/tests/
H A Dbug37212.phpt2 Bug #37212 (Access to protected property of common base class)
26 $this->value = $obj->value; // value defined in common base class
/PHP-5.5/Zend/tests/traits/bugs/
H A Dabstract-methods01.phpt2 Abstract Trait Methods should behave like common abstract methods.
H A Dabstract-methods02.phpt2 Abstract Trait Methods should behave like common abstract methods.
H A Dabstract-methods03.phpt2 Abstract Trait Methods should behave like common abstract methods.
H A Dabstract-methods04.phpt2 Abstract Trait Methods should behave like common abstract methods and
/PHP-5.5/build/
H A Dlibtool.m42036 # Look at the argument we got. We use all the common list separators.
2076 # Look at the argument we got. We use all the common list separators.
2117 # Look at the argument we got. We use all the common list separators.
4775 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
5066 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
/PHP-5.5/ext/date/tests/
H A DDateTimeZone_listIdentifiers_basic1.phpt20 echo "Check array contains some common timezones\n";
31 Check array contains some common timezones

Completed in 224 milliseconds

123456789