Home
last modified time | relevance | path

Searched refs:input (Results 151 – 175 of 650) sorted by relevance

12345678910>>...26

/php-src/ext/standard/tests/strings/
H A Dstrtok_variation7.phpt2 Test strtok() function : usage variations - modifying the input string while tokenising
6 * Testing strtok() : modifying the input string while it is getting tokenised
9 echo "*** Testing strtok() : with modification of input string in between tokenising ***\n";
16 // adding a string to the input string which is being tokenised
26 // adding a string to the input string which is being tokenised
36 *** Testing strtok() : with modification of input string in between tokenising ***
H A Daddcslashes_003.phpt8 /* Miscellaneous input */
9 echo "\n*** Testing addcslashes() with miscellaneous input arguments ***\n";
28 *** Testing addcslashes() with miscellaneous input arguments ***
/php-src/ext/soap/tests/schema/
H A Dtest_schema.inc4 function test($input) {
6 $val = $input;
33 <input message="testMessage"/>
40 <input>
42 </input>
/php-src/ext/standard/tests/array/
H A Dbug34982.phpt18 function apply(&$input, $key) {
19 $input = 'changed';
H A Darray_slice_variation6.phpt11 $input = array ('one' => 1, 2 => 'two', 'three', 9 => 'nine', 'ten' => 10);
16 var_dump(array_slice($input, $offset, $i));
19 var_dump(array_slice($input, $offset, PHP_INT_MAX));
22 var_dump(array_slice($input, $offset, -PHP_INT_MAX));
H A Darray_walk_object2.phpt52 $input = array (
60 var_dump( array_walk($input, "callback_private", 1));
62 var_dump( array_walk($input, "callback_public"));
64 var_dump( array_walk($input, "callback_protected"));
H A Darray_walk_recursive_object2.phpt52 $input = array (
62 var_dump( array_walk_recursive($input, "callback_private", 1));
64 var_dump( array_walk_recursive($input, "callback_public"));
66 var_dump( array_walk_recursive($input, "callback_protected"));
H A Darray_rand_variation4.phpt2 Test array_rand() function : usage variation - with associative arrays for 'input' parameter
7 * the 'input' parameter in the function call
44 foreach($asso_arrays as $input) {
49 var_dump( array_rand($input) );
53 var_dump( array_rand($input, 1) ); // with $num_req=1
55 var_dump( array_rand($input, 2) ); // with $num_req=2
H A Darray_splice_variation1.phpt10 echo "test behaviour when input array is in a reference set\n";
17 echo "Test behaviour of input arrays containing references \n";
48 test behaviour when input array is in a reference set
65 Test behaviour of input arrays containing references
H A Darray_values_basic.phpt13 $input = array('zero', 'one', 'two', 'three' => 3, 10 => 'ten');
16 var_dump( array_values($input) );
H A Darray_unique_variation2.phpt2 Test array_unique() function : usage variations - different arrays for 'input' argument
6 * Passing different arrays to $input argument and testing whether
10 echo "*** Testing array_unique() : Passing different arrays to \$input argument ***\n";
42 // arrays passed to $input argument
70 foreach($inputs as $input) {
72 var_dump( array_unique($input, SORT_STRING) );
79 *** Testing array_unique() : Passing different arrays to $input argument ***
/php-src/ext/filter/
H A Dconfig.m42 [whether to enable input filter support],
4 [Disable input filter support])],
/php-src/ext/iconv/tests/
H A Dbug48147.phpt18 Notice: iconv(): Detected an illegal character in input string in %s on line %d
22 Notice: iconv(): Detected an incomplete multibyte character in input string in %s on line %d
26 Notice: iconv(): Detected an incomplete multibyte character in input string in %s on line %d
/php-src/ext/tidy/tests/
H A D029.phpt16 foreach ($inputs as $input) {
18 $t = tidy_parse_string($input);
/php-src/ext/opcache/jit/ir/
H A Dir_gcm.c22 ir_ref n, *p, input; in ir_gcm_schedule_early() local
37 input = *p; in ir_gcm_schedule_early()
38 if (input > 0) { in ir_gcm_schedule_early()
871 input = *p; in ir_schedule()
887 if (input > 0 && _blocks[input] == b && !_xlat[input] && _prev[j] != input) { in ir_schedule()
893 _prev[_next[input]] = _prev[input]; in ir_schedule()
894 _next[_prev[input]] = _next[input]; in ir_schedule()
909 input = *p; in ir_schedule()
921 _prev[_next[input]] = _prev[input]; in ir_schedule()
922 _next[_prev[input]] = _next[input]; in ir_schedule()
[all …]
H A Dir_sccp.c136 input = *p; in ir_sccp_meet_phi()
152 input = v->op1; in ir_sccp_meet_phi()
153 IR_ASSERT(input < 0 || _values[input].op != IR_COPY); in ir_sccp_meet_phi()
184 input = *p; in ir_sccp_meet_phi()
200 input = v->op1; in ir_sccp_meet_phi()
201 IR_ASSERT(input < 0 || _values[input].op != IR_COPY); in ir_sccp_meet_phi()
351 if (input > 0 && _values[input].op > IR_COPY) { in ir_sccp_remove_insn()
373 if (input > 0) { in ir_sccp_remove_insn2()
401 if (input > 0 && _values[input].op > IR_COPY) { in ir_sccp_replace_insn()
621 if (input && IR_IS_FEASIBLE(input)) { in ir_sccp_remove_unfeasible_merge_inputs()
[all …]
/php-src/sapi/phpdbg/
H A Dphpdbg_lexer.l31 void phpdbg_init_lexer (phpdbg_param_t *stack, char *input) { in ZEND_EXTERN_MODULE_GLOBALS()
36 LEX(text) = YYCURSOR = (unsigned char *) input; in ZEND_EXTERN_MODULE_GLOBALS()
37 LEX(len) = strlen(input); in ZEND_EXTERN_MODULE_GLOBALS()
/php-src/sapi/cgi/tests/
H A D007.phpt17 string(25) "No input file specified.
19 string(49) "No syntax errors detected in Standard input code
H A D005.phpt21 No input file specified.
25 No input file specified.
/php-src/ext/bz2/tests/
H A Dbug72447.phpt7 $input = "AAAAAAAA";
8 $param = array('blocks' => $input);
/php-src/ext/hash/
H A Dhash_ripemd.c211 output[i] = ((uint32_t) input[j + 0]) | (((uint32_t) input[j + 1]) << 8) | in RIPEMDDecode()
212 (((uint32_t) input[j + 2]) << 16) | (((uint32_t) input[j + 3]) << 24); in RIPEMDDecode()
295 RIPEMD128Transform(context->state, &input[i]); in PHP_RIPEMD128Update()
394 RIPEMD256Transform(context->state, &input[i]); in PHP_RIPEMD256Update()
494 RIPEMD160Transform(context->state, &input[i]); in PHP_RIPEMD160Update()
603 RIPEMD320Transform(context->state, &input[i]); in PHP_RIPEMD320Update()
627 static void RIPEMDEncode(unsigned char *output, uint32_t *input, unsigned int len) in RIPEMDEncode() argument
632 output[j + 3] = (unsigned char) ((input[i] >> 24) & 0xff); in RIPEMDEncode()
633 output[j + 2] = (unsigned char) ((input[i] >> 16) & 0xff); in RIPEMDEncode()
634 output[j + 1] = (unsigned char) ((input[i] >> 8) & 0xff); in RIPEMDEncode()
[all …]
/php-src/tests/basic/
H A Denable_post_data_reading_01.phpt13 var_dump(file_get_contents("php://input"));
14 var_dump(file_get_contents("php://input"));
H A Denable_post_data_reading_04.phpt14 var_dump(file_get_contents("php://input"));
15 var_dump(file_get_contents("php://input"));
H A Denable_post_data_reading_03.phpt14 var_dump(file_get_contents("php://input"));
15 var_dump(file_get_contents("php://input"));
/php-src/ext/mbstring/
H A Dgen_rare_cp_bitvec.php11 $input = file_get_contents($argv[1]); variable
12 foreach (explode("\n", $input) as $line) {

Completed in 50 milliseconds

12345678910>>...26