/php-src/ext/pdo_sqlite/tests/subclasses/ |
H A D | pdo_sqlite_createaggregate_trampoline.phpt | 30 var_dump($db->createAggregate('S', [new TrampolineTest(), 'step'], [new TrampolineTest(), 'finalize… 39 Trampoline for step 40 Trampoline for step 41 Trampoline for step 42 Trampoline for step 43 Trampoline for step 44 Trampoline for step 45 Trampoline for step 46 Trampoline for step 47 Trampoline for step [all …]
|
H A D | pdo_sqlite_createaggregate_arg_error.phpt | 19 $db->createAggregate(null, [new TrampolineTest(), 'step'], null, 1); 25 $db->createAggregate(null, null, [new TrampolineTest(), 'step'], 1); 31 $db->createAggregate(null, [new TrampolineTest(), 'step'], [new TrampolineTest(), 'step'], 1); 43 $db->createAggregate('S', [new TrampolineTest(), 'step'], null, 1); 49 …$db->createAggregate('S', [new TrampolineTest(), 'step'], [new TrampolineTest(), 'finalize'], null… 60 Pdo\Sqlite::createAggregate(): Argument #2 ($step) must be a valid callback, no array or string giv…
|
/php-src/ext/sqlite3/tests/ |
H A D | sqlite3_trampoline_create_aggregate.phpt | 26 $step = [$o, 'step']; 56 Trampoline for step 57 Trampoline for step 58 Trampoline for step 59 Trampoline for step 60 Trampoline for step 61 Trampoline for step 62 Trampoline for step 63 Trampoline for step 64 Trampoline for step [all …]
|
H A D | sqlite3_trampoline_create_aggregate_no_leak.phpt | 26 $step = [$o, 'step']; 29 var_dump($db->createAggregate('', $step, $finalize, 1)); 32 var_dump($db->createAggregate(new stdClass(), $step, $finalize, new stdClass())); 37 var_dump($db->createAggregate('S', $step, $finalize, new stdClass())); 42 var_dump($db->createAggregate('S', $step, 'no_func', 1)); 53 var_dump($db->createAggregate('S', $step, $finalize, 'not a number')); 63 var_dump($obj->createAggregate('S', $step, $finalize, 1)); 68 var_dump($db->createAggregate('S', $step, $finalize, 1));
|
/php-src/ext/standard/tests/array/range/ |
H A D | range_step_errors.phpt | 2 range() programattic errors for the $step parameter 62 echo "-- Testing ( (low < high) && (high-low < step) ) --\n"; 69 echo "-- Testing ( (low > high) && (low-high < step) ) --\n"; 110 range(): Argument #3 ($step) cannot be 0 111 range(): Argument #3 ($step) cannot be 0 112 range(): Argument #3 ($step) cannot be 0 113 range(): Argument #3 ($step) cannot be 0 115 range(): Argument #3 ($step) must be a finite number, INF provided 116 range(): Argument #3 ($step) must be a finite number, INF provided 123 -- Testing ( (low < high) && (high-low < step) ) -- [all …]
|
H A D | range_inputs_float_basic.phpt | 16 echo "\nPassing int step\n"; 21 echo "\nPassing float step\n"; 67 Passing int step 99 Passing float step
|
H A D | range_inputs_int_basic.phpt | 16 echo "\nPassing int step\n"; 21 echo "\nPassing float step\n"; 83 Passing int step 115 Passing float step
|
H A D | range_inputs_string_numeric.phpt | 16 echo "\nPassing int step\n"; 21 echo "\nPassing float step\n"; 83 Passing int step 115 Passing float step
|
H A D | range_inputs_float_small_step_exhaustion.phpt | 17 The supplied range exceeds the maximum array size: start=0.0 end=100000000000.0 step=0.1 18 The supplied range exceeds the maximum array size: start=-%d end=%d step=1
|
H A D | range_inputs_string_variations.phpt | 2 Test range() function with unexpected string input variations or unusual step. 8 echo "int compatible float as step\n"; 18 int compatible float as step
|
H A D | range_inputs_string_invalid.phpt | 19 echo "Fractional step cannot be used on character ranges\n"; 20 var_dump( range("A", "H", 2.6) ); // Because step is fractional it tries to interpret inputs as flo… 78 Fractional step cannot be used on character ranges 80 Warning: range(): Argument #3 ($step) must be of type int when generating an array of characters, i…
|
H A D | range_inputs_int_with_float_step.phpt | 2 Test range() function with integer inputs and float step
|
H A D | range_inputs_string_digits_float_step.phpt | 2 Test range() function where boundary are string digits and step is a float
|
H A D | range_negative_step_decreasing_ranges.phpt | 2 range() allows $step parameter to be negative for decreasing ranges
|
H A D | range_bug70239_2.phpt | 12 The supplied range exceeds the maximum array size: start=0 end=%d step=1
|
H A D | range_bug70239_3.phpt | 12 The supplied range exceeds the maximum array size: start=-%d end=0 step=1
|
/php-src/ext/standard/tests/streams/ |
H A D | proc_open_bug51800_right2.phpt | 27 $step = 1024; 30 fwrite(STDOUT, substr($data0, $i0, $step)); 31 fwrite(STDERR, substr($data1, $i1, $step)); 32 $i0 += $step; 33 $i1 += $step;
|
/php-src/ext/standard/tests/array/ |
H A D | gh14775.phpt | 2 GH-14775: Range negative step overflow 12 range(): Argument #3 ($step) must be greater than %s
|
/php-src/Zend/tests/generators/ |
H A D | xrange.phpt | 6 function xrange($start, $end, $step = 1) { 7 for ($i = $start; $i <= $end; $i += $step) {
|
/php-src/ext/pdo_sqlite/tests/ |
H A D | gh13998.phpt | 7 $step = function () { 16 $db->sqliteCreateAggregate('S', $step, $finalize, 1);
|
/php-src/sapi/fpm/tests/ |
H A D | bug74083-concurrent-reload.phpt | 42 $step = 1000; 44 for ($interval = 0; $interval < $max_interval; $interval += $step) { 52 echo "Reached interval $interval us with $step us steps\n";
|
H A D | bug76601-reload-child-signals.phpt | 53 $step = 1000; 55 for ($interval = 0; $interval < $max_interval; $interval += $step) { 63 echo "Reached interval $interval us with $step us steps\n";
|
/php-src/ext/random/ |
H A D | engine_pcgoneseq128xslrr64.c | 30 static inline void step(php_random_status_state_pcgoneseq128xslrr64 *s) in step() function 41 step(s); in php_random_pcgoneseq128xslrr64_seed128() 43 step(s); in php_random_pcgoneseq128xslrr64_seed128() 50 step(s); in generate()
|
/php-src/sapi/cli/tests/ |
H A D | sapi_windows_set_ctrl_handler.phpt | 50 $max = 5000; $total = 0; $step = 100; 52 usleep($step); 53 $total += $step;
|
/php-src/ext/pdo_sqlite/ |
H A D | sqlite_driver.stub.php | 14 …public function sqliteCreateAggregate(string $name, callable $step, callable $finalize, int $numAr… argument
|