Home
last modified time | relevance | path

Searched refs:code (Results 76 – 100 of 789) sorted by relevance

12345678910>>...32

/php-src/ext/zend_test/tests/
H A Dobserver_eval_01.phpt17 <!-- init '%s%eobserver_eval_%d.php(%d) : eval()'d code' -->
18 <file '%s%eobserver_eval_%d.php(%d) : eval()'d code'>
19 </file '%s%eobserver_eval_%d.php(%d) : eval()'d code'>
/php-src/ext/gd/libgd/
H A Dgd_gif_in.c434 int code, incode, i; in LWZReadByte_() local
471 if (code == sd->clear_code) { in LWZReadByte_()
485 } else if (code == sd->end_code) { in LWZReadByte_()
499 incode = code; in LWZReadByte_()
506 if (code >= sd->max_code) { in LWZReadByte_()
508 code = sd->oldcode; in LWZReadByte_()
511 while (code >= sd->clear_code) { in LWZReadByte_()
516 *sd->sp++ = sd->table[1][code]; in LWZReadByte_()
517 if (code == sd->table[0][code]) { in LWZReadByte_()
520 code = sd->table[0][code]; in LWZReadByte_()
[all …]
/php-src/ext/pcre/pcre2lib/
H A Dpcre2_substring.c80 entrysize = pcre2_substring_nametable_scan(match_data->code, stringname, in pcre2_substring_copy_byname()
168 entrysize = pcre2_substring_nametable_scan(match_data->code, stringname, in pcre2_substring_get_byname()
275 entrysize = pcre2_substring_nametable_scan(match_data->code, stringname, in pcre2_substring_length_byname()
330 if (stringnumber > match_data->code->top_bracket) in pcre2_substring_length_bynumber()
483 pcre2_substring_nametable_scan(const pcre2_code *code, PCRE2_SPTR stringname, in pcre2_substring_nametable_scan() argument
487 uint16_t top = code->name_count; in pcre2_substring_nametable_scan()
488 uint16_t entrysize = code->name_entry_size; in pcre2_substring_nametable_scan()
489 PCRE2_SPTR nametable = (PCRE2_SPTR)((char *)code + sizeof(pcre2_real_code)); in pcre2_substring_nametable_scan()
501 lastentry = nametable + entrysize * (code->name_count - 1); in pcre2_substring_nametable_scan()
544 pcre2_substring_number_from_name(const pcre2_code *code, in pcre2_substring_number_from_name() argument
[all …]
/php-src/ext/soap/tests/bugs/
H A Dbug50997.phpt10 $params = array('code'=>'foo');
16 …"http://www.example.org/service2/"><SOAP-ENV:Body><ns1:NewOperation><code>foo</code></ns1:NewOpera…
/php-src/ext/mysqli/tests/
H A Dbug72489.phpt21 if (!$link->query("CREATE TABLE bug72489 (id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY, code VARCH…
25 $seedSQL = "INSERT INTO bug72489 (`code`) VALUES ('code1'), ('code2'), ('code3');";
32 if (!$stmt = $link->prepare("SELECT id, code FROM bug72489")) {
37 if (!$stmt->bind_result($subRow['id'], $subRow['code']) || !$stmt->execute()) {
43 $subRow['code'] = $testArray;
/php-src/ext/fileinfo/libmagic/
H A Dis_csv.c134 const char *code) in file_is_csv() argument
158 if (file_printf(ms, "CSV %s%stext", code ? code : "", in file_is_csv()
159 code ? " " : "") == -1) in file_is_csv()
/php-src/sapi/cgi/tests/
H A Dapache_response_headers.phpt16 $code = '<?php';
17 $code .= '
29 file_put_contents( $test_file, $code );
/php-src/ext/standard/tests/strings/
H A Daddcslashes_002.phpt9 /* charlist "\0..\37" would escape all characters with ASCII code between 0 and 31 */
10 echo "\n*** Testing addcslashes() with ASCII code between 0 and 31 ***\n";
28 *** Testing addcslashes() with ASCII code between 0 and 31 ***
H A Dhighlight_file.phpt45code style="color: #000000"><span style="color: #0000BB">&lt;?php </span><span style="color: #0077…
46code style="color: #000000"><span style="color: #0000BB">&lt;?php </span><span style="color: #0077…
47 <pre><code style="color: #000000">
54 </span><span style="color: #0000BB">?&gt;</span></code></pre>bool(true)
/php-src/ext/libxml/tests/
H A D002.phpt40 $return .= "Warning $error->code: ";
43 $return .= "Error $error->code: ";
46 $return .= "Fatal Error $error->code: ";
75 ["code"]=>
/php-src/ext/zlib/tests/
H A Dgzgetss.gz
/php-src/Zend/tests/
H A Dstatic_variable_in_dynamic_function.phpt6 $code = <<<'CODE'
15 eval($code);
H A Dstatic_variable_in_dynamic_function_2.phpt6 $code = <<<'CODE'
14 eval($code);
H A Dbug71086.phpt11 string(139) "<pre><code style="color: #000000"><span style="color: #0000BB">&lt;?php
12 09 09 09</span><span style="color: #007700">;</span></code></pre>"
/php-src/Zend/tests/type_declarations/
H A Dstrict_include_weak.phpt2 strict_types=1 code including strict_types=0 code
H A Dstrict_include_explicit_weak.phpt2 strict_types=1 code including explicitly strict_types=0 code
/php-src/ext/tokenizer/tests/
H A Dtoken_get_all_TOKEN_PARSE_000.phpt9 token_get_all('<?php invalid code;', TOKEN_PARSE);
18 syntax error, unexpected identifier "code"
H A Dbug54089.phpt15 foreach ($codes as $code) {
16 $tokens = token_get_all($code);
19 $code = '';
22 $code .= isset($t[1]) ? $t[1] : $t;
24 var_dump($code);
H A Dparse_errors.phpt8 function test_parse_error($code) {
10 var_dump(token_get_all($code, TOKEN_PARSE));
15 foreach (token_get_all($code) as $token) {
/php-src/Zend/tests/function_arguments/
H A Dsensitive_parameter_eval_call.phpt19 #0 %ssensitive_parameter_eval_call.php(11) : eval()'d code(1): test(Object(SensitiveParameterValue))
25 string(%d) "%ssensitive_parameter_eval_call.php(11) : eval()'d code"
51 string(%d) "%ssensitive_parameter_eval_call.php(11) : eval()'d code"
/php-src/ext/intl/
H A DERROR_CONVENTIONS.md8 The global error code can be obtained in userland with `intl_get_error_code()`.
9 This is a `U_*` error code defined by ICU, but it does not have necessarily to
13 the PHP wrapper function should set the global error code to
16 The error code (an integer) can be converter to the corresponding enum name
20 a message set by the PHP wrapping code, not by ICU. The message should include
26 The internal PHP code can set the global last error with:
31 void intl_error_set(intl_error* err, UErrorCode code, char* msg, int copyMsg);
59 void intl_errors_set(intl_error* err, UErrorCode code, char* msg, int copyMsg);
101 way to reset the object's internal error code. Instead, resetting of the
102 object's internal error code is done upon fetching the object from its zval.
[all …]
/php-src/ext/standard/tests/general_functions/
H A Dhighlight_heredoc.phpt19 <pre><code style="color: #000000">
27 </code></pre>
/php-src/ext/standard/tests/dir/
H A Dbug80960.phpt14 Warning: opendir(notexist*): %s (code: 123) in %s on line %d
18 Warning: opendir(notexist?): %s (code: 123) in %s on line %d
22 Warning: opendir(longname%r_+%r): %s (code: 111) in %s on line %d
/php-src/docs/source/introduction/ides/
H A Dvisual-studio-code.rst10 An IDE can make navigating large code bases tremendously easier. Visual Studio Code is a popular and
12 auto-completion and a debugger. Check the `official website <https://code.visualstudio.com/>`__ for
38 .. code:: bash
48 .. code:: json
60 and code completion but no syntax highlighting and no debugger. As such, it should be used in
64 .. code:: json
77 .. _clangd extension: https://marketplace.visualstudio.com/items?itemName=llvm-vs-code-extensions.v…
79 .. code:: json
96 .. code:: json
128 Set any breakpoint in your C code, open a ``php`` (or ``phpt``) file and start debugging from the
/php-src/sapi/cli/tests/
H A D016.phpt56 foreach ($codes as $key => $code) {
58 $code = escapeshellarg($code);
59 echo `echo $code | $php -a`, "\n";

Completed in 41 milliseconds

12345678910>>...32