Home
last modified time | relevance | path

Searched refs:c (Results 201 – 225 of 4537) sorted by relevance

12345678910>>...182

/PHP-5.3/ext/ereg/regex/
H A Ddebug.c24 register int c; local
51 for (c = CHAR_MIN; c <= CHAR_MAX; c++)
52 if (g->categories[c] == i)
58 for (c = CHAR_MIN; c <= CHAR_MAX; c++)
59 if (g->categories[c] == i)
68 for (c = CHAR_MIN; c <= CHAR_MAX+1; c++) /* +1 does flush */
69 if (c <= CHAR_MAX && g->categories[c] == i) {
71 fprintf(d, "%s", regchar(c));
72 last = c;
76 if (last != c-1)
[all …]
/PHP-5.3/Zend/tests/
H A Dbug33171.phpt7 private $c = "A's c";
12 private $c = "B's c";
27 c => B's c
H A Dbug30394.phpt20 $c = new Container();
21 $c->a = 1;
22 $c->a += 1;
23 print $c->a; // --> 2
26 $c->a += max( 0, 1 );
27 print $c->a; // --> 4 (!)
H A Dbug53958.phpt26 $c = 1;
27 $fn1 = function() use (&$c) {echo "$c\n"; $c++;};
28 $fn2 = function() use ($c) {echo "$c\n"; $c++;};
29 $c = 5;
/PHP-5.3/ext/hash/
H A Dhash_tiger.c40 cc = c;
43 c ^= x; \
62 round(b,c,a,x7,mul)
85 c += cc;
89 pass(a,b,c,5) \
91 pass(c,a,b,7) \
93 pass(b,c,a,9) \
96 pass(a,b,c,9) \
97 tmpa=a; a=c; c=b; b=tmpa; \
127 c = state[2]; \
[all …]
/PHP-5.3/tests/run-test/
H A Dtest007.phpt37 same(".",dirname("c:\\foo"));
38 same(".",dirname("c:\\"));
39 same(".",dirname("c:"));
42 same("c:\\",dirname("c:\\foo"));
43 same("c:\\",dirname("c:\\"));
44 same("c:",dirname("c:"));
/PHP-5.3/ext/standard/
H A Diptc.c81 PUTC(c); in php_iptc_put1()
85 return c; in php_iptc_put1()
93 int c; in php_iptc_get1() local
96 c = getc(fp); in php_iptc_get1()
101 cc = c; in php_iptc_get1()
107 return c; in php_iptc_get1()
147 int c; in php_iptc_next_marker() local
155 while (c != 0xff) { in php_iptc_next_marker()
163 if (c == EOF) in php_iptc_next_marker()
166 if (c == 0xff) in php_iptc_next_marker()
[all …]
H A Dphp_smart_str.h32 if ((x)->c) { \
33 (x)->c[(x)->len] = '\0'; \
48 #define SMART_STR_REALLOC(a,b,c) perealloc((a),(b),(c)) argument
52 (d)->c = SMART_STR_REALLOC((d)->c, (d)->a + 1, (what))
55 if (!(d)->c) { \
81 #define smart_str_appendc(dest, c) \ argument
82 smart_str_appendc_ex((dest), (c), 0)
105 if (__s->c) { \
106 pefree(__s->c, what); \
107 __s->c = NULL; \
[all …]
/PHP-5.3/ext/standard/tests/math/
H A Dfloorceil.phpt5 $a = ceil (-0); $b = ceil (-1); $c = ceil (-1.5);
7 var_dump ($a, $b, $c, $d, $e);
9 $a = ceil (0); $b = ceil (0.5); $c = ceil (1);
11 var_dump ($a, $b, $c, $d, $e, $f);
13 $a = floor (-0); $b = floor (-0.5); $c = floor (-1);
15 var_dump ($a, $b, $c, $d, $e, $f);
17 $a = floor (0); $b = floor (0.5); $c = floor (1);
19 var_dump ($a, $b, $c, $d, $e, $f);
/PHP-5.3/ext/sqlite/libsqlite/src/
H A Dprintf.c234 if( c!='%' ){ in vxprintf()
238 while( (c=(*++fmt))!='%' && c!=0 ) amt++; in vxprintf()
261 }while( c==0 && (c=(*++fmt))!=0 ); in vxprintf()
264 if( c=='*' ){ in vxprintf()
270 c = *++fmt; in vxprintf()
272 while( c>='0' && c<='9' ){ in vxprintf()
281 if( c=='.' ){ in vxprintf()
283 c = *++fmt; in vxprintf()
289 while( c>='0' && c<='9' ){ in vxprintf()
300 if( c=='l' ){ in vxprintf()
[all …]
/PHP-5.3/ext/mbstring/tests/
H A Dmb_ereg3.phpt11 $a = -1; $b = -1; $c = -1;
12 mbereg($a, $b, $c);
13 var_dump($a, $b, $c);
15 mberegi($a, $b, $c);
16 var_dump($a, $b, $c);
18 mbereg_search_init($a, $b, $c);
19 var_dump($a, $b, $c);
H A Dmb_ereg4.phpt11 $a = -1; $b = -1; $c = -1;
12 mbereg($a, $b, $c);
13 var_dump($a, $b, $c);
15 mberegi($a, $b, $c);
16 var_dump($a, $b, $c);
18 mbereg_search_init($a, $b, $c);
19 var_dump($a, $b, $c);
/PHP-5.3/ext/oci8/tests/
H A Dlob_018.phpt20 oci8_test_sql_execute($c, $stmtarray);
25 $statement = oci_parse($c, $init);
31 oci_commit($c);
34 $statement = oci_parse($c, $init);
40 oci_commit($c);
44 $statement = oci_parse ($c, $query);
55 $statement = oci_parse ($c, $query);
66 $statement = oci_parse($c, $init);
72 oci_commit($c);
75 $statement = oci_parse ($c, $query);
[all …]
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 …]
/PHP-5.3/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.3/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.3/ext/filter/tests/
H A D033.phpt17 validate_url http://a.b.c
20 string PHP 1 foo@bar.com http://a.b.c 1.2.3.4 123 123abc() O…
21 stripped PHP 1 foo@bar.com http://a.b.c 1.2.3.4 123 123abc() O…
22 encoded PHP 1 foo%40bar.com http%3A%2F%2Fa.b.c 1.2.3.4 123 123abc%3C%3E%28%29 O…
23 special_chars PHP 1 foo@bar.com http://a.b.c 1.2.3.4 123 123abc&#60;&#62;() O…
24 full_special_chars PHP 1 foo@bar.com http://a.b.c 1.2.3.4 123 123abc&lt;&gt;() O…
25 unsafe_raw PHP 1 foo@bar.com http://a.b.c 1.2.3.4 123 123abc<>() O…
26 email PHP 1 foo@bar.com httpa.b.c 1.2.3.4 123 123abc O…
27 url PHP 1 foo@bar.com http://a.b.c 1.2.3.4 123 123abc<>() O…
30 magic_quotes PHP 1 foo@bar.com http://a.b.c 1.2.3.4 123 123abc<>() O…
/PHP-5.3/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";
/PHP-5.3/Zend/
H A DZendTS.dsp135 SOURCE=.\zend.c
139 SOURCE=.\zend_alloc.c
143 SOURCE=.\zend_API.c
188 SOURCE=.\zend_hash.c
196 SOURCE=.\zend_indent.c
200 SOURCE=.\zend_ini.c
228 SOURCE=.\zend_list.c
232 SOURCE=.\zend_llist.c
248 SOURCE=.\zend_opcode.c
260 SOURCE=.\zend_qsort.c
[all …]
H A DZend.dsp110 SOURCE=.\zend.c
114 SOURCE=.\zend_alloc.c
118 SOURCE=.\zend_API.c
158 SOURCE=.\zend_float.c
162 SOURCE=.\zend_hash.c
170 SOURCE=.\zend_indent.c
174 SOURCE=.\zend_ini.c
198 SOURCE=.\zend_list.c
202 SOURCE=.\zend_llist.c
230 SOURCE=.\zend_qsort.c
[all …]
/PHP-5.3/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 …]

Completed in 74 milliseconds

12345678910>>...182