Home
last modified time | relevance | path

Searched refs:output (Results 226 – 250 of 596) sorted by relevance

12345678910>>...24

/PHP-7.1/
H A DMakefile.gcov66 @$(LTP) --directory lcov_data/ --capture --base-directory=lcov_data --output-file $@
70 @$(LTP_GENHTML) --legend --output-directory lcov_html/ --title "PHP Code Coverage" php_lcov.info
H A Drun-tests.php1574 if (!strncasecmp('skip', ltrim($output), 4)) {
1595 if (!strncasecmp('info', ltrim($output), 4)) {
1601 if (!strncasecmp('warn', ltrim($output), 4)) {
1608 if (!strncasecmp('xfail', ltrim($output), 5)) {
1933 $output = trim($match[2]);
1982 show_file_block('out', $output);
2064 if (preg_match("/^$wanted_re\$/s", $output)) {
2092 if (!strcmp($output, $wanted)) {
2122 $output = $output_headers . "\n--HEADERS--\n" . $output;
2182 $output
[all …]
/PHP-7.1/ext/calendar/tests/
H A Dunixtojd.phpt9 // this line has no impact on test output on Windows
27 // -if omitted from unixtojd.phpt, does NOT output DATE_TZ_ERRMSG
/PHP-7.1/ext/standard/tests/http/
H A Dbug75535.phpt15 $pid = http_server("tcp://127.0.0.1:22351", $responses, $output);
H A Dhttp_response_header_05.phpt16 $pid = http_server("tcp://127.0.0.1:22350", $responses, $output);
H A Dhttp_response_header_04.phpt16 $pid = http_server("tcp://127.0.0.1:22349", $responses, $output);
H A Dhttp_response_header_01.phpt16 $pid = http_server("tcp://127.0.0.1:22346", $responses, $output);
/PHP-7.1/tests/output/
H A Dob_014.phpt2 output buffering - failure
H A Dob_015.phpt2 output buffering - failure
H A Dob_start_error_003.phpt7 * Function is implemented in main/output.c
H A Dob_start_basic_005.phpt7 * Function is implemented in main/output.c
H A Dob_start_error_004.phpt7 * Function is implemented in main/output.c
/PHP-7.1/Zend/tests/
H A Dbug65911.phpt12 echo A::$this->foo; // should not output 'bar'
H A Dbug64896.phpt34 /* will output:
/PHP-7.1/ext/session/tests/
H A Dbug41600.phpt11 arg_separator.output="&"
/PHP-7.1/ext/iconv/tests/
H A Dbug66828.phpt11 "output-charset" => "UTF-8",
H A Diconv002.phpt16 Expected output:
/PHP-7.1/ext/standard/tests/array/
H A Darray_walk_basic1.phpt26 echo "\n"; // new line to separate the output between each element
35 echo "\n"; // new line to separate the output between each element
H A Darray_walk_recursive_basic1.phpt26 echo "\n"; // new line to separate the output between each element
35 echo "\n"; // new line to separate the output between each element
H A Darray_walk_variation6.phpt31 echo "\n"; // new line to separate the output between each element
45 echo "\n"; // new line to separate the output between each element
59 echo "\n"; // new line to separate the output between each element
/PHP-7.1/ext/openssl/tests/
H A Dopenssl_seal_basic.phpt23 var_dump(openssl_seal($data, $sealed, $ekeys, array($pub_key))); // no output
24 var_dump(openssl_seal($data, $sealed, $ekeys, array($pub_key, $pub_key))); // no output
/PHP-7.1/ext/xmlrpc/libxmlrpc/
H A Dxmlrpc_private.h117 STRUCT_XMLRPC_REQUEST_OUTPUT_OPTIONS output; /* xml output options */ member
/PHP-7.1/ext/gd/tests/
H A Dbug36697-mb.phpt2 Bug #36697 (TrueColor transparency with GIF palette output).
H A Dbug36697.phpt2 Bug #36697 (TrueColor transparency with GIF palette output).
/PHP-7.1/ext/hash/
H A Dhash_md.c67 static void Encode(unsigned char *output, uint32_t *input, unsigned int len) in Encode() argument
72 output[j] = (unsigned char) (input[i] & 0xff); in Encode()
73 output[j + 1] = (unsigned char) ((input[i] >> 8) & 0xff); in Encode()
74 output[j + 2] = (unsigned char) ((input[i] >> 16) & 0xff); in Encode()
75 output[j + 3] = (unsigned char) ((input[i] >> 24) & 0xff); in Encode()
84 static void Decode(uint32_t *output, const unsigned char *input, unsigned int len) in Decode() argument
89 output[i] = ((uint32_t) input[j]) | (((uint32_t) input[j + 1]) << 8) | in Decode()
688 PHP_HASH_API void PHP_MD2Final(unsigned char output[16], PHP_MD2_CTX *context) in PHP_MD2Final()
694 memcpy(output, context->state, 16); in PHP_MD2Final()

Completed in 42 milliseconds

12345678910>>...24