Home
last modified time | relevance | path

Searched refs:code (Results 126 – 150 of 2471) sorted by relevance

12345678910>>...99

/PHP-7.4/ext/phar/tests/
H A Dfrontcontroller3.phpt16 <code><span style="color: #000000">
19 </code>
H A Dfrontcontroller9.phpt16 <code><span style="color: #000000">
19 </code>
H A Dfrontcontroller15.phpt16 <code><span style="color: #000000">
19 </code>
/PHP-7.4/sapi/cli/tests/
H A D010.phpt18 $code = '
24 file_put_contents($filename, $code);
H A Dbug65066_422.phpt2 Bug #65066 (Cli server not responsive when responding with 422 http status code): 422 status code
H A Dbug65066_511.phpt2 Bug #65066 (Cli server not responsive when responding with 422 http status code): 511 status code
H A Dbug73630a.phpt11 $code = <<<'EOF'
16 php_cli_server_start($code);
/PHP-7.4/ext/phar/tests/cache_list/
H A Dfrontcontroller3.phpt17 <code><span style="color: #000000">
20 </code>
H A Dfrontcontroller9.phpt17 <code><span style="color: #000000">
20 </code>
H A Dfrontcontroller15.phpt17 <code><span style="color: #000000">
20 </code>
/PHP-7.4/ext/phar/tests/tar/
H A Dfrontcontroller9.phar.phpt16 <code><span style="color: #000000">
19 </code>
H A Dfrontcontroller3.phar.phpt16 <code><span style="color: #000000">
19 </code>
H A Dfrontcontroller15.phar.phpt16 <code><span style="color: #000000">
19 </code>
/PHP-7.4/ext/phar/tests/zip/
H A Dfrontcontroller9.phar.phpt16 <code><span style="color: #000000">
19 </code>
H A Dfrontcontroller3.phar.phpt17 <code><span style="color: #000000">
20 </code>
/PHP-7.4/Zend/tests/type_declarations/
H A Dexplicit_weak_include_strict.phpt2 explicitly strict_types=0 code including strict_types=1 code
/PHP-7.4/sapi/fpm/tests/
H A Dbug80849-fpm.phpt21 $code = <<<EOT
26 $tester = new FPM\Tester($cfg, $code);
/PHP-7.4/main/streams/
H A Dphp_stream_context.h91 #define php_stream_notify_info(context, code, xmsg, xcode) do { if ((context) && (context)->notifie… argument
92 php_stream_notification_notify((context), (code), PHP_STREAM_NOTIFY_SEVERITY_INFO, \
114 #define php_stream_notify_error(context, code, xmsg, xcode) do { if ((context) && (context)->notifi… argument
115 php_stream_notification_notify((context), (code), PHP_STREAM_NOTIFY_SEVERITY_ERR, \
/PHP-7.4/ext/pdo_dblib/tests/
H A Dtimeout.phpt28 // expect some kind of error code
41 // expect some kind of error code
53 // expect some kind of error code
65 // expect some kind of error code
/PHP-7.4/sapi/litespeed/
H A Dlsapilib.h195 int LSAPI_ErrResponse_r( LSAPI_Request * pReq, int code, const char ** pRespHeaders,
198 static inline int LSAPI_SetRespStatus_r( LSAPI_Request * pReq, int code ) in LSAPI_SetRespStatus_r() argument
202 pReq->m_respHeader.m_respInfo.m_status = code; in LSAPI_SetRespStatus_r()
349 static inline int LSAPI_SetRespStatus( int code ) in LSAPI_SetRespStatus() argument
350 { return LSAPI_SetRespStatus_r( &g_req, code ); } in LSAPI_SetRespStatus()
352 static inline int LSAPI_ErrResponse( int code, const char ** pRespHeaders, const char * pBody, int … in LSAPI_ErrResponse() argument
353 { return LSAPI_ErrResponse_r( &g_req, code, pRespHeaders, pBody, bodyLen ); } in LSAPI_ErrResponse()
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_study.c116 PCRE2_SPTR nextbranch = code + GET(code, 1); in find_minlength()
117 PCRE2_UCHAR *cc = (PCRE2_UCHAR *)code + 1 + LINK_SIZE; in find_minlength()
122 if (*code >= OP_SBRA && *code <= OP_SCOND) return 0; in find_minlength()
126 if (*code == OP_CBRA || *code == OP_CBRAPOS) cc += IMM2_SIZE; in find_minlength()
971 PCRE2_SPTR tcode = code + 1 + LINK_SIZE; in set_start_bits()
973 if (*code == OP_CBRA || *code == OP_SCBRA || in set_start_bits()
974 *code == OP_CBRAPOS || *code == OP_SCBRAPOS) tcode += IMM2_SIZE; in set_start_bits()
1646 code += GET(code, 1); /* Advance to next branch */ in set_start_bits()
1648 while (*code == OP_ALT); in set_start_bits()
1675 PCRE2_UCHAR *code; in PRIV() local
[all …]
/PHP-7.4/ext/tokenizer/tests/
H A Dbug76991.phpt8 $code = <<<CODE
18 foreach (token_get_all($code) as $token) {
/PHP-7.4/Zend/tests/
H A Dbug75218.phpt6 function try_eval($code) {
8 eval($code);
/PHP-7.4/ext/json/
H A Djson_scanner.re67 static int php_json_hex_to_int(char code)
69 if (code >= '0' && code <= '9') {
70 return code - '0';
71 } else if (code >= 'A' && code <= 'F') {
72 return code - ('A' - 10);
73 } else if (code >= 'a' && code <= 'f') {
74 return code - ('a' - 10);
83 int i, code = 0;
86 code |= php_json_hex_to_int(*(pc--)) << (i * 4);
88 return code;
/PHP-7.4/ext/standard/tests/assert/
H A Dassert_error3.phpt17 …l error: Uncaught ParseError: syntax error, unexpected '$', expecting ';' in %s(%d) : assert code:1
22 Next Error: Failure evaluating code:

Completed in 42 milliseconds

12345678910>>...99