Home
last modified time | relevance | path

Searched refs:c (Results 351 – 375 of 4665) sorted by relevance

1...<<11121314151617181920>>...187

/PHP-5.3/ext/standard/tests/strings/
H A Dprintf_basic5.phpt7 * Source code: ext/standard/formatted_print.c
15 $format1 = "%c";
16 $format2 = "%c %c";
17 $format3 = "%c %c %c";
/PHP-5.3/ext/ctype/tests/
H A Dctype_space_variation4.phpt7 /* Prototype : bool ctype_space(mixed $c)
9 * Source code: ext/ctype/ctype.c
13 * Pass octal and hexadecimal values as $c to ctype_space() to test behaviour
25 foreach($octal_values as $c) {
27 var_dump(ctype_space($c));
33 foreach($hex_values as $c) {
35 var_dump(ctype_space($c));
/PHP-5.3/ext/sqlite/libsqlite/src/
H A Dutil.c619 int i, c; in sqliteFitsIn32Bits() local
621 for(i=0; (c=zNum[i])>='0' && c<='9'; i++){} in sqliteFitsIn32Bits()
884 int c; in sqlite_utf8_to_int() local
907 c = (c<<6) | (0x3f&*(z++)); in sqlite_utf8_to_int()
909 return c; in sqlite_utf8_to_int()
949 switch( c ){ in sqliteGlobCompare()
951 while( (c=zPattern[1]) == '*' || c == '?' ){ in sqliteGlobCompare()
995 if( c>=prior_c && c<=c2 ) seen = 1; in sqliteGlobCompare()
1036 switch( c ){ in sqliteLikeCompare()
1038 while( (c=zPattern[1]) == '%' || c == '_' ){ in sqliteLikeCompare()
[all …]
/PHP-5.3/win32/
H A Dglob.c130 #define CHAR(c) ((Char)((c)&M_ASCII)) argument
131 #define META(c) ((Char)((c)|M_QUOTE)) argument
138 #define ismeta(c) (((c)&M_QUOTE) != 0) argument
168 int c; local
193 *bufnext++ = c;
199 c = QUOTE;
447 switch (c) {
450 if (c == NOT)
460 if (c == NOT)
768 Char c, k; local
[all …]
/PHP-5.3/ext/oci8/tests/
H A Dlob_030.phpt14 function insert_verify($c, $tn, $id, $length)
24 $statement = oci_parse($c,$ora_sql);
25 $clob = oci_new_descriptor($c,OCI_D_LOB);
34 $s = oci_parse($c, $select_sql);
43 insert_verify($c, $schema.$table_name, 1, 1050000);
46 insert_verify($c, $schema.$table_name, 2, 1050001);
49 insert_verify($c, $schema.$table_name, 3, 1048576);
52 insert_verify($c, $schema.$table_name, 4, 1049028);
55 insert_verify($c, $schema.$table_name, 5, 1049028-1);
58 insert_verify($c, $schema.$table_name, 6, 1049028+1);
H A Dlob_029.phpt30 $s = oci_parse($c, "drop table FileTest");
33 $s = oci_parse($c, "drop directory TestDir");
36 $s = oci_parse($c, "create directory TestDir as '$realdirname'");
43 $s = oci_parse($c, "create table FileTest (FileNum number, FileDesc varchar2(30), Image bfile)");
46 $s = oci_parse($c, "insert into FileTest (FileNum, FileDesc, Image) values (1, 'Description 1', bfi…
49 $s = oci_parse($c, "insert into FileTest (FileNum, FileDesc, Image) values (2, 'Description 2', bfi…
59 $s = oci_parse($c, "select count(*) numrows from FileTest");
65 $s = oci_parse($c, "select * from FileTest order by FileNum");
71 $d = oci_new_descriptor($c, OCI_D_FILE);
84 $s = oci_parse($c, "drop table FileTest");
[all …]
H A Drefcur_prefetch_3.phpt26 oci8_test_sql_execute($c, $stmtarray);
30 if (!($s = oci_parse($c, $insert_sql))) {
45 $cur1 = oci_new_cursor($c);
47 $s = oci_parse($c,$sqlstmt);
53 $initial_rt = print_roundtrips($c);
59 $cnt = (print_roundtrips($c) - $initial_rt);
62 function print_roundtrips($c) {
63 $sql_stmt = "select value from v\$mystat a,v\$statname c where
64 a.statistic#=c.statistic# and c.name='SQL*Net roundtrips to/from client'";
65 $s = oci_parse($c,$sql_stmt);
[all …]
H A Derror_bind.phpt11 $statement = oci_parse($c, $drop);
15 $statement = oci_parse($c, $create);
22 $stmt = oci_parse($c, "insert into bind_test values (:name)");
27 $name=$c;
31 oci_bind_by_name($stmt, ":name", $c);
33 var_dump($c);
37 $stmt = oci_parse($c, "update bind_test set name='xyz' returning rowid into :r_id");
38 oci_bind_by_name($stmt, ":r_id", $c);
44 $statement = oci_parse($c, $drop);
H A Dlob_001.phpt20 oci8_test_sql_execute($c, $stmtarray);
24 $statement = oci_parse($c, "insert into lob_001_tab (id, b1) values (1, empty_blob()) returning b1 …
25 $blob = oci_new_descriptor($c,OCI_D_LOB);
38 oci_commit($c);
42 $s = oci_parse($c, "select b1 from lob_001_tab where id = 1");
48 $statement = oci_parse($c, "insert into lob_001_tab (id, b1) values (2, empty_blob()) returning b1 …
49 $blob = oci_new_descriptor($c,OCI_D_LOB);
54 $s = oci_parse($c, "select b1 from lob_001_tab where id = 2");
64 oci8_test_sql_execute($c, $stmtarray);
H A Dbind_sqltafc.phpt18 oci8_test_sql_execute($c, $stmtarray);
22 function q($c, $id)
24 $s = oci_parse($c, "select * from bind_sqltafc_tab where id = $id");
32 q($c, 0);
36 $s = oci_parse($c, "INSERT INTO bind_sqltafc_tab (id, char_t, char_t10, varchar2_t10, number_t) VAL…
47 q($c, 1);
51 $s = oci_parse($c, "INSERT INTO bind_sqltafc_tab (id, char_t, char_t10, varchar2_t10, number_t) VAL…
62 q($c, 5);
77 q($c, 6);
85 oci8_test_sql_execute($c, $stmtarray);
[all …]
H A Dbug26133.phpt17 oci8_test_sql_execute($c, $stmtarray);
23 $statement = OCIParse($c,$ora_sql);
24 $rowid = OCINewDescriptor($c,OCI_D_ROWID);
27 OCICommit($c);
38 oci8_test_sql_execute($c, $stmtarray);
/PHP-5.3/ext/mysqlnd/
H A Dmysqlnd_priv.h138 #define SET_CLIENT_ERROR(error_info, a, b, c) \ argument
142 strlcpy((error_info).error, (c), sizeof((error_info).error)); \
148 #define SET_STMT_ERROR(stmt, a, b, c) SET_CLIENT_ERROR((stmt)->error_info, a, b, c) argument
150 #define CONN_GET_STATE(c) (c)->m->get_state((c) TSRMLS_CC) argument
151 #define CONN_SET_STATE(c, s) (c)->m->set_state((c), (s) TSRMLS_CC) argument
/PHP-5.3/ext/ereg/regex/
H A Dregcomp.c47 #define SEE(c) (MORE() && PEEK() == (c)) argument
49 #define EAT(c) ((SEE(c)) ? (NEXT(), 1) : 0) argument
57 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e)) argument
205 while (MORE() && (c = PEEK()) != '|' && c != stop)
326 if (!( c == '*' || c == '+' || c == '?' ||
376 if (!( c == '*' || c == '+' || c == '?' ||
683 REQUIRE(c != '-' && c != ']', REG_ECTYPE);
692 REQUIRE(c != '-' && c != ']', REG_ECOLLATE);
1272 int c;
1325 for (c = 0; c <= UCHAR_MAX; c++)
[all …]
/PHP-5.3/tests/classes/
H A Dinheritance_006.phpt6 private $c;
10 private $c;
20 [%u|b%"c":%u|b%"B":private]=>
22 [%u|b%"c":%u|b%"A":private]=>
/PHP-5.3/ext/phar/tests/tar/
H A Ddelete_in_phar_confirm.phpt17 $phar['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
23 include $alias . '/b/c.php';
25 unlink($alias . '/b/c.php');
34 include 'phar://' . dirname(__FILE__) . '/' . basename(__FILE__, '.php') . '.phar.tar/b/c.php';
43 This is b/c
48 Warning: include(%sdelete_in_phar_confirm.phar.tar/b/c.php): failed to open stream: phar error: "b/
50 Warning: include(): Failed opening 'phar://%sdelete_in_phar_confirm.phar.tar/b/c.php' for inclusion…
H A Drefcount1_5_2.phpt24 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
31 $fp = fopen($alias . '/b/c.php', 'wb');
37 $b = fopen($alias . '/b/c.php', 'rb');
38 $a = $phar['b/c.php'];
43 unlink($alias . '/b/c.php');
46 include $alias . '/b/c.php';
59 Warning: unlink(): phar error: "b/c.php" in phar "%sefcount1_5_2.phar.tar", has open file pointers,…
/PHP-5.3/ext/phar/tests/zip/
H A Ddelete_in_phar_confirm.phpt17 $phar['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
23 include $alias . '/b/c.php';
26 unlink($alias . '/b/c.php');
35 include 'phar://' . dirname(__FILE__) . '/' . basename(__FILE__, '.php') . '.phar.zip/b/c.php';
44 This is b/c
49 Warning: include(%sdelete_in_phar_confirm.phar.zip/b/c.php): failed to open stream: phar error: "b/
51 Warning: include(): Failed opening 'phar://%sdelete_in_phar_confirm.phar.zip/b/c.php' for inclusion…
H A Drefcount1_5_2.phpt24 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
31 $fp = fopen($alias . '/b/c.php', 'wb');
37 $b = fopen($alias . '/b/c.php', 'rb');
38 $a = $phar['b/c.php'];
43 unlink($alias . '/b/c.php');
46 include $alias . '/b/c.php';
59 Warning: unlink(): phar error: "b/c.php" in phar "%sefcount1_5_2.phar.zip", has open file pointers,…
/PHP-5.3/ext/standard/
H A DMakefile.frag2 $(srcdir)/var_unserializer.c: $(srcdir)/var_unserializer.re
3 @(cd $(top_srcdir); $(RE2C) -b -o ext/standard/var_unserializer.c ext/standard/var_unserializer.re)
5 $(srcdir)/url_scanner_ex.c: $(srcdir)/url_scanner_ex.re
6 @(cd $(top_srcdir); $(RE2C) -b -o ext/standard/url_scanner_ex.c ext/standard/url_scanner_ex.re)
/PHP-5.3/ext/mbstring/libmbfl/tests/
H A Dstrwidth.c44 const int c = fgetc(stdin); in main() local
46 if (c == EOF) { in main()
49 } else if (c == 10) { in main()
55 } else if (c == 13) { in main()
70 dev.buffer[dev.pos++] = (unsigned char)c; in main()
/PHP-5.3/tests/basic/
H A D003.phpt6 b=Hello+Again+World&c=Hi+Mom
10 echo "post-a=({$_POST['a']}) get-b=({$_GET['b']}) get-c=({$_GET['c']})"?>
12 post-a=(Hello World) get-b=(Hello Again World) get-c=(Hi Mom)
/PHP-5.3/ext/phar/tests/
H A Drefcount1_5_2.phpt24 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
31 $fp = fopen($alias . '/b/c.php', 'wb');
37 $b = fopen($alias . '/b/c.php', 'rb');
38 $a = $phar['b/c.php'];
43 unlink($alias . '/b/c.php');
46 include $alias . '/b/c.php';
59 Warning: unlink(): phar error: "b/c.php" in phar "%sefcount1_5_2.phar", has open file pointers, can…
H A Dphar_oo_compressallgz.phpt18 $files['c'] = 'c';
28 var_dump(file_get_contents($pname . '/c'));
29 var_dump($phar['c']->isCompressed());
39 var_dump(file_get_contents($pname . '/c'));
40 var_dump($phar['c']->isCompressed(Phar::GZ));
59 string(1) "c"
67 string(1) "c"
/PHP-5.3/Zend/tests/
H A Dbug48533.phpt13 protected function c() {
27 $x->c();
30 $x::c();
36 %unicode|string%(9) "__call::c"
41 %unicode|string%(15) "__callStatic::c"
/PHP-5.3/ext/mysqli/
H A Dconfig.m431 mysqli_extra_sources="mysqli_embedded.c"
78 mysqli_sources="mysqli.c mysqli_api.c mysqli_prop.c mysqli_nonapi.c \
79 mysqli_fe.c mysqli_report.c mysqli_driver.c mysqli_warning.c \
80 mysqli_exception.c $mysqli_extra_sources"

Completed in 45 milliseconds

1...<<11121314151617181920>>...187