Home
last modified time | relevance | path

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

12345

/PHP-5.5/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
14 $dll->add(0,3); // 3 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";
[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 DSplDoublyLinkedList_isEmpty_not-empty-with-parameter.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("test"));
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_offsetGet_missing_param.phpt7 $dll = new SplDoublyLinkedList();
8 $dll->push(1);
9 $dll->push(2);
11 var_dump($dll->offsetGet());
H A DSplDoublyLinkedList_add_missing_parameter1.phpt5 $dll = new SplDoublyLinkedList();
6 var_dump($dll->add());
H A DSplDoublyLinkedList_isEmpty_empty.phpt8 $dll = new SplDoublyLinkedList();
10 var_dump($dll->isEmpty());
H A DSplDoublyLinkedList_add_missing_parameter2.phpt5 $dll = new SplDoublyLinkedList();
6 var_dump($dll->add(2));
H A DSplDoublyLinkedList_add_null_offset.phpt6 $dll = new SplDoublyLinkedList();
7 var_dump($dll->add(NULL,2));
H A DSplDoublyLinkedList_add_invalid_offset.phpt6 $dll = new SplDoublyLinkedList();
7 var_dump($dll->add(12,'Offset 12 should not exist'));
H A DSplDoublyLinkedList_count_param_SplDoublyLinkedList.phpt7 $dll = new SplDoublyLinkedList(2);
8 $dll->count(new SplDoublyLinkedList(2));
H A DSplDoublyLinkedList_push_missing_parameter.phpt7 $dll = new SplDoublyLinkedList();
8 var_dump($dll->push());
H A DSplDoublyLinkedList_setIteratorMode_param_SplDoublyLinkedList.phpt7 $dll = new SplDoublyLinkedList(2);
8 $dll->setIteratorMode(new SplDoublyLinkedList(2));
H A DSplDoublyLinkedList_unshift_missing_parameter.phpt7 $dll = new SplDoublyLinkedList();
8 var_dump($dll->unshift());
/PHP-5.5/ext/mssql/
H A Dmssql_win32_howto.txt20 This module requires ntwdblib.dll and one or more of the following dll's
22 dbmsadsn.dll
23 dbmsrpcn.dll
24 dbmsshrn.dll
25 dbmssocn.dll for tcp/ip connections
26 dbmsspxn.dll for ipx/spx connections
27 dbmsvinn.dll
28 dbnmpntw.dll for netbios connections
/PHP-5.5/win32/build/
H A Dregistersyslog.php11 $dll = $argv[1]; variable
21 reg_set_value($key, "EventMessageFile", REG_SZ, $dll) or die("EventMessageFile");
31 $dll = addslashes($dll); variable
38 "EventMessageFile"="$dll"
H A Dmkdist.php289 foreach ($deps as $dll) {
298 if (!file_exists($dll)) {
308 $dll = $tdll; variable
310 copy($dll, "$dist_dir/" . basename($dll));
330 foreach ($ENCHANT_DLLS as $dll) {
331 $dest = "$dist_dir/$dll[0]";
332 $filename = $dll[1];
346 foreach ($pecl_dll_deps as $dll) {
351 if (!file_exists($dll)) {
358 $dll = $tdll; variable
[all …]

Completed in 57 milliseconds

12345