Home
last modified time | relevance | path

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

12345678910>>...109

/PHP-5.6/ext/mbstring/oniguruma/enc/
H A Dkoi8.c33 #define ENC_IS_KOI8_CTYPE(code,ctype) \ argument
34 ((EncKOI8_CtypeTable[code] & CTYPE_TO_BIT(ctype)) != 0)
138 koi8_is_code_ctype(OnigCodePoint code, unsigned int ctype) in koi8_is_code_ctype() argument
140 if (code < 256) in koi8_is_code_ctype()
141 return ENC_IS_KOI8_CTYPE(code, ctype); in koi8_is_code_ctype()
H A Diso8859_10.c33 #define ENC_IS_ISO_8859_10_CTYPE(code,ctype) \ argument
34 ((EncISO_8859_10_CtypeTable[code] & CTYPE_TO_BIT(ctype)) != 0)
147 is_code_ctype(OnigCodePoint code, unsigned int ctype) in is_code_ctype() argument
149 if (code < 256) in is_code_ctype()
150 return ENC_IS_ISO_8859_10_CTYPE(code, ctype); in is_code_ctype()
H A Diso8859_13.c33 #define ENC_IS_ISO_8859_13_CTYPE(code,ctype) \ argument
34 ((EncISO_8859_13_CtypeTable[code] & CTYPE_TO_BIT(ctype)) != 0)
151 is_code_ctype(OnigCodePoint code, unsigned int ctype) in is_code_ctype() argument
153 if (code < 256) in is_code_ctype()
154 return ENC_IS_ISO_8859_13_CTYPE(code, ctype); in is_code_ctype()
H A Diso8859_14.c33 #define ENC_IS_ISO_8859_14_CTYPE(code,ctype) \ argument
34 ((EncISO_8859_14_CtypeTable[code] & CTYPE_TO_BIT(ctype)) != 0)
148 is_code_ctype(OnigCodePoint code, unsigned int ctype) in is_code_ctype() argument
150 if (code < 256) in is_code_ctype()
151 return ENC_IS_ISO_8859_14_CTYPE(code, ctype); in 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_TO_BIT(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_16.c33 #define ENC_IS_ISO_8859_16_CTYPE(code,ctype) \ argument
34 ((EncISO_8859_16_CtypeTable[code] & CTYPE_TO_BIT(ctype)) != 0)
147 is_code_ctype(OnigCodePoint code, unsigned int ctype) in is_code_ctype() argument
149 if (code < 256) in is_code_ctype()
150 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_TO_BIT(ctype)) != 0)
210 is_code_ctype(OnigCodePoint code, unsigned int ctype) in is_code_ctype() argument
212 if (code < 256) in is_code_ctype()
213 return ENC_IS_ISO_8859_2_CTYPE(code, ctype); in is_code_ctype()
H A Diso8859_3.c33 #define ENC_IS_ISO_8859_3_CTYPE(code,ctype) \ argument
34 ((EncISO_8859_3_CtypeTable[code] & CTYPE_TO_BIT(ctype)) != 0)
151 is_code_ctype(OnigCodePoint code, unsigned int ctype) in is_code_ctype() argument
153 if (code < 256) in is_code_ctype()
154 return ENC_IS_ISO_8859_3_CTYPE(code, ctype); in is_code_ctype()
H A Diso8859_4.c33 #define ENC_IS_ISO_8859_4_CTYPE(code,ctype) \ argument
34 ((EncISO_8859_4_CtypeTable[code] & CTYPE_TO_BIT(ctype)) != 0)
150 is_code_ctype(OnigCodePoint code, unsigned int ctype) in is_code_ctype() argument
152 if (code < 256) in is_code_ctype()
153 return ENC_IS_ISO_8859_4_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_TO_BIT(ctype)) != 0)
151 is_code_ctype(OnigCodePoint code, unsigned int ctype) in is_code_ctype() argument
153 if (code < 256) in is_code_ctype()
154 return ENC_IS_ISO_8859_9_CTYPE(code, ctype); in is_code_ctype()
H A Dutf32_be.c68 utf32be_code_to_mbclen(OnigCodePoint code ARG_UNUSED) in utf32be_code_to_mbclen()
74 utf32be_code_to_mbc(OnigCodePoint code, UChar *buf) in utf32be_code_to_mbc() argument
78 *p++ = (UChar )((code & 0xff000000) >>24); in utf32be_code_to_mbc()
79 *p++ = (UChar )((code & 0xff0000) >>16); in utf32be_code_to_mbc()
80 *p++ = (UChar )((code & 0xff00) >> 8); in utf32be_code_to_mbc()
81 *p++ = (UChar ) (code & 0xff); in utf32be_code_to_mbc()
H A Dutf32_le.c68 utf32le_code_to_mbclen(OnigCodePoint code ARG_UNUSED) in utf32le_code_to_mbclen()
74 utf32le_code_to_mbc(OnigCodePoint code, UChar *buf) in utf32le_code_to_mbc() argument
78 *p++ = (UChar ) (code & 0xff); in utf32le_code_to_mbc()
79 *p++ = (UChar )((code & 0xff00) >> 8); in utf32le_code_to_mbc()
80 *p++ = (UChar )((code & 0xff0000) >>16); in utf32le_code_to_mbc()
81 *p++ = (UChar )((code & 0xff000000) >>24); in utf32le_code_to_mbc()
/PHP-5.6/ext/ereg/
H A Dregex.patch19 for (r = rerrs; r->code >= 0; r++)
20 if (r->code == target)
24 - if (r->code >= 0)
28 + if (r->code >= 0) {
54 if (r->code < 0)
57 - sprintf(localbuf, "%d", r->code);
58 + snprintf(localbuf, bufsize, "%d", r->code);
/PHP-5.6/ext/openssl/tests/
H A DServerClientTestCase.inc49 private function spawnWorkerProcess($code)
57 fwrite($this->workerStdIn, $code . "\n---\n");
67 private function stripPhpTagsFromCode($code)
69 return preg_replace('/^\s*<\?(?:php)?|\?>\s*$/i', '', $code);
74 $code = '';
83 $code .= $line;
86 eval($code);
/PHP-5.6/ext/simplexml/tests/
H A Dbug38354.phpt9 '<code>
11 </code>'
22 <code>
24 </code>
/PHP-5.6/ext/pdo_mysql/
H A Dget_error_codes.php20 foreach ($codes as $code => $state) {
21 echo "#ifdef $code\n";
22 printf(" case %-{$maxlen}s: return \"%s\";\n", $code, $state);
/PHP-5.6/ext/exif/tests/
H A Dbug72094.phpt14 Warning: exif_read_data(bug72094_1.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030…
16 Warning: exif_read_data(bug72094_1.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030…
18 Warning: exif_read_data(bug72094_1.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030…
20 Warning: exif_read_data(bug72094_1.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030…
22 Warning: exif_read_data(bug72094_1.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030…
24 Warning: exif_read_data(bug72094_1.jpg): Process tag(x8298=Copyright ): Illegal format code 0x3030…
38 Warning: exif_read_data(bug72094_3.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030…
40 Warning: exif_read_data(bug72094_3.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030…
42 Warning: exif_read_data(bug72094_3.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030…
44 Warning: exif_read_data(bug72094_3.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030…
[all …]
/PHP-5.6/ext/intl/
H A Dintl_error.h26 #define INTL_ERROR_CODE(e) (e).code
29 UErrorCode code; member
39 void intl_error_set( intl_error* err, UErrorCode code, char* msg, int copyMsg TSRMLS_DC );
47 void intl_errors_set( intl_error* err, UErrorCode code, char* msg, int copyMsg TSRMLS_DC );
/PHP-5.6/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.6/Zend/tests/
H A Dnowdoc_014.phpt11 $code = <<<'EOF'
18 highlight_string($code);
21 <code><span style="color: #000000">
24 </code>
/PHP-5.6/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
/PHP-5.6/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.6/ext/intl/msgformat/
H A Dmsgformat_helpers.cpp92 if (U_FAILURE(err.code)) { in umsg_get_numeric_types()
119 if (U_FAILURE(err.code)) { in umsg_get_numeric_types()
139 if (U_FAILURE(err.code)) { in umsg_parse_format()
286 if (U_FAILURE(err.code)) { in umsg_parse_format()
363 if (U_SUCCESS(err.code)) { in umsg_set_timezone()
380 if (U_FAILURE(err.code)) { in umsg_format_helper()
402 U_SUCCESS(err.code) && in umsg_format_helper()
431 if (U_FAILURE(err.code)) { in umsg_format_helper()
614 if (U_FAILURE(err.code)) { in umsg_format_helper()
625 if (U_FAILURE(err.code)) { in umsg_format_helper()
[all …]
/PHP-5.6/ext/standard/
H A Dpack.c145 char code = format[i++]; in PHP_FUNCTION() local
166 switch ((int) code) { in PHP_FUNCTION()
197 if (code == 'Z') { in PHP_FUNCTION()
270 switch ((int) code) { in PHP_FUNCTION()
350 switch ((int) code) { in PHP_FUNCTION()
355 memset(&output[outputpos], (code == 'a' || code == 'Z') ? '\0' : ' ', arg); in PHP_FUNCTION()
427 if (code == 'n') { in PHP_FUNCTION()
429 } else if (code == 'v') { in PHP_FUNCTION()
454 if (code == 'N') { in PHP_FUNCTION()
456 } else if (code == 'V') { in PHP_FUNCTION()
[all …]
/PHP-5.6/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""

Completed in 85 milliseconds

12345678910>>...109