Home
last modified time | relevance | path

Searched refs:c (Results 226 – 250 of 4637) sorted by relevance

12345678910>>...186

/PHP-5.5/Zend/
H A DZend.dsp110 SOURCE=.\zend.c
114 SOURCE=.\zend_alloc.c
118 SOURCE=.\zend_API.c
158 SOURCE=.\zend_float.c
166 SOURCE=.\zend_hash.c
174 SOURCE=.\zend_indent.c
178 SOURCE=.\zend_ini.c
202 SOURCE=.\zend_list.c
206 SOURCE=.\zend_llist.c
234 SOURCE=.\zend_qsort.c
[all …]
H A DZendTS.dsp135 SOURCE=.\zend.c
139 SOURCE=.\zend_alloc.c
143 SOURCE=.\zend_API.c
192 SOURCE=.\zend_hash.c
200 SOURCE=.\zend_indent.c
204 SOURCE=.\zend_ini.c
232 SOURCE=.\zend_list.c
236 SOURCE=.\zend_llist.c
252 SOURCE=.\zend_opcode.c
264 SOURCE=.\zend_qsort.c
[all …]
/PHP-5.5/ext/oci8/tests/
H A Dbug43497_92.phpt53 function readxmltab_ex($c)
82 function readxmltab_im($c)
97 @dropxmltab($c);
109 function fillxmltab($c)
141 createxmltab($c);
142 fillxmltab($c);
146 $sid = sessionid($c);
152 readxmltab_ex($c);
159 readxmltab_im($c);
173 dropxmltab($c);
[all …]
H A Dlob_035.phpt21 $statement = oci_parse($c,$ora_sql);
27 oci_commit($c);
36 $statement = oci_parse($c,$ora_sql);
41 oci_commit($c);
44 $s = oci_parse($c, $select_sql);
50 $s = oci_parse($c, $select_sql);
69 oci_rollback($c);
70 oci_rollback($c);
71 oci_commit($c);
72 oci_commit($c);
[all …]
H A Dextauth_04.phpt15 $c = oci_connect('/', '', 'anything', null, OCI_CRED_EXT);
16 if (!$c) {
20 var_dump($c);
24 $c = oci_new_connect('/', '', 'anything', null, OCI_CRED_EXT);
25 if (!$c) {
29 var_dump($c);
33 $c = oci_pconnect('/', '', 'anything', null, OCI_CRED_EXT);
34 if (!$c) {
38 var_dump($c);
H A Dbug42134.phpt16 $c = oci_connect($user,$password,$dbase);
19 $c = oci_connect($user,$password);
22 $collection = oci_new_collection($c, "ABC");
25 $m = oci_error($c);
35 $c = oci_new_connect($user,$password);
38 $collection = oci_new_collection($c, "DEF");
41 $m = oci_error($c);
48 $c = oci_pconnect($user,$password,$dbase);
51 $c = oci_pconnect($user,$password);
54 $collection = oci_new_collection($c, "GHI");
[all …]
H A Dbug42841.phpt41 oci8_test_sql_execute($c, $stmtarray);
45 function do_bug42841($c)
50 $stmt = oci_parse($c, $sql);
51 $cursor = oci_new_cursor($c);
68 $stmt = oci_parse($c, $sql);
69 $cursor = oci_new_cursor($c);
84 function do_bug43449($c)
92 function bug43449_getCur($c)
94 $cur = oci_new_cursor($c);
112 do_bug42841($c);
[all …]
H A Dbind_sqltint.phpt23 oci8_test_sql_execute($c, $stmtarray);
25 function check_col($c, $colname, $id)
43 check_col($c, 'varchar2_t10', 141);
52 check_col($c, 'number_t', 142);
61 check_col($c, 'number_t', 143);
70 check_col($c, 'number_t', 144);
79 check_col($c, 'number_t', 145);
88 check_col($c, 'number_t', 146);
97 check_col($c, 'number_t', 147);
106 check_col($c, 'number_t92', 148);
[all …]
H A Dbind_empty.phpt11 $statement = oci_parse($c, $drop);
15 $statement = oci_parse($c, $create);
22 $stmt = oci_parse($c, "UPDATE bind_empty_tab SET name=:name");
30 $stmt = oci_parse($c, "UPDATE bind_empty_tab SET name=:name");
37 $stmt = oci_parse($c, "INSERT INTO bind_empty_tab (NAME) VALUES ('abc')");
40 $stmt = oci_parse($c, "INSERT INTO bind_empty_tab (NAME) VALUES ('def')");
49 $stid = oci_parse($c, "select * from bind_empty_tab order by 1");
62 $stid = oci_parse($c, "select * from bind_empty_tab order by 1");
70 $s = oci_parse($c, "begin :bv := null; end; ");
79 $s = oci_parse($c, "begin :bv := null; end; ");
[all …]
/PHP-5.5/tests/lang/
H A DforeachLoopObjects.002.phpt9 public $c = "Original c";
64 public $c = "Overridden c";
185 ["c"]=>
210 ["c"]=>
231 ["c"]=>
260 ["c"]=>
285 ["c"]=>
306 ["c"]=>
335 ["c"]=>
352 ["c"]=>
[all …]
/PHP-5.5/tests/classes/
H A Dstatic_properties_003.phpt10 $c = new C;
13 var_dump(isset($c->x));
14 unset($c->x);
15 echo $c->x;
16 $c->x = 1;
18 $c->x =& $ref;
19 var_dump($c->x, C::$x);
22 var_dump(isset($c->y));
23 //unset($c->y); // Fatal error, tested in static_properties_003_error1.phpt
24 //echo $c->y; // Fatal error, tested in static_properties_003_error2.phpt
[all …]
H A Dmethod_call_variation_001.phpt13 $c = new C;
18 $c->$functions[0](1, 2);
19 $c->$functions[1][2][3][4](3, 4);
27 $c->functions[0] = 'foo';
28 $c->functions[1][2][3][4] = 'foo';
30 $c->functions[0](5, 6);
31 $c->functions[1][2][3][4](7, 8);
/PHP-5.5/ext/standard/
H A Dhtml.c75 #define utf8_lead(c) ((c) < 0x80 || ((c) >= 0xC2 && (c) <= 0xF4)) argument
79 #define utf8_trail(c) ((c) >= 0x80 && (c) <= 0xBF) argument
81 #define gb2312_lead(c) ((c) != 0x8E && (c) != 0x8F && (c) != 0xA0 && (c) != 0xFF) argument
82 #define gb2312_trail(c) ((c) >= 0xA1 && (c) <= 0xFE) argument
84 #define sjis_lead(c) ((c) != 0x80 && (c) != 0xA0 && (c) < 0xFD) argument
85 #define sjis_trail(c) ((c) >= 0x40 && (c) != 0x7F && (c) < 0xFD) argument
182 if (c >= 0x81 && c <= 0xFE) { in get_next_char()
206 if (c >= 0x81 && c <= 0xFE) { in get_next_char()
232 if (c >= 0xA1 && c <= 0xFE) { in get_next_char()
259 if ((c >= 0x81 && c <= 0x9F) || (c >= 0xE0 && c <= 0xFC)) { in get_next_char()
[all …]
H A Diptc.c90 PUTC(c); in php_iptc_put1()
94 return c; in php_iptc_put1()
102 int c; in php_iptc_get1() local
105 c = getc(fp); in php_iptc_get1()
110 cc = c; in php_iptc_get1()
116 return c; in php_iptc_get1()
156 int c; in php_iptc_next_marker() local
164 while (c != 0xff) { in php_iptc_next_marker()
172 if (c == EOF) in php_iptc_next_marker()
175 if (c == 0xff) in php_iptc_next_marker()
[all …]
/PHP-5.5/ext/standard/tests/strings/
H A Dvsprintf_basic5.phpt7 * Source code: ext/standard/formatted_print.c
14 $format1 = "%c";
15 $format2 = "%c %c";
16 $format3 = "%c %c %c";
H A Dvprintf_basic5.phpt7 * Source code: ext/standard/formatted_print.c
14 $format1 = "%c";
15 $format2 = "%c %c";
16 $format3 = "%c %c %c";
/PHP-5.5/Zend/tests/
H A Ddebug_print_backtrace_limit.phpt10 c();
13 function c() {
23 #0 c() called at [%sdebug_print_backtrace_limit.php:7]
24 #0 c() called at [%sdebug_print_backtrace_limit.php:7]
26 #0 c() called at [%sdebug_print_backtrace_limit.php:7]
29 #0 c() called at [%sdebug_print_backtrace_limit.php:7]
/PHP-5.5/ext/phar/tests/
H A Drefcount1.phpt19 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
22 $fp = fopen($pname . '/b/c.php', 'wb');
27 $b = fopen($pname . '/b/c.php', 'rb');
28 $a = $p['b/c.php'];
33 unlink($pname . '/b/c.php');
36 include $pname . '/b/c.php';
46 string(%d) "phar://%srefcount1.phar.php/b/c.php"
48 string(%d) "c.php"
53 Warning: unlink(): phar error: "b/c.php" in phar "%srefcount1.phar.php", has open file pointers, ca…
56 string(%d) "phar://%srefcount1.phar.php/b/c.php"
[all …]
/PHP-5.5/ext/mbstring/libmbfl/mbfl/
H A Dmbfilter.c2463 if (c == 0x0d || c == 0x0a) { /* CR or LF */ in mime_header_decoder_collector()
2482 if (c == 0x0d || c == 0x0a) { /* CR or LF */ in mime_header_decoder_collector()
2515 if (c == 0x0d || c == 0x0a) { /* CR LF */ in mime_header_decoder_collector()
2530 if (c != 0x0d && c != 0x0a && c != 0x20 && c != 0x09) { in mime_header_decoder_collector()
2549 if (c == 0x0d || c == 0x0a) { /* CR LF */ in mime_header_decoder_collector()
2697 if (c >= mapelm[0] && c <= mapelm[1]) { in collector_encode_htmlnumericentity()
2839 if ((c >= 0x30 && c <= 0x39) || in collector_decode_htmlnumericentity()
2840 (c >= 0x41 && c <= 0x46) || in collector_decode_htmlnumericentity()
2847 if (c >= 0x30 && c <= 0x39) { in collector_decode_htmlnumericentity()
2849 } else if (c >= 0x41 && c <= 0x46) { in collector_decode_htmlnumericentity()
[all …]
/PHP-5.5/ext/soap/
H A Dconfig.m420 …PHP_NEW_EXTENSION(soap, soap.c php_encoding.c php_http.c php_packet_soap.c php_schema.c php_sdl.c
/PHP-5.5/ext/standard/tests/array/
H A Dbug28974.phpt5 $a = $b = $c = array(0,1,2,3,4,5);
22 echo 'print_r(array_splice($c,2,2147483646));'."\n";
23 print_r(array_splice($c,2,2147483646));
24 echo "\$c is :";
25 print_r($c);
77 print_r(array_splice($c,2,2147483646));
85 $c is :Array
/PHP-5.5/ext/ctype/tests/
H A D002.phpt15 $c = chr($a);
17 if($function("$c$c$c")) $n2++;
18 if($function("1-$c$c$c-x")) $n3++;
/PHP-5.5/scripts/dev/
H A Dsearch_underscores.php46 foreach($classes as $c) {
47 if (strpos($c, "_") !== false) {
49 $ref = new ReflectionClass($c);
56 $extensions[$ext][$c] = array();
57 foreach(get_class_methods($c) as $method) {
61 $extensions[$ext][$c][] = $method;
67 $cnt_methods += count(get_class_methods($c));
/PHP-5.5/ext/mbstring/libmbfl/filters/
H A Dmbfilter_cp5022x.h56 int mbfl_filt_conv_jis_ms_wchar(int c, mbfl_convert_filter *filter);
57 int mbfl_filt_conv_wchar_jis_ms(int c, mbfl_convert_filter *filter);
58 int mbfl_filt_conv_wchar_cp50220(int c, mbfl_convert_filter *filter);
59 int mbfl_filt_conv_wchar_cp50220raw(int c, mbfl_convert_filter *filter);
60 int mbfl_filt_conv_wchar_cp50221(int c, mbfl_convert_filter *filter);
61 int mbfl_filt_conv_wchar_cp50222(int c, mbfl_convert_filter *filter);
H A Dmbfilter_ucs2.h45 int mbfl_filt_conv_ucs2_wchar(int c, mbfl_convert_filter *filter);
46 int mbfl_filt_conv_ucs2be_wchar(int c, mbfl_convert_filter *filter);
47 int mbfl_filt_conv_wchar_ucs2be(int c, mbfl_convert_filter *filter);
48 int mbfl_filt_conv_ucs2le_wchar(int c, mbfl_convert_filter *filter);
49 int mbfl_filt_conv_wchar_ucs2le(int c, mbfl_convert_filter *filter);

Completed in 51 milliseconds

12345678910>>...186