Home
last modified time | relevance | path

Searched refs:code (Results 51 – 75 of 2399) sorted by relevance

12345678910>>...96

/PHP-5.4/ext/mbstring/oniguruma/enc/
H A Diso8859_7.c33 #define ENC_IS_ISO_8859_7_CTYPE(code,ctype) \ argument
34 ((EncISO_8859_7_CtypeTable[code] & ctype) != 0)
152 iso_8859_7_is_code_ctype(OnigCodePoint code, unsigned int ctype) in iso_8859_7_is_code_ctype() argument
154 if (code < 256) in iso_8859_7_is_code_ctype()
155 return ENC_IS_ISO_8859_7_CTYPE(code, ctype); in iso_8859_7_is_code_ctype()
H A Dkoi8.c33 #define ENC_IS_KOI8_CTYPE(code,ctype) \ argument
34 ((EncKOI8_CtypeTable[code] & ctype) != 0)
144 koi8_is_code_ctype(OnigCodePoint code, unsigned int ctype) in koi8_is_code_ctype() argument
146 if (code < 256) in koi8_is_code_ctype()
147 return ENC_IS_KOI8_CTYPE(code, ctype); in koi8_is_code_ctype()
H A Dkoi8_r.c33 #define ENC_IS_KOI8_R_CTYPE(code,ctype) \ argument
34 ((EncKOI8_R_CtypeTable[code] & ctype) != 0)
143 koi8_r_is_code_ctype(OnigCodePoint code, unsigned int ctype) in koi8_r_is_code_ctype() argument
145 if (code < 256) in koi8_r_is_code_ctype()
146 return ENC_IS_KOI8_R_CTYPE(code, ctype); in koi8_r_is_code_ctype()
H A Diso8859_16.c33 #define ENC_IS_ISO_8859_16_CTYPE(code,ctype) \ argument
34 ((EncISO_8859_16_CtypeTable[code] & ctype) != 0)
152 is_code_ctype(OnigCodePoint code, unsigned int ctype) in is_code_ctype() argument
154 if (code < 256) in is_code_ctype()
155 return ENC_IS_ISO_8859_16_CTYPE(code, ctype); in is_code_ctype()
H A Diso8859_2.c33 #define ENC_IS_ISO_8859_2_CTYPE(code,ctype) \ argument
34 ((EncISO_8859_2_CtypeTable[code] & ctype) != 0)
257 iso_8859_2_is_code_ctype(OnigCodePoint code, unsigned int ctype) in iso_8859_2_is_code_ctype() argument
259 if (code < 256) in iso_8859_2_is_code_ctype()
260 return ENC_IS_ISO_8859_2_CTYPE(code, ctype); in iso_8859_2_is_code_ctype()
H A Diso8859_15.c33 #define ENC_IS_ISO_8859_15_CTYPE(code,ctype) \ argument
34 ((EncISO_8859_15_CtypeTable[code] & ctype) != 0)
152 is_code_ctype(OnigCodePoint code, unsigned int ctype) in is_code_ctype() argument
154 if (code < 256) in is_code_ctype()
155 return ENC_IS_ISO_8859_15_CTYPE(code, ctype); in is_code_ctype()
H A Diso8859_9.c33 #define ENC_IS_ISO_8859_9_CTYPE(code,ctype) \ argument
34 ((EncISO_8859_9_CtypeTable[code] & ctype) != 0)
153 iso_8859_9_is_code_ctype(OnigCodePoint code, unsigned int ctype) in iso_8859_9_is_code_ctype() argument
155 if (code < 256) in iso_8859_9_is_code_ctype()
156 return ENC_IS_ISO_8859_9_CTYPE(code, ctype); in iso_8859_9_is_code_ctype()
H A Dascii.c33 ascii_is_code_ctype(OnigCodePoint code, unsigned int ctype) in ascii_is_code_ctype() argument
35 if (code < 128) in ascii_is_code_ctype()
36 return ONIGENC_IS_ASCII_CODE_CTYPE(code, ctype); in ascii_is_code_ctype()
H A Dutf32_be.c63 utf32be_code_to_mbclen(OnigCodePoint code) in utf32be_code_to_mbclen() argument
69 utf32be_code_to_mbc(OnigCodePoint code, UChar *buf) in utf32be_code_to_mbc() argument
73 *p++ = (UChar )((code & 0xff000000) >>24); in utf32be_code_to_mbc()
74 *p++ = (UChar )((code & 0xff0000) >>16); in utf32be_code_to_mbc()
75 *p++ = (UChar )((code & 0xff00) >> 8); in utf32be_code_to_mbc()
76 *p++ = (UChar ) (code & 0xff); in utf32be_code_to_mbc()
H A Dutf32_le.c63 utf32le_code_to_mbclen(OnigCodePoint code) in utf32le_code_to_mbclen() argument
69 utf32le_code_to_mbc(OnigCodePoint code, UChar *buf) in utf32le_code_to_mbc() argument
73 *p++ = (UChar ) (code & 0xff); in utf32le_code_to_mbc()
74 *p++ = (UChar )((code & 0xff00) >> 8); in utf32le_code_to_mbc()
75 *p++ = (UChar )((code & 0xff0000) >>16); in utf32le_code_to_mbc()
76 *p++ = (UChar )((code & 0xff000000) >>24); in utf32le_code_to_mbc()
/PHP-5.4/ext/intl/
H A Dintl_error.h24 #define INTL_ERROR_CODE(e) (e).code
27 UErrorCode code; member
37 void intl_error_set( intl_error* err, UErrorCode code, char* msg, int copyMsg TSRMLS_DC );
45 void intl_errors_set( intl_error* err, UErrorCode code, char* msg, int copyMsg TSRMLS_DC );
/PHP-5.4/ext/standard/tests/assert/
H A Dassert02.phpt34 Notice: Undefined variable: a in %sassert02.php(12) : assert code on line 1
38 Parse error: %s error%sin %sassert02.php(14) : assert code on line 1
40 %string|unicode%(%d) "assert(): Failure evaluating code:
45 Parse error: %s error%sin %sassert02.php(19) : assert code on line 1
47 %string|unicode%(%d) "assert(): Failure evaluating code:
/PHP-5.4/ext/pcntl/tests/
H A D002.phpt27 echo "code === SI_USER || SI_NOINFO\n";
29 var_dump(($siginfo['code'] === SI_USER) || ($siginfo['code'] === SI_NOINFO));
31 var_dump($siginfo['code'] === SI_USER);
39 echo "code === CLD_KILLED\n";
40 var_dump($siginfo['code'] === CLD_KILLED);
81 code === SI_USER || SI_NOINFO
85 code === CLD_KILLED
/PHP-5.4/ext/mbstring/oniguruma/
H A Dregsyntax.c209 unsigned int what, OnigCodePoint code) in onig_set_meta_char() argument
213 enc->meta_char_table.esc = code; in onig_set_meta_char()
216 enc->meta_char_table.anychar = code; in onig_set_meta_char()
219 enc->meta_char_table.anytime = code; in onig_set_meta_char()
222 enc->meta_char_table.zero_or_one_time = code; in onig_set_meta_char()
225 enc->meta_char_table.one_or_more_time = code; in onig_set_meta_char()
228 enc->meta_char_table.anychar_anytime = code; in onig_set_meta_char()
/PHP-5.4/sapi/cli/tests/
H A D017.phpt51 foreach ($codes as $key => $code) {
53 $code = escapeshellarg($code);
54 echo `echo $code | "$php" -a`, "\n";
103 Parse error: syntax error, unexpected ')' in php shell code on line 1
H A D011.phpt12 $code = '
26 file_put_contents($filename, $code);
31 $code = '
41 file_put_contents($filename, $code);
/PHP-5.4/Zend/tests/
H A Dnowdoc_014.phpt11 $code = <<<'EOF'
18 highlight_string($code);
21 <code><span style="color: #000000">
24 </code>
H A Dnowdoc_013.phpt11 $code = <<<'EOF'
19 highlight_string($code);
22 <code><span style="color: #000000">
25 </code>
H A Dbug35655.phpt11 $code = '
18 highlight_string($code);
21 <code><span style="color: #000000">
24 </code>
/PHP-5.4/ext/standard/
H A Dpack.c138 char code = format[i++]; in PHP_FUNCTION() local
159 switch ((int) code) { in PHP_FUNCTION()
232 formatcodes[formatcount] = code; in PHP_FUNCTION()
242 int code = (int) formatcodes[i]; in PHP_FUNCTION() local
245 switch ((int) code) { in PHP_FUNCTION()
311 int code = (int) formatcodes[i]; in PHP_FUNCTION() local
315 switch ((int) code) { in PHP_FUNCTION()
389 if (code == 'n') { in PHP_FUNCTION()
391 } else if (code == 'v') { in PHP_FUNCTION()
416 if (code == 'N') { in PHP_FUNCTION()
[all …]
/PHP-5.4/ext/tokenizer/tests/
H A Dtoken_get_all_variation18.phpt2 Test token_get_all() function : usage variations - with HTML code
9 * Source code: ext/tokenizer/tokenizer.c
13 * Testing token_get_all() with source string containing HTML code with PHP
27 echo "php code with HTML";
94 string(20) ""php code with HTML""
/PHP-5.4/ext/standard/tests/file/
H A Drename_variation13-win32.phpt14 * Source code: ext/standard/file.c
77 Warning: rename(-1,%safile.tmp): The system cannot find the file specified. (code: 2) in %srename_v…
82 Warning: rename(1,%safile.tmp): The system cannot find the file specified. (code: 2) in %srename_va…
86 …e.tmp,): %r(Invalid argument|The system cannot find the path specified. \(code: 3\))%r in %srename…
89 …le.tmp): %r(Invalid argument|The system cannot find the path specified. \(code: 3\))%r in %srename…
107 Warning: rename(%s): The filename, directory name, or volume label syntax is incorrect. (code: 123)…
110 Warning: rename(%s): The filename, directory name, or volume label syntax is incorrect. (code: 123)…
132 Warning: rename(%safile.tmp,/no/such/file/dir): The system cannot find the path specified. (code: 3…
135 Warning: rename(/no/such/file/dir,%safile.tmp): The system cannot find the path specified. (code: 3…
139 Warning: rename(%safile.tmp,php/php): The system cannot find the path specified. (code: 3) in %sren…
[all …]
/PHP-5.4/ext/dom/tests/
H A DDOMDocument_createAttribute_error.phpt13 $code = $e->getCode();
14 if(DOM_INVALID_CHARACTER_ERR === $code) {
18 echo 'Wrong exception code';
/PHP-5.4/sapi/cgi/tests/
H A D006.phpt16 $code = '
30 file_put_contents($filename, $code);
35 $code = '
45 file_put_contents($filename, $code);
/PHP-5.4/ext/gd/libgd/
H A Dgd_gif_in.c430 int code, incode, i; in LWZReadByte_() local
467 if (code == sd->clear_code) { in LWZReadByte_()
481 } else if (code == sd->end_code) { in LWZReadByte_()
495 incode = code; in LWZReadByte_()
502 if (code >= sd->max_code) { in LWZReadByte_()
504 code = sd->oldcode; in LWZReadByte_()
507 while (code >= sd->clear_code) { in LWZReadByte_()
512 *sd->sp++ = sd->table[1][code]; in LWZReadByte_()
513 if (code == sd->table[0][code]) { in LWZReadByte_()
516 code = sd->table[0][code]; in LWZReadByte_()
[all …]

Completed in 44 milliseconds

12345678910>>...96