Home
last modified time | relevance | path

Searched refs:output (Results 126 – 150 of 550) sorted by relevance

12345678910>>...22

/php-src/ext/xsl/tests/
H A Dxslt005.phpt10 $res = $xp->query("/xsl:stylesheet/xsl:output/@indent");
12 print "No or more than one xsl:output/@indent found";
H A Dxslt004.phpt10 $res = $xp->query("/xsl:stylesheet/xsl:output/@encoding");
12 print "No or more than one xsl:output/@encoding found";
/php-src/ext/soap/tests/bugs/
H A Dbug29795.wsdl20 <output message="tns:GetPriceResponse"/>
30 <output>
32 </output>
H A Dbug29839.wsdl22 <output message="tns:EchoStringResponse"/>
32 <output>
34 </output>
H A Dbug34453.wsdl22 <output message="tns:EchoStringResponse"/>
32 <output>
34 </output>
/php-src/ext/curl/tests/
H A Dcurl_ftp_pasv.phpt23 // enable below to get the output in verbose mode.
26 /* Without enabling SKIP_PASV_IP flag, the following output will be seen..
32 /* After enabling SKIP_PASV_IP flag, the following output will be seen..
/php-src/ext/hash/
H A Dhash_md.c80 static void Encode(unsigned char *output, uint32_t *input, unsigned int len) in Encode() argument
85 output[j] = (unsigned char) (input[i] & 0xff); in Encode()
86 output[j + 1] = (unsigned char) ((input[i] >> 8) & 0xff); in Encode()
87 output[j + 2] = (unsigned char) ((input[i] >> 16) & 0xff); in Encode()
88 output[j + 3] = (unsigned char) ((input[i] >> 24) & 0xff); in Encode()
97 static void Decode(uint32_t *output, const unsigned char *input, unsigned int len) in Decode() argument
102 output[i] = ((uint32_t) input[j]) | (((uint32_t) input[j + 1]) << 8) | in Decode()
350 PHP_HASH_API void PHP_MD2Final(unsigned char output[16], PHP_MD2_CTX *context) in PHP_MD2Final()
356 memcpy(output, context->state, 16); in PHP_MD2Final()
/php-src/ext/openssl/tests/
H A Dopenssl_open_basic.phpt14 openssl_open($sealed, $output, $ekeys[0], $priv_key, $method);
15 var_dump($output);
/php-src/ext/random/tests/03_randomizer/methods/
H A DgetBytesFromString.phpt33 $output = $randomizer->getBytesFromString(str_repeat('ab', $i), 500);
36 if (!str_contains($output, 'a') || !str_contains($output, 'b')) {
/php-src/ext/standard/tests/http/
H A Dbug65634.phpt25 ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output);
28 fseek($output, 0, SEEK_SET);
29 echo stream_get_contents($output);
H A Dignore_errors.phpt20 ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output);
34 fseek($output, 0, SEEK_SET);
35 var_dump(stream_get_contents($output));
36 fseek($output, 0, SEEK_SET);
/php-src/ext/standard/tests/strings/
H A Dmd5_file.phpt2 Test md5_file() function with ASCII output and raw binary output
51 /* Normal operation with hexadecimal output */
55 /* Normal operation with raw binary output */
H A Dshow_source_variation2.phpt2 Test function show_source() by calling it with its expected arguments and output to variable, more …
8 echo "*** Test by calling method or function with its expected arguments and output to variable ***…
23 *** Test by calling method or function with its expected arguments and output to variable ***
25 …>"*** Test by calling method or function with its expected arguments and output to variable ***\n"…
H A Dshow_source_variation1.phpt2 Test function show_source() by calling it with its expected arguments and php output, more test for…
8 echo "*** Test by calling method or function with its expected arguments and php output ***\n";
23 *** Test by calling method or function with its expected arguments and php output ***
26 …* Test by calling method or function with its expected arguments and php output ***\n"</span><span…
/php-src/ext/xmlwriter/tests/
H A DOO_008.phpt23 $output = $xw->flush(true);
24 print $output;
H A DOO_010.phpt23 $output = $xw->flush(true);
24 print $output;
H A D011.phpt22 $output = xmlwriter_flush($xw, true);
23 print $output;
H A DOO_013.phpt17 // CData output
19 // end the document and output
H A D012.phpt24 $output = xmlwriter_flush($xw, true);
25 print $output;
H A DOO_011.phpt25 $output = $xw->flush(true);
26 print $output;
H A DOO_012.phpt17 // CData output
21 // end the document and output
/php-src/ext/standard/tests/file/
H A Dbug60120.phpt72 foreach ($procOutput as $output) {
73 if ($output !== $stdin) {
74 die('Output does not match input: ' . $output);
/php-src/tests/output/
H A Dob_013.phpt2 output buffering - handlers/status
52 [0] => default output handler
76 [name] => default output handler
/php-src/.github/ISSUE_TEMPLATE/
H A Dbug_report.yml16 Resulted in this output:
20 But I expected this output instead:
/php-src/ext/random/tests/01_functions/
H A Dmt_rand_value.phpt2 Test mt_rand() output
34 * Note that the output will be different from the original mt19937ar.c,

Completed in 47 milliseconds

12345678910>>...22