/PHP-5.3/ext/mbstring/oniguruma/enc/ |
H A D | koi8_r.c | 33 #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 D | iso8859_10.c | 33 #define ENC_IS_ISO_8859_10_CTYPE(code,ctype) \ argument 34 ((EncISO_8859_10_CtypeTable[code] & ctype) != 0) 153 iso_8859_10_is_code_ctype(OnigCodePoint code, unsigned int ctype) in iso_8859_10_is_code_ctype() argument 155 if (code < 256) in iso_8859_10_is_code_ctype() 156 return ENC_IS_ISO_8859_10_CTYPE(code, ctype); in iso_8859_10_is_code_ctype()
|
H A D | iso8859_14.c | 33 #define ENC_IS_ISO_8859_14_CTYPE(code,ctype) \ argument 34 ((EncISO_8859_14_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_14_CTYPE(code, ctype); in is_code_ctype()
|
H A D | iso8859_4.c | 33 #define ENC_IS_ISO_8859_4_CTYPE(code,ctype) \ argument 34 ((EncISO_8859_4_CtypeTable[code] & ctype) != 0) 153 iso_8859_4_is_code_ctype(OnigCodePoint code, unsigned int ctype) in iso_8859_4_is_code_ctype() argument 155 if (code < 256) in iso_8859_4_is_code_ctype() 156 return ENC_IS_ISO_8859_4_CTYPE(code, ctype); in iso_8859_4_is_code_ctype()
|
H A D | iso8859_5.c | 33 #define ENC_IS_ISO_8859_5_CTYPE(code,ctype) \ argument 34 ((EncISO_8859_5_CtypeTable[code] & ctype) != 0) 145 iso_8859_5_is_code_ctype(OnigCodePoint code, unsigned int ctype) in iso_8859_5_is_code_ctype() argument 147 if (code < 256) in iso_8859_5_is_code_ctype() 148 return ENC_IS_ISO_8859_5_CTYPE(code, ctype); in iso_8859_5_is_code_ctype()
|
H A D | iso8859_9.c | 33 #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 D | iso8859_15.c | 33 #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 D | ascii.c | 33 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 D | utf32_be.c | 63 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 D | utf32_le.c | 63 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.3/ext/intl/ |
H A D | intl_error.h | 24 #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.3/ext/standard/tests/assert/ |
H A D | assert02.phpt | 34 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.3/ext/tokenizer/tests/ |
H A D | token_get_all_variation18.phpt | 2 Test token_get_all() function : usage variations - with HTML code 7 * Source code: ext/tokenizer/tokenizer.c 11 * Testing token_get_all() with source string containing HTML code with PHP 25 echo "php code with HTML"; 92 string(20) ""php code with HTML""
|
/PHP-5.3/Zend/tests/ |
H A D | nowdoc_014.phpt | 12 $code = <<<'EOF' 19 highlight_string($code); 22 <code><span style="color: #000000"> 25 </code>
|
H A D | bug35655.phpt | 12 $code = ' 19 highlight_string($code); 22 <code><span style="color: #000000"> 25 </code>
|
H A D | nowdoc_013.phpt | 12 $code = <<<'EOF' 20 highlight_string($code); 23 <code><span style="color: #000000"> 26 </code>
|
/PHP-5.3/sapi/cli/tests/ |
H A D | 017.phpt | 51 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 D | 011.phpt | 12 $code = ' 26 file_put_contents($filename, $code); 31 $code = ' 41 file_put_contents($filename, $code);
|
/PHP-5.3/ext/mbstring/oniguruma/ |
H A D | regsyntax.c | 209 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.3/ext/pcntl/tests/ |
H A D | 002.phpt | 27 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.3/ext/standard/ |
H A D | pack.c | 139 char code = format[i++]; in PHP_FUNCTION() local 160 switch ((int) code) { in PHP_FUNCTION() 233 formatcodes[formatcount] = code; in PHP_FUNCTION() 243 int code = (int) formatcodes[i]; in PHP_FUNCTION() local 246 switch ((int) code) { in PHP_FUNCTION() 312 int code = (int) formatcodes[i]; in PHP_FUNCTION() local 316 switch ((int) code) { in PHP_FUNCTION() 390 if (code == 'n') { in PHP_FUNCTION() 392 } else if (code == 'v') { in PHP_FUNCTION() 417 if (code == 'N') { in PHP_FUNCTION() [all …]
|
/PHP-5.3/ext/dom/tests/ |
H A D | DOMDocument_createAttribute_error.phpt | 13 $code = $e->getCode(); 14 if(DOM_INVALID_CHARACTER_ERR === $code) { 18 echo 'Wrong exception code';
|
/PHP-5.3/sapi/cgi/tests/ |
H A D | 006.phpt | 16 $code = ' 30 file_put_contents($filename, $code); 35 $code = ' 45 file_put_contents($filename, $code);
|
/PHP-5.3/ext/gd/libgd/ |
H A D | gd_gif_in.c | 423 int code, incode, i; in LWZReadByte_() local 460 if (code == sd->clear_code) { in LWZReadByte_() 474 } else if (code == sd->end_code) { in LWZReadByte_() 488 incode = code; in LWZReadByte_() 495 if (code >= sd->max_code) { in LWZReadByte_() 497 code = sd->oldcode; in LWZReadByte_() 500 while (code >= sd->clear_code) { in LWZReadByte_() 505 *sd->sp++ = sd->table[1][code]; in LWZReadByte_() 506 if (code == sd->table[0][code]) { in LWZReadByte_() 509 code = sd->table[0][code]; in LWZReadByte_() [all …]
|
/PHP-5.3/tests/strings/ |
H A D | 004.phpt | 17 <code><span style="color: #000000"> 19 </code> 20 [<code><span style="color: #000000"> 22 </code>]
|