Home
last modified time | relevance | path

Searched refs:common (Results 1 – 25 of 212) sorted by relevance

123456789

/PHP-5.4/ext/pcre/pcrelib/
H A Dpcre_jit_compile.c865 common->mark_ptr = common->ovector_start; in check_opcode_types()
3103 read_char_range(common, common->nlmin, common->nlmax, TRUE); in mainloop_entry()
3902 read_char_range(common, common->nlmin, common->nlmax, TRUE); in fast_forward_newline()
5326 read_char_range(common, common->nlmin, common->nlmax, TRUE); in compile_char1_matchingpath()
5394 read_char_range(common, common->bsr_nlmin, common->bsr_nlmax, FALSE); in compile_char1_matchingpath()
5523 read_char_range(common, common->nlmin, common->nlmax, TRUE); in compile_char1_matchingpath()
5571 read_char_range(common, common->nlmin, common->nlmax, TRUE); in compile_char1_matchingpath()
5622 peek_char(common, common->nlmax); in compile_char1_matchingpath()
8242 if (common->has_then && common->then_offsets[cc - common->start] != 0) in compile_matchingpath()
9849 common->nlmax = common->newline & 0xff; in PRIV()
[all …]
/PHP-5.4/Zend/
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()
315 *ce_ptr = closure->func.common.scope; in zend_closure_get_closure()
353 for (i = 0; i < closure->func.common.num_args; i++) { in zend_closure_get_debug_info()
452 closure->func.common.prototype = NULL; in zend_create_closure()
472 if(func->common.scope != NULL) { in zend_create_closure()
474 …ING, "Cannot bind function %s::%s to scope class %s", func->common.scope->name, func->common.funct… 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_API.c762 … const char *class_name = active_function->common.scope ? active_function->common.scope->name : ""; in zend_parse_va_args()
785 … const char *class_name = active_function->common.scope ? active_function->common.scope->name : ""; in zend_parse_va_args()
1918 if (fptr->common.num_args != 1) { in zend_check_magic_method_implementation()
1924 if (fptr->common.num_args != 2) { in zend_check_magic_method_implementation()
1930 if (fptr->common.num_args != 1) { in zend_check_magic_method_implementation()
1936 if (fptr->common.num_args != 1) { in zend_check_magic_method_implementation()
1942 if (fptr->common.num_args != 2) { in zend_check_magic_method_implementation()
1950 if (fptr->common.num_args != 2) { in zend_check_magic_method_implementation()
3949 !f->common.scope || in zend_resolve_method_name()
3951 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()
2129 ptr->function_state.function->common.scope, in ZEND_FUNCTION()
2135 if (ptr->function_state.function->common.scope) { in ZEND_FUNCTION()
2317 ptr->function_state.function->common.scope, in zend_fetch_debug_backtrace()
2325 if (ptr->function_state.function->common.scope) { in zend_fetch_debug_backtrace()
[all …]
H A Dzend_compile.c2947 if (proto->common.required_num_args < fe->common.required_num_args in zend_do_perform_implementation_check()
2948 || proto->common.num_args > fe->common.num_args) { in zend_do_perform_implementation_check()
3032 for (i=proto->common.num_args; i < fe->common.num_args; i++) { in zend_do_perform_implementation_check()
3221 …&& parent->common.scope != (child->common.prototype ? child->common.prototype->common.scope : chil… in do_inheritance_check_on_method()
3226 …child->common.prototype ? child->common.prototype->common.scope->name : child->common.scope->name); in do_inheritance_check_on_method()
3267 …} else if (!(parent->common.fn_flags & ZEND_ACC_CTOR) || (parent->common.prototype && (parent->com… in do_inheritance_check_on_method()
3269 child->common.prototype = parent->common.prototype ? parent->common.prototype : parent; in do_inheritance_check_on_method()
3272 if (child->common.prototype && (child->common.prototype->common.fn_flags & ZEND_ACC_ABSTRACT)) { in do_inheritance_check_on_method()
3745 fn->common.scope->name, fn->common.function_name, in zend_add_trait_method()
3810 …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_object_handlers.h150 ((fbc)->common.prototype ? (fbc)->common.prototype->common.scope : (fbc)->common.scope)
H A Dzend_execute_API.c843 … EX(function_state).function->common.scope ? EX(function_state).function->common.scope->name : "", in zend_call_function()
844 EX(function_state).function->common.scope ? "::" : "", in zend_call_function()
845 EX(function_state).function->common.function_name); in zend_call_function()
868 … EX(function_state).function->common.scope ? EX(function_state).function->common.scope->name : "", in zend_call_function()
870 EX(function_state).function->common.function_name); in zend_call_function()
944 EG(scope) = EX(function_state).function->common.scope; in zend_call_function()
975 if (EX(function_state).function->common.scope) { in zend_call_function()
976 EG(scope) = EX(function_state).function->common.scope; in zend_call_function()
1636 ai.afn[idx] ? ai.afn[idx]->common.function_name : "", \
1647 if (fn->common.fn_flags & ZEND_ACC_ABSTRACT) { in zend_verify_abstract_class_function()
[all …]
H A Dzend_object_handlers.c928 if (fbc->common.scope == ce && EG(scope) == ce) { in zend_check_private_int()
940 && fbc->common.scope == EG(scope)) { in zend_check_private_int()
1054 is_derived_class(fbc->common.scope, EG(scope)) && in zend_std_get_method()
1059 && priv_fbc->common.fn_flags & ZEND_ACC_PRIVATE in zend_std_get_method()
1060 && priv_fbc->common.scope == EG(scope)) { in zend_std_get_method()
1064 if ((fbc->common.fn_flags & ZEND_ACC_PROTECTED)) { in zend_std_get_method()
1195 if (UNEXPECTED(!(fbc->common.fn_flags & ZEND_ACC_STATIC))) { in zend_std_get_static_method()
1216 } else if ((fbc->common.fn_flags & ZEND_ACC_PROTECTED)) { in zend_std_get_static_method()
1311 if (UNEXPECTED(constructor->common.scope != EG(scope))) { in zend_std_get_constructor()
1315 … to private %s::%s() from invalid context", constructor->common.scope->name, constructor->common.f… in zend_std_get_constructor()
[all …]
/PHP-5.4/ext/spl/
H A Dspl_engine.h37 …retval, pce, &pce->constructor, pce->constructor->common.function_name, strlen(pce->constructor->c… in spl_instantiate_arg_ex1()
47 …retval, pce, &pce->constructor, pce->constructor->common.function_name, strlen(pce->constructor->c… in spl_instantiate_arg_ex2()
/PHP-5.4/ext/reflection/
H A Dphp_reflection.c854 if (fptr->common.scope != overwrites->common.scope) { in _function_string()
861 if (fptr->common.prototype && fptr->common.prototype->common.scope) { in _function_string()
862 string_printf(str, ", prototype %s", fptr->common.prototype->common.scope->name); in _function_string()
882 if (fptr->common.scope) { in _function_string()
1298 ZVAL_STRING(name, (method->common.scope && method->common.scope->trait_aliases)? in reflection_method_factory()
2838 mptr->common.scope->name, mptr->common.function_name); in ZEND_METHOD()
2843 mptr->common.scope->name, mptr->common.function_name, in ZEND_METHOD()
2947 mptr->common.scope->name, mptr->common.function_name); in ZEND_METHOD()
2952 mptr->common.scope->name, mptr->common.function_name, in ZEND_METHOD()
2978 mptr->common.scope->name, mptr->common.function_name); in ZEND_METHOD()
[all …]
/PHP-5.4/ext/standard/tests/array/
H A Darray_merge_recursive_variation9.phpt2 Test array_merge_recursive() function : usage variations - common key and value(Bug#43559)
12 * arrays having common key and value.
15 echo "*** Testing array_merge_recursive() : arrays with common key and value ***\n";
52 *** Testing array_merge_recursive() : arrays with common key and value ***
/PHP-5.4/ext/pdo/tests/
H A Dpdo_test.inc5 $common = '';
7 foreach(file(dirname($_SERVER['PHP_SELF']).'/common.phpt') as $line) {
9 $common .= $line;
14 $conf = eval($common);
/PHP-5.4/ext/standard/tests/file/windows_acls/
H A Dbug44859_3.phpt5 include_once __DIR__ . '/common.inc';
10 include_once __DIR__ . '/common.inc';
H A Dbug44859.phpt5 include_once __DIR__ . '/common.inc';
10 include_once __DIR__ . '/common.inc';
H A Dbug44859_2.phpt5 include_once __DIR__ . '/common.inc';
10 include_once __DIR__ . '/common.inc';
H A Dbug44859_4.phpt7 include_once __DIR__ . '/common.inc';
12 include_once __DIR__ . '/common.inc';
/PHP-5.4/ext/zlib/tests/
H A Dreadgzfile_basic.phpt11 is a very common test
31 is a very common test
H A Dreadgzfile_basic2.phpt11 is a very common test
31 is a very common test
H A Dgzfile_basic.phpt11 is a very common test
34 string(22) "is a very common test
H A Dgzfile_basic2.phpt11 is a very common test
34 string(22) "is a very common test
/PHP-5.4/ext/date/tests/
H A Dtimezone_identifiers_list_basic1.phpt20 echo "Check array contains some common timezones\n";
31 Check array contains some common timezones
H A DDateTimeZone_listIdentifiers_basic1.phpt20 echo "Check array contains some common timezones\n";
31 Check array contains some common timezones
/PHP-5.4/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.4/ext/standard/tests/file/windows_links/
H A Dbug48746_3.phpt12 include_once __DIR__ . '/common.inc';
21 include_once __DIR__ . '/common.inc';
H A Dbug48746.phpt12 include_once __DIR__ . '/common.inc';
21 include_once __DIR__ . '/common.inc';

Completed in 353 milliseconds

123456789