Home
last modified time | relevance | path

Searched refs:list (Results 101 – 125 of 314) sorted by relevance

12345678910>>...13

/PHP-7.4/ext/intl/tests/
H A Dresourcebundle.build18 $list[] = str_replace(".res", "", $file->getFileName());
21 $filelist = join(" {\"\"}\n", $list);
/PHP-7.4/ext/pdo_oci/tests/
H A Dpdo_oci_class_constants.phpt44 printf("[001] Dumping list of unexpected constants\n");
49 printf("[002] Dumping list of missing constants\n");
/PHP-7.4/Zend/tests/grammar/
H A Dsemi_reserved_008.phpt8 public static function list(){ echo __METHOD__, PHP_EOL; }
35 TraitA::list as public /**/ foreach;
H A Dregression_013.phpt6 class A { function foo() { "{${$a}}"; } function list() {} }
H A Dregression_012.phpt2 Testing for regression on const list syntax and arrays
/PHP-7.4/Zend/tests/
H A Dbug65969.phpt6 list($a,$b) = $obj->prop = [1,2];
H A Dlist_008.phpt2 Assignment to invalid list() value
H A Dgc_034.phpt2 GC 034: GC in request shutdown and resource list destroy
H A Dthis_in_foreach_004.phpt6 foreach ($a as list($this)) {
H A Dns_trailing_comma_error_05.phpt2 Group use declarations mustn't contain two commas mid-list
H A Dbug72441.phpt8 list(
H A Dns_trailing_comma_error_08.phpt2 Unmixed group use declarations mustn't contain two commas mid-list
H A Dtemporary_cleaning_011.phpt14 list($a, $b) = $c[0];
H A Dns_096.phpt2 Group use declaration list should not contain leading separator
/PHP-7.4/Zend/tests/list/
H A Dlist_reference_004.phpt2 "Reference Unpacking - Foreach" list()
H A Dlist_reference_011.phpt2 "Reference Unpacking - Compile Error (const)" list()
/PHP-7.4/ext/mbstring/
H A Dmbstring.c716 list = NULL; in php_mb_parse_encoding_list()
744 entry = list; in php_mb_parse_encoding_list()
823 list = NULL; in php_mb_parse_encoding_array()
829 entry = list; in php_mb_parse_encoding_array()
912 if (!list) { in php_mb_zend_encoding_detector()
1929 if (!list) { in PHP_FUNCTION()
1933 efree(list); in PHP_FUNCTION()
3559 list = NULL; in PHP_FUNCTION()
3565 if (list) { in PHP_FUNCTION()
3577 if (list) { in PHP_FUNCTION()
[all …]
/PHP-7.4/ext/standard/tests/file/
H A Dfgetcsv.phpt5 $list = array(
30 foreach ($list as $v) {
/PHP-7.4/Zend/
H A Dzend_multibyte.h30 …etector)(const unsigned char *string, size_t length, const zend_encoding **list, size_t list_size);
67 …detector(const unsigned char *string, size_t length, const zend_encoding **list, size_t list_size);
H A Dzend_ast.h268 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_list_add(zend_ast *list, zend_ast *op);
336 zend_ast_list *list = zend_ast_get_list(ast); in zend_ast_list_rtrim() local
337 if (list->children && list->child[list->children - 1] == NULL) { in zend_ast_list_rtrim()
338 list->children--; in zend_ast_list_rtrim()
/PHP-7.4/ext/xmlrpc/
H A Dxmlrpc-epi-php.c313 static int add_long(zval* list, char* id, int num) {
314 if(id) return add_assoc_long(list, id, num);
315 else return add_next_index_long(list, num);
318 static int add_double(zval* list, char* id, double num) {
319 if(id) return add_assoc_double(list, id, num);
320 else return add_next_index_double(list, num);
324 if(id) return add_assoc_string(list, id, string);
325 else return add_next_index_string(list, string);
337 if (list && val) { in add_zval()
342 zend_hash_index_update(Z_ARRVAL_P(list), index, val); in add_zval()
[all …]
/PHP-7.4/ext/standard/tests/array/
H A Darray_map_variation16.phpt12 * echo(), array(), empty(), eval(), exit(), isset(), list(), print()
28 'list',
67 Warning: array_map() expects parameter 1 to be a valid callback, function 'list' not found or inval…
/PHP-7.4/ext/spl/tests/
H A DSplDoublyLinkedList_isEmpty_empty.phpt2 Check that SplDoublyLinkedList->isEmpty() correctly returns true for an empty list.
/PHP-7.4/ext/opcache/tests/
H A Dbug74456.phpt17 list ($zero, $one, $two) = small_numbers();
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_cmd.c626 char *list = NULL; in phpdbg_stack_resolve() local
631 if (!list) { in phpdbg_stack_resolve()
632 list = emalloc(matched[it]->name_len + 1 + (it + 1 < matches ? sizeof(", ") - 1 : 0)); in phpdbg_stack_resolve()
634list = erealloc(list, (pos + matched[it]->name_len) + 1 + (it + 1 < matches ? sizeof(", ") - 1 : 0… in phpdbg_stack_resolve()
636 memcpy(&list[pos], matched[it]->name, matched[it]->name_len); in phpdbg_stack_resolve()
639 memcpy(&list[pos], ", ", sizeof(", ") - 1); in phpdbg_stack_resolve()
643 list[pos] = 0; in phpdbg_stack_resolve()
648 …=\"%s\"", "The command \"%s\" is ambiguous, matching %lu commands (%s)", name->str, matches, list); in phpdbg_stack_resolve()
649 efree(list); in phpdbg_stack_resolve()

Completed in 114 milliseconds

12345678910>>...13