/php-7.4/Zend/ |
H A D | zend_inheritance.c(last modified 07/10/2020 08:00) | 926 /* Check for class aliases */ in property_types_compatible() 1651 static void zend_traits_copy_functions(zend_string *fnname, zend_function *fn, zend_class_entry *ce, HashTable **overridden, HashTable *exclude_table, zend_class_entry **aliases) /* {{{ */ in zend_traits_copy_functions() argument 1658 /* apply aliases which are qualified with a class name, there should not be any ambiguity */ in zend_traits_copy_functions() 1666 && (!aliases[i] || fn->common.scope == aliases[i]) in zend_traits_copy_functions() 1681 if (!aliases[i]) { in zend_traits_copy_functions() 1682 aliases[i] = fn->common.scope; in zend_traits_copy_functions() 1700 /* apply aliases which have not alias name, just setting visibility */ in zend_traits_copy_functions() 1708 && (!aliases[i] || fn->common.scope == aliases[ in zend_traits_copy_functions() 1761 zend_class_entry **aliases = NULL; zend_traits_init_trait_structures() local 1864 zend_do_traits_method_binding(zend_class_entry *ce, zend_class_entry **traits, HashTable **exclude_tables, zend_class_entry **aliases) zend_do_traits_method_binding() argument 2044 zend_do_check_for_inconsistent_traits_aliasing(zend_class_entry *ce, zend_class_entry **aliases) zend_do_check_for_inconsistent_traits_aliasing() argument 2097 zend_class_entry **aliases; zend_do_bind_traits() local [all...] |
/php-7.4/ext/mbstring/libmbfl/mbfl/ |
H A D | mbfl_language.c(last modified 13/02/2019 23:05) | 104 /* serch aliases */ in mbfl_name2language() 107 if (language->aliases != NULL) { in mbfl_name2language() 109 while ((*language->aliases)[j] != NULL) { in mbfl_name2language() 110 if (strcasecmp((*language->aliases)[j], name) == 0) { in mbfl_name2language()
|
H A D | mbfl_encoding.c(last modified 13/02/2019 23:05) | 235 /* serch aliases */ in mbfl_name2encoding() 238 if (encoding->aliases != NULL) { in mbfl_name2encoding() 240 while ((*encoding->aliases)[j] != NULL) { in mbfl_name2encoding() 241 if (strcasecmp((*encoding->aliases)[j], name) == 0) { in mbfl_name2encoding()
|
H A D | mbfl_language.h(last modified 13/02/2019 23:05) | 75 const char *(*aliases)[]; member
|
H A D | mbfl_encoding.h(last modified 13/02/2019 23:05) | 148 const char *(*aliases)[]; member
|
/php-7.4/sapi/phpdbg/ |
H A D | phpdbg_help.c(last modified 20/03/2019 08:00) | 35 PHPDBG_COMMAND_HELP_D(aliases, "show alias list", 'a', phpdbg_do_help_aliases), 268 if (cmd->alias == 'a') { /* help aliases executes a canned routine */ in PHPDBG_COMMAND() 282 PHPDBG_HELP(aliases) /* {{{ */ in PHPDBG_HELP() 287 /* Print out aliases for all commands except help as this one comes last */ in PHPDBG_HELP() 307 /* Print out aliases for help as this one comes last, with the added text on how aliases are used */ in PHPDBG_HELP() 323 pretty_print(get_help("aliases!")); in PHPDBG_HELP() 388 "Type **help aliases** to show a full alias list, including any registered phpdginit functions" CR 474 "keyword in full. Note some aliases are uppercase, and that keywords cannot be abbreviated other " 517 {"aliases!", C [all...] |
H A D | phpdbg_help.h(last modified 13/02/2019 23:05) | 33 PHPDBG_HELP(aliases); variable
|
H A D | phpdbg_cmd.h(last modified 13/02/2019 23:05) | 125 * 2) the commands at the top of the stack are resolved sensibly using aliases, abbreviations and case insensitive matching
|
/php-7.4/ext/openssl/ |
H A D | openssl.c(last modified 17/02/2021 08:00) | 390 ZEND_ARG_INFO(0, aliases) 394 ZEND_ARG_INFO(0, aliases) 6373 /* {{{ proto array openssl_get_md_methods([bool aliases = false]) 6377 zend_bool aliases = 0; in PHP_FUNCTION() local 6379 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|b", &aliases) == FAILURE) { in PHP_FUNCTION() 6384 aliases ? php_openssl_add_method_or_alias: php_openssl_add_method, in PHP_FUNCTION() 6389 /* {{{ proto array openssl_get_cipher_methods([bool aliases = false]) 6393 zend_bool aliases = 0; in PHP_FUNCTION() local 6395 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|b", &aliases) == FAILURE) { in PHP_FUNCTION() 6400 aliases in PHP_FUNCTION() [all...] |
/php-7.4/ext/standard/ |
H A D | basic_functions.h(last modified 01/10/2019 08:00) | 163 /* Deprecated type aliases -- use the standard types instead */
|
H A D | basic_functions.c(last modified 25/06/2020 08:00) | 3403 /* aliases from array.c */
|
/php-7.4/main/ |
H A D | php_output.h(last modified 13/02/2019 23:05) | 113 /* ctor for aliases */
|
H A D | output.c(last modified 13/03/2019 08:00) | 46 /* {{{ aliases, conflict and reverse conflict hash tables */
|
/php-7.4/ext/phar/ |
H A D | phar.c(last modified 04/02/2021 08:00) | 306 * Destroy phar's in shutdown, here we don't care about aliases 319 * Delete aliases to phar's that got kicked out of the global table 328 * Delete aliases to phar's that got kicked out of the global table
|
/php-7.4/ext/mbstring/ |
H A D | mbstring.c(last modified 08/04/2020 08:00) | 3637 Returns an array of the aliases of a given encoding name */ 3655 if (encoding->aliases != NULL) { in PHP_FUNCTION() 3657 for (alias = *encoding->aliases; *alias; ++alias) { in PHP_FUNCTION()
|
/php-7.4/ext/sodium/ |
H A D | libsodium.c(last modified 17/08/2020 08:00) | 354 /* aliases */
|
/php-7.4/ext/opcache/ |
H A D | ZendAccelerator.c(last modified 05/02/2021 08:00) | 1578 /* key may contain non-persistent PHAR aliases (see issues #115 and #149) */ in cache_script_in_shared_memory()
|
/php-7.4/ext/pgsql/ |
H A D | pgsql.c(last modified 09/02/2021 08:00) | 719 /* aliases for downwards compatibility */
|
/php-7.4/ext/reflection/ |
H A D | php_reflection.c(last modified 26/02/2021 08:00) | 4959 Returns an array of trait aliases */
|