Home
last modified time | relevance | path

Searched refs:dll (Results 1 – 25 of 55) sorted by relevance

123

/PHP-8.3/ext/spl/tests/
H A Ddllist_010.phpt6 $dll->push(1);
7 $dll->push(2);
8 $dll->push(3);
9 $dll->push(4);
12 $dll->rewind();
13 $dll->prev();
15 $dll->rewind();
17 $dll->next();
19 $dll->next();
20 $dll->next();
[all …]
H A Ddllist_001.phpt8 $dll->pop();
13 $dll->shift();
20 $dll->push($a);
24 $dll->unshift($a);
28 $dll->push(1);
29 $dll->push(2);
32 $dll->pop();
33 $dll->pop();
36 $dll->push(NULL);
37 $dll->push(NULL);
[all …]
H A Ddllist_013.phpt8 $dll->add(2,5);
13 $dll->add(0,6); // 6
23 echo count($dll)."\n";
25 echo $dll->pop()."\n";
26 echo $dll->pop()."\n";
27 echo $dll->pop()."\n";
28 echo $dll->pop()."\n";
29 echo $dll->pop()."\n";
30 echo $dll->pop()."\n";
36 $dll->add(0, $str);
[all …]
H A Ddllist_003.phpt5 $dll = new SplDoublyLinkedList();
6 $dll->push(2);
7 $dll->push(3);
8 $dll->push(4);
10 $dll->setIteratorMode(SplDoublyLinkedList::IT_MODE_LIFO);
12 foreach ($dll as $k => $v) {
16 $dll->setIteratorMode(SplDoublyLinkedList::IT_MODE_FIFO);
17 foreach ($dll as $k => $v) {
22 var_dump($dll->count());
23 foreach ($dll as $k => $v) {
[all …]
H A Ddllist_memleak.phpt5 $dll = new SplDoublyLinkedList();
6 $dll->push(1);
7 $dll->push(2);
8 $dll->push(3);
9 $dll->push(4);
12 $dll->rewind();
13 echo $dll->current()."\n";
14 $dll->next();
15 $dll->next();
16 echo $dll->current()."\n";
H A Ddllist_002.phpt5 $dll = new SplDoublyLinkedList();
6 $dll->push(2);
7 $dll->push(3);
8 $dll->push(4);
10 $dll2 = clone $dll;
13 foreach($dll as $k=>$v) {
16 foreach($dll as $k2=>$v2) {
23 foreach($dll as $k=>$v) {
25 unset($dll);
H A DSplDoublyLinkedList_isEmpty_not-empty.phpt8 $dll = new SplDoublyLinkedList();
11 $dll->push(1);
12 $dll->push(2);
13 $dll->push(3);
14 //var_dump($dll);
16 var_dump($dll->isEmpty());
H A Ddllist_011.phpt5 $dll = new SplDoublyLinkedList();
6 $dll->rewind();
7 $dll->prev();
8 var_dump($dll->current());
H A DSplDoublyLinkedList_debug-info.phpt8 $dll = new SplDoublyLinkedList();
11 $dll->push(1);
12 $dll->push(2);
13 $dll->push(3);
16 print_r($dll);
H A DSplDoublyLinkedList_offsetUnset_negative-parameter.phpt8 $dll = new SplDoublyLinkedList();
11 $dll->push(1);
12 $dll->push(2);
13 $dll->push(3);
16 $dll->offsetUnset(-1);
H A DSplDoublyLinkedList_offsetUnset_parameter-larger-num-elements.phpt8 $dll = new SplDoublyLinkedList();
11 $dll->push(1);
12 $dll->push(2);
13 $dll->push(3);
16 $dll->offsetUnset(3);
H A DSPLDoublyLinkedList_iterate_by_reference.phpt8 $dll = new SplDoublyLinkedList();
10 $dll->push(2);
11 $dll->push(3);
14 foreach($dll as $key => &$value) {
H A DSplDoublyLinkedList_isEmpty_empty.phpt8 $dll = new SplDoublyLinkedList();
10 var_dump($dll->isEmpty());
H A DSplDoublyLinkedList_add_null_offset.phpt6 $dll = new SplDoublyLinkedList();
7 var_dump($dll->add([],2));
H A DSplDoublyLinkedList_add_invalid_offset.phpt6 $dll = new SplDoublyLinkedList();
7 var_dump($dll->add(12,'Offset 12 should not exist'));
H A DSplQueue_setIteratorMode_param_lifo.phpt10 $dll = new SplQueue();
11 $dll->setIteratorMode(SplDoublyLinkedList::IT_MODE_LIFO);
/PHP-8.3/win32/build/
H A Dregistersyslog.php7 $dll = $argv[1]; variable
8 $dll = addslashes($dll); variable
15 "EventMessageFile"="$dll"
H A Dmkdist.php304 foreach ($deps as $dll) {
313 if (!file_exists($dll)) {
323 $dll = $tdll; variable
325 copy($dll, "$dist_dir/" . basename($dll));
345 foreach ($ENCHANT_DLLS as $dll) {
346 $dest = "$dist_dir/$dll[0]";
347 $filename = $dll[1];
393 foreach ($pecl_dll_deps as $dll) {
398 if (!file_exists($dll)) {
405 $dll = $tdll; variable
[all …]
H A Dtemplate.rc25 #define INTERNAL_NAME FILE_NAME /* e.g. 'php7ts.dll', 'php_bz2.dll' */
/PHP-8.3/tests/basic/
H A Dbug71273.phpt7 …APED') . " -n -d html_errors=on -d extension_dir=a/�/w -d extension=php_kartoffelbrei.dll -v 2>&1";
10 var_dump(preg_match(",.+a[\\/].+[\\/]w.php_kartoffelbrei.dll.+,s", $out));
/PHP-8.3/ext/ffi/tests/
H A Dbug78270_1.phpt19 EOC, "php_zend_test.dll");
29 EOC, "php_zend_test.dll");
/PHP-8.3/sapi/cli/tests/
H A Dext_loading.phpt6 if (!file_exists($extDir . '/opcache.so') && !file_exists($extDir . '/php_opcache.dll')) {
28 $name = PHP_OS_FAMILY == 'Windows' ? 'php_opcache.dll' : 'opcache.so';
39 $name = PHP_OS_FAMILY == 'Windows' ? 'php_unknown_ext.dll' : 'unknown_ext.so';
/PHP-8.3/sapi/apache2handler/
H A Dconfig.w3214 'php' + PHP_VERSION + 'apache2.dll',
32 'php' + PHP_VERSION + 'apache2_2.dll',
50 'php' + PHP_VERSION + 'apache2_4.dll',
/PHP-8.3/ext/standard/tests/general_functions/
H A Ddl-use_register_functions_directly.phpt15 $loaded = dl('php_dl_test.dll');
/PHP-8.3/ext/opcache/tests/
H A Dgh8466.phpt13 $loaded = dl('php_dl_test.dll');

Completed in 28 milliseconds

123