Home
last modified time | relevance | path

Searched refs:c (Results 401 – 425 of 4053) sorted by relevance

1...<<11121314151617181920>>...163

/PHP-7.4/Zend/tests/
H A Dlist_keyed_evaluation_order_nested.phpt9 $c = new Stringable("C");
28 // list($a => $b, $c => list($d, $e), $f => list($g => $h, $i => $j)) = $k;
34 // 5. Evaluate $c
35 // 6. Evaluate $k[$c]
36 // 7. Evaluate $k[$c][0]
37 // 8. Assign $d from $k[$c][0]
38 // 9. Evaluate $k[$c][1]
39 // 10. Assign $e from $k[$c][1]
51 (string)$c => list($store["D"], $store["E"]),
H A Dheredoc_006.phpt9 This is heredoc test #s {$a}, {$b}, {$c['c']}, and {$d->d}.
14 This is heredoc test #s {$a}, {$b}, {$c['c']}, and {$d->d}.
H A Dheredoc_007.phpt9 This is heredoc test #s $a, {$b}, {$c['c']}, and {$d->d}.
14 This is heredoc test #s $a, {$b}, {$c['c']}, and {$d->d}.
H A Dbug76860_2.phpt8 private static $c = "c";
10 var_dump($this->a, $this->b, $this->c);
16 public static $c = "c1";
29 Notice: Accessing static property B::$c as non static in %sbug76860_2.php on line 7
31 Notice: Undefined property: B::$c in %sbug76860_2.php on line 7
/PHP-7.4/ext/oci8/tests/
H A Dbind_misccoltypes.phpt43 function check_col($c, $colname, $id)
105 $s = oci_parse($c, $insert_sql);
142 $s = oci_parse($c, $select_sql);
191 check_col($c, 'number_t92', 52);
201 check_col($c, 'number_t92', 53);
211 check_col($c, 'number_t', 54);
220 check_col($c, 'number_t', 55);
230 check_col($c, 'number_t', 56);
248 check_col($c, 'char_t10', 59);
257 check_col($c, 'date_t', 60);
[all …]
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.phpt34 oci8_test_sql_execute($c, $stmtarray);
38 if (!($s = oci_parse($c, $insert_sql))) {
53 $cur1 = oci_new_cursor($c);
55 $s = oci_parse($c,$sqlstmt);
61 $initial_rt = print_roundtrips($c);
67 $cnt = (print_roundtrips($c) - $initial_rt);
70 function print_roundtrips($c) {
71 $sql_stmt = "select value from v\$mystat a,v\$statname c where
72 a.statistic#=c.statistic# and c.name='SQL*Net roundtrips to/from client'";
73 $s = oci_parse($c,$sql_stmt);
[all …]
H A Dimp_res_5.phpt2 Oracle Database 12c Implicit Result Sets: oci_fetch_all
8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
10 die("skip expected output only valid when using Oracle Database 12c or greater");
14 die("skip works only with Oracle 12c or greater version of Oracle client libraries");
33 oci8_test_sql_execute($c, $stmtarray);
38 $s = oci_parse($c, "begin imp_res_5_proc(); end;");
44 $s = oci_parse($c, "begin imp_res_5_proc(); end;");
59 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 Dimp_res_call_error.phpt2 Oracle Database 12c Implicit Result Sets: using SQL 'CALL'
8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
10 die("skip expected output only valid when using Oracle Database 12c or greater");
14 die("skip works only with Oracle 12c or greater version of Oracle client libraries");
34 oci8_test_sql_execute($c, $stmtarray);
40 $s = oci_parse($c, "call imp_res_call_err_proc()");
49 oci8_test_sql_execute($c, $stmtarray);
H A Dimp_res_cancel.phpt2 Oracle Database 12c Implicit Result Sets: oci_cancel
8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
10 die("skip expected output only valid when using Oracle Database 12c or greater");
14 die("skip works only with Oracle 12c or greater version of Oracle client libraries");
34 oci8_test_sql_execute($c, $stmtarray);
39 $s = oci_parse($c, "begin imp_res_cancel_proc(); end;");
55 oci8_test_sql_execute($c, $stmtarray);
/PHP-7.4/Zend/tests/traits/
H A Dlanguage013.phpt9 static $c = 0;
10 $c = $c + 1;
11 echo "$c\n";
/PHP-7.4/ext/standard/
H A DMakefile.frag.w321 ext\standard\var_unserializer.c: ext\standard\var_unserializer.re
3 …$(RE2C) $(RE2C_FLAGS) --no-generation-date -b -o ext/standard/var_unserializer.c ext/standard/var_…
5 ext\standard\url_scanner_ex.c: ext\standard\url_scanner_ex.re
7 …$(RE2C) $(RE2C_FLAGS) --no-generation-date -b -o ext/standard/url_scanner_ex.c ext/standard/url_sc…
/PHP-7.4/ext/json/
H A Dconfig.m411 json.c \
12 json_encoder.c \
13 json_parser.tab.c \
14 json_scanner.c,
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_dfa_match.c695 uint32_t c, d; in internal_dfa_match() local
730 c = *ptr; in internal_dfa_match()
1239 c == CHAR_GRAVE_ACCENT || (c >= 0xa0 && c <= 0xd7ff) || in internal_dfa_match()
1497 c == CHAR_GRAVE_ACCENT || (c >= 0xa0 && c <= 0xd7ff) || in internal_dfa_match()
1738 c == CHAR_GRAVE_ACCENT || (c >= 0xa0 && c <= 0xd7ff) || in internal_dfa_match()
2004 c == CHAR_GRAVE_ACCENT || (c >= 0xa0 && c <= 0xd7ff) || in internal_dfa_match()
2210 if (TABLE_GET(c, lcc, c) == TABLE_GET(d, lcc, d)) in internal_dfa_match()
2348 if (c != d && c != otherd) in internal_dfa_match()
3642 if (c > 255) c = 255; in pcre2_dfa_match()
3644 ok = (start_bits[c/8] & (1u << (c&7))) != 0; in pcre2_dfa_match()
[all …]
/PHP-7.4/ext/intl/tests/
H A Dcalendar_get_Least_Greatest_Minimum_Maximum_error.phpt13 $c = new IntlGregorianCalendar(NULL, 'pt_PT');
15 var_dump($c->getLeastMaximum());
16 var_dump($c->getMaximum());
17 var_dump($c->getGreatestMinimum());
18 var_dump($c->getMinimum());
20 var_dump($c->getLeastMaximum(-1));
21 var_dump($c->getMaximum(-1));
22 var_dump($c->getGreatestMinimum(-1));
23 var_dump($c->getMinimum(-1));
26 var_dump(intlcal_get_maximum($c, -1));
[all …]
H A Dcalendar_setSkipped_RepeatedWallTimeOption_error.phpt13 $c = new IntlGregorianCalendar(NULL, 'pt_PT');
15 var_dump($c->setSkippedWallTimeOption());
16 var_dump($c->setRepeatedWallTimeOption());
18 var_dump($c->setSkippedWallTimeOption(1, 2));
19 var_dump($c->setRepeatedWallTimeOption(1, 2));
21 var_dump($c->setSkippedWallTimeOption(array()));
22 var_dump($c->setRepeatedWallTimeOption(array()));
24 var_dump($c->setSkippedWallTimeOption(3));
25 var_dump($c->setRepeatedWallTimeOption(2));
27 var_dump(intlcal_set_skipped_wall_time_option($c));
[all …]
/PHP-7.4/sapi/phpdbg/
H A DMakefile.frag11 %.c: %.y
12 %.c: %.l
16 $(srcdir)/phpdbg_lexer.c: $(srcdir)/phpdbg_lexer.l
17 …@(cd $(top_srcdir); $(RE2C) $(RE2C_FLAGS) --no-generation-date -cbdFo sapi/phpdbg/phpdbg_lexer.c s…
19 $(srcdir)/phpdbg_parser.h: $(srcdir)/phpdbg_parser.c
20 $(srcdir)/phpdbg_parser.c: $(srcdir)/phpdbg_parser.y
/PHP-7.4/ext/phar/tests/
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-7.4/win32/
H A Dglob.c129 #define CHAR(c) ((Char)((c)&M_ASCII)) argument
130 #define META(c) ((Char)((c)|M_QUOTE)) argument
137 #define ismeta(c) (((c)&M_QUOTE) != 0) argument
167 int c; local
198 c = QUOTE;
448 switch (c) {
450 c = *qpatnext;
451 if (c == NOT)
461 if (c == NOT)
769 Char c, k; local
[all …]
/PHP-7.4/ext/imap/
H A Dconfig.m41 AC_DEFUN([IMAP_INC_CHK],[if test -r "$i$1/c-client.h"; then
115 el[]IMAP_INC_CHK(/include/c-client)
119 el[]IMAP_INC_CHK(/c-client)
123 dnl Check for c-client version 2004
134 #include <c-client.h>
153 #include <c-client.h>
171 dnl Check for c-client version 2001
202 … if test ! -r "$IMAP_DIR/c-client/libc-client.a" && test -r "$IMAP_DIR/c-client/c-client.a" ; then
203 ln -s "$IMAP_DIR/c-client/c-client.a" "$IMAP_DIR/c-client/libc-client.a" >/dev/null 2>&1
208 for lib in c-client4 c-client imap; do
[all …]
/PHP-7.4/ext/standard/tests/array/
H A Dcompact_basic.phpt7 * Source code: ext/standard/array.c
19 $c=true;
25 var_dump (compact(array("a", "b", "c", "d", "e", "f")));
27 var_dump (compact("a", "b", "c", "d", "e", "f"));
28 var_dump (compact(array("keyval"=>"a", "b"=>"b", "c"=>1)));
44 ["c"]=>
61 ["c"]=>
/PHP-7.4/ext/spl/tests/
H A Drecursive_tree_iterator_006.phpt18 "c",
22 "c",
71 [1] => \-c
81 [ \-1] => c
91 [1] => c
101 [ \-1] => \-c
111 [ \-1] => \-c
/PHP-7.4/ext/standard/tests/strings/
H A Dpack_Z.phpt22 string(5) "foo%c%c"
23 string(4) "foo%c"
24 string(4) "foo%c"
25 string(4) "foo%c"
/PHP-7.4/ext/reflection/tests/
H A D005.phpt8 function strip_doc_comment($c)
10 if (!strlen($c) || $c === false) return $c;
11 return trim(substr($c, 3, -2));

Completed in 80 milliseconds

1...<<11121314151617181920>>...163