Home
last modified time | relevance | path

Searched refs:list (Results 26 – 50 of 345) sorted by relevance

12345678910>>...14

/PHP-5.5/ext/spl/tests/
H A DSplDoublyLinkedList_bottom_pass_integer.phpt8 $list = new SplDoublyLinkedList();
9 $list->push("top");
10 $list->bottom(45);
H A DSplDoublyLinkedList_top_pass_array.phpt8 $list = new SplDoublyLinkedList();
9 $list->push("top");
10 $list->top(array());
H A DSplDoublyLinkedList_top_pass_float.phpt8 $list = new SplDoublyLinkedList();
9 $list->push("top");
10 $list->top(3.14159);
H A DSplDoublyLinkedList_top_pass_integer.phpt8 $list = new SplDoublyLinkedList();
9 $list->push("top");
10 $list->top(45);
H A DSplDoublyLinkedList_bottom_pass_array.phpt8 $list = new SplDoublyLinkedList();
9 $list->push("top");
10 $list->bottom(array());
H A DSplDoublyLinkedList_bottom_pass_null.phpt8 $list = new SplDoublyLinkedList();
9 $list->push("top");
10 $list->bottom(null);
H A DSplDoublyLinkedList_top_pass_null.phpt8 $list = new SplDoublyLinkedList();
9 $list->push("top");
10 $list->top(null);
H A DSplFileObject_fputcsv.phpt8 $list = array (
31 foreach ($list as $v) {
41 echo '$list = ';var_export($res);echo ";\n";
51 echo '$list = ';var_export($res);echo ";\n";
62 $list = array (
84 $list = array (
H A DRecursiveDirectoryIterator_getSubPath_basic.phpt17 $list = [];
19 $list[] = $it->getSubPath();
22 asort($list);
23 foreach ($list as $item) {
H A DRecursiveDirectoryIterator_getSubPathname_basic.phpt19 $list = [];
22 $list[] = $it->getSubPathname();
25 asort($list);
26 foreach ($list as $item) {
H A DSplDoublyLinkedList_current.phpt7 $list = new SplDoublyLinkedList();
8 var_dump($list->current());
H A DSplDoublyLinkedList_current_empty.phpt8 $list = new SplDoublyLinkedList();
9 var_dump($list->current());
H A DSplDoublyLinkedList_getIteratorMode_error.phpt7 $list = new SplDoublyLinkedList();
8 $list->getIteratorMode(24);
/PHP-5.5/ext/standard/tests/file/
H A Dfputcsv_variation15.phpt8 $list = array (
35 foreach ($list as $v) {
45 echo '$list = ';var_export($res);echo ";\n";
55 echo '$list = ';var_export($res);echo ";\n";
63 $list = array (
85 $list = array (
/PHP-5.5/Zend/tests/generators/
H A Dfibonacci.phpt2 Creating an infinite fibonacci list using a generator
7 list($a, $b) = [1, 1];
10 list($a, $b) = [$b, $a + $b];
/PHP-5.5/Zend/tests/
H A Dforeach_list_002.phpt6 foreach (array(array(1,2), array(3,4)) as list($a, )) {
12 foreach($array as list(list(), $a)) {
H A Dlist_007.phpt2 Using lambda with list()
6 list($x, $y) = function() { };
H A Dbug27598.phpt2 Bug #27598 (list() array key assignment causes HUGE memory leak)
5 list($out[0]) = array(1);
H A Dlist_004.phpt2 list() with array reference
9 list(,$a) = $b;
/PHP-5.5/Zend/
H A Dzend_multibyte.c43 …etector(const unsigned char *string, size_t length, const zend_encoding **list, size_t list_size T… in dummy_encoding_detector() argument
143 …etector(const unsigned char *string, size_t length, const zend_encoding **list, size_t list_size T… in zend_multibyte_encoding_detector() argument
145 return multibyte_functions.encoding_detector(string, length, list, list_size TSRMLS_CC); in zend_multibyte_encoding_detector()
185 const zend_encoding **list = 0; in zend_multibyte_set_script_encoding_by_string() local
193 …if (FAILURE == zend_multibyte_parse_encoding_list(new_value, new_value_length, &list, &size, 1 TSR… in zend_multibyte_set_script_encoding_by_string()
198 pefree(list, 1); in zend_multibyte_set_script_encoding_by_string()
202 if (FAILURE == zend_multibyte_set_script_encoding(list, size TSRMLS_CC)) { in zend_multibyte_set_script_encoding_by_string()
/PHP-5.5/ext/xmlrpc/libxmlrpc/
H A Dqueue.c725 key = list[ low ]; in QuickSort()
729 while(Comp(list[i], key) < 0) in QuickSort()
733 while(Comp(list[j], key) > 0) in QuickSort()
737 temp = list[i]; in QuickSort()
738 list[i] = list[j]; in QuickSort()
739 list[j] = temp; in QuickSort()
744 temp = list[low]; in QuickSort()
745 list[low] = list[j]; in QuickSort()
746 list[j] = temp; in QuickSort()
748 QuickSort(list, low, j-1, Comp); in QuickSort()
[all …]
/PHP-5.5/ext/mbstring/tests/
H A Dmb_encoding_aliases.phpt8 $list = mb_encoding_aliases("ASCII");
9 sort($list);
10 var_dump($list);
/PHP-5.5/ext/odbc/
H A Dphp_odbc_includes.h270 int odbc_add_result(HashTable *list, odbc_result *result);
271 odbc_result *odbc_get_result(HashTable *list, int count);
272 void odbc_del_result(HashTable *list, int count);
273 int odbc_add_conn(HashTable *list, HDBC conn);
274 odbc_connection *odbc_get_conn(HashTable *list, int count);
275 void odbc_del_conn(HashTable *list, int ind);
H A Dbirdstep.c250 static void birdstep_del_conn(HashTable *list,int ind) in birdstep_del_conn() argument
317 ind = birdstep_add_conn(list,new,hdbc TSRMLS_CC); in PHP_FUNCTION()
338 birdstep_del_conn(list, id); in PHP_FUNCTION()
420 indx = birdstep_add_result(list,res,conn); in PHP_FUNCTION()
444 birdstep_del_result(list,Z_LVAL_PP(ind)); in PHP_FUNCTION()
450 birdstep_del_result(list,Z_LVAL_PP(ind)); in PHP_FUNCTION()
505 birdstep_del_result(list,Z_LVAL_PP(ind)); in PHP_FUNCTION()
511 birdstep_del_result(list,Z_LVAL_PP(ind)); in PHP_FUNCTION()
530 birdstep_del_result(list,Z_LVAL_PP(ind)); in PHP_FUNCTION()
536 birdstep_del_result(list,Z_LVAL_PP(ind)); in PHP_FUNCTION()
[all …]
/PHP-5.5/ext/dom/tests/
H A Dbug38438.phpt7 $list = new DOMNodeList();
8 var_dump($list->item(0));

Completed in 146 milliseconds

12345678910>>...14