Home
last modified time | relevance | path

Searched refs:top (Results 1 – 25 of 112) sorted by last modified time

12345

/PHP-5.5/win32/
H A Dinstall.txt1565 spec file which databases to support and the location of the top-level
1709 and near the top will be a listing called Configuration File (php.ini).
/PHP-5.5/tests/output/
H A Dob_implicit_flush_basic_002.phpt20 echo "because implicit flushing affects only the top level buffer, not user buffers.\n";
/PHP-5.5/sapi/litespeed/
H A DREADME102 3) Click 'Apply Changes' link on the top left of the page, then click
/PHP-5.5/sapi/apache_hooks/
H A Dmod_php5.c58 int top, max, persistent; member
117 stack->top = 0; in sapi_stack_init_ex()
137 return stack->top++; in sapi_stack_push()
140 if(stack->top == 0) { in sapi_stack_pop()
144 return stack->elements[--stack->top]; in sapi_stack_pop()
159 for (i=stack->top-1; i>=0; i--) { in sapi_stack_apply_with_argument_all()
164 for (i=0; i<stack->top; i++) { in sapi_stack_apply_with_argument_all()
179 for (i=stack->top-1; i>=0; i--) { in sapi_stack_apply_with_argument_stop_if_equals()
186 for (i=0; i<stack->top; i++) { in sapi_stack_apply_with_argument_stop_if_equals()
202 for (i=stack->top-1; i>=0; i--) { in sapi_stack_apply_with_argument_stop_if_http_error()
[all …]
H A Dphp_apache.c1812 zend_bool top=0; in PHP_FUNCTION() local
1816 …e_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|b", &var, &var_len, &val, &val_len, &top) == FAILURE) { in PHP_FUNCTION()
1820 while(top) { in PHP_FUNCTION()
H A Dconfig.m4128 EXPERIMENTAL: Build Apache 1.x module. DIR is the top-level Apache
/PHP-5.5/sapi/apache/
H A Dphp_apache.c439 zend_bool top=0; in PHP_FUNCTION() local
443 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|b", &var, &var_len, &val, &val_len, &top)… in PHP_FUNCTION()
447 while(top) { in PHP_FUNCTION()
H A Dconfig.m4126 [ --with-apache[=DIR] Build Apache 1.x module. DIR is the top-level Apache
/PHP-5.5/
H A Dphp.ini-development349 ; unless "declare(encoding=...)" directive appears at the top of the script.
H A Dphp.ini-production349 ; unless "declare(encoding=...)" directive appears at the top of the script.
/PHP-5.5/main/
H A Dmergesort.c248 #define reverse(bot, top) { \ argument
249 s = top; \
/PHP-5.5/ext/wddx/
H A Dwddx.c96 int top, max; member
177 stack->top = 0; in wddx_stack_init()
197 return stack->top++; in wddx_stack_push()
205 if (stack->top > 0) { in wddx_stack_top()
219 if (stack->top == 0) { in wddx_stack_is_empty()
928 if (stack->top == 0) { in php_wddx_pop_element()
941 stack->top--; in php_wddx_pop_element()
975 if (stack->top > 1) { in php_wddx_pop_element()
976 stack->top--; in php_wddx_pop_element()
1050 stack->top--; in php_wddx_pop_element()
[all …]
/PHP-5.5/ext/standard/html_tables/
H A Dents_html5.txt1949 top 022A4
/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/spl/tests/
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_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 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 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 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 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

Completed in 826 milliseconds

12345