Home
last modified time | relevance | path

Searched refs:top (Results 76 – 100 of 112) sorted by path

12345

/PHP-5.5/ext/spl/
H A Dspl_dllist.c645 SPL_METHOD(SplDoublyLinkedList, top) in SPL_METHOD() argument
1372 SPL_ME(SplDoublyLinkedList, top, arginfo_dllist_void, ZEND_ACC_PUBLIC)
H A Dspl_heap.c279 spl_ptr_heap_element top; in spl_ptr_heap_delete_top() local
286 top = heap->elements[0]; in spl_ptr_heap_delete_top()
311 heap->dtor(top TSRMLS_CC); in spl_ptr_heap_delete_top()
312 return top; in spl_ptr_heap_delete_top()
747 SPL_METHOD(SplPriorityQueue, top) in SPL_METHOD() argument
834 SPL_METHOD(SplHeap, top) in SPL_METHOD() argument
1184 SPL_ME(SplPriorityQueue, top, arginfo_splheap_void, ZEND_ACC_PUBLIC)
1200 SPL_ME(SplHeap, top, arginfo_splheap_void, ZEND_ACC_PUBLIC)
/PHP-5.5/ext/spl/tests/
H A DSplDoublyLinkedList_bottom_pass_array.phpt9 $list->push("top");
H A DSplDoublyLinkedList_bottom_pass_float.phpt9 $list->push("top");
H A DSplDoublyLinkedList_bottom_pass_integer.phpt9 $list->push("top");
H A DSplDoublyLinkedList_bottom_pass_null.phpt9 $list->push("top");
H A DSplDoublyLinkedList_top_pass_array.phpt2 SplDoublyLinkedList::top() - pass in an unexpected array
9 $list->push("top");
10 $list->top(array());
14 Warning: SplDoublyLinkedList::top() expects exactly 0 parameters, 1 given in %s on line %d
H A DSplDoublyLinkedList_top_pass_float.phpt2 SplDoublyLinkedList::top() - pass in an unexpected float parameter
9 $list->push("top");
10 $list->top(3.14159);
14 Warning: SplDoublyLinkedList::top() expects exactly 0 parameters, 1 given in %s on line %d
H A DSplDoublyLinkedList_top_pass_integer.phpt2 SplDoublyLinkedList::top() - pass in an unexpected integer parameter
9 $list->push("top");
10 $list->top(45);
14 Warning: SplDoublyLinkedList::top() expects exactly 0 parameters, 1 given in %s on line %d
H A DSplDoublyLinkedList_top_pass_null.phpt2 SplDoublyLinkedList::top() - pass in an unexpected null parameter
9 $list->push("top");
10 $list->top(null);
14 Warning: SplDoublyLinkedList::top() expects exactly 0 parameters, 1 given in %s on line %d
H A Ddllist_001.phpt30 echo $dll->top()."\n";
H A Ddllist_004.phpt26 echo $stack->top()."\n";
H A Ddllist_005.phpt26 echo $queue->top()."\n";
H A Dheap_011.phpt15 var_dump($h->top());
27 var_dump($h->top());
H A Dheap_corruption.phpt2 SPL: SplHeap - heap corruption via compare exception (with top element deletion)
53 $heap->top();
H A Dheap_top_variation_001.phpt2 SPL: SplHeap top, illegal number of args
10 // top doesn't take any args, lets see what happens if we give it one
11 $h->top('bogus');
14 Warning: SplHeap::top() expects exactly 0 parameters, 1 given in %s
H A Dheap_top_variation_002.phpt2 SPL: SplHeap top, corrupted heap
23 // call top, should fail with corrupted heap
25 $h->top();
H A Dheap_top_variation_003.phpt2 SPL: SplHeap top of empty heap
10 $h->top();
H A Dspl_pq_top_basic.phpt2 SPL: SplPriorityQueue: top and extract flags
16 echo "value: ",$priorityQueue->top(),PHP_EOL;
20 echo "priority: ",$priorityQueue->top(),PHP_EOL;
24 print_r($priorityQueue->top());
28 echo "value: ",$priorityQueue->top(),PHP_EOL;
H A Dspl_pq_top_error_args.phpt2 SPL: SplPriorityQueue: top too many arguments exception
9 $priorityQueue->top('var');
12 Warning: SplPriorityQueue::top() expects exactly 0 parameters, 1 given in %s
H A Dspl_pq_top_error_corrupt.phpt2 SPL: SplPriorityQueue: top and extract flags
31 $priorityQueue->top();
H A Dspl_pq_top_error_empty.phpt2 SPL: SplPriorityQueue: top exception on empty heap
12 $priorityQueue->top();
/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3.c54396 top = get2byteNotZero(&data[hdr+5]);
54403 testcase( gap+2==top );
54404 testcase( gap+1==top );
54405 testcase( gap==top );
54421 testcase( gap+2+nByte==top );
54422 if( gap+2+nByte>top ){
54427 top = get2byteNotZero(&data[hdr+5]);
54428 assert( gap+nByte<=top );
54438 top -= nByte;
54439 put2byte(&data[hdr+5], top);
[all …]
/PHP-5.5/ext/standard/html_tables/
H A Dents_html5.txt1949 top 022A4
/PHP-5.5/ext/standard/tests/strings/
H A Dhtml_entity_decode_html5.phpt1954 "&top;",
4088 &top; => ⊤ e28aa4

Completed in 386 milliseconds

12345