Home
last modified time | relevance | path

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

12345678910>>...163

/PHP-7.4/ext/oci8/tests/
H A Dbind_number.phpt28 oci8_test_sql_execute($c, $stmtarray);
30 function check_col($c, $colname, $id)
48 check_col($c, "number_t6", 1);
57 check_col($c, 'float_t', 66);
66 check_col($c, 'binary_float_t', 67);
75 check_col($c, 'binary_double_t', 69);
84 check_col($c, 'decimal_t', 71);
93 check_col($c, 'decimal_t', 72);
102 check_col($c, 'binary_double_t', 73);
111 check_col($c, 'integer_t', 75);
[all …]
H A Dbind_sqltnum.phpt28 oci8_test_sql_execute($c, $stmtarray);
30 function check_col($c, $colname, $id)
91 check_col($c, 'number_t', 42);
100 check_col($c, 'number_t', 43);
109 check_col($c, 'number_t', 44);
118 check_col($c, 'number_t', 45);
127 check_col($c, 'number_t', 46);
136 check_col($c, 'number_t', 47);
145 check_col($c, 'number_t92', 48);
154 check_col($c, 'number_t92', 49);
[all …]
H A Ddb_op_2.phpt13 die("skip expected output only valid when using Oracle Database 12c or greater");
17 die("skip works only with Oracle 12c or greater version of Oracle client libraries");
29 function dq($c, $q)
31 $s = oci_parse($c, $q);
37 oci_set_db_operation($c, "db_op_2_a");
38 dq($c, 'select /*+ MONITOR */ * from dual');
40 oci_set_db_operation($c, "db_op_2_b");
41 dq($c, 'select /*+ MONITOR */ * from dual');
43 dq($c, 'select dbop_name from v$sql_monitor where dbop_name like \'db_op_2%\' order by dbop_exec_id…
46 oci_set_db_operation($c, "");
[all …]
H A Dbug43497.phpt46 function readxmltab_ex($c)
75 function readxmltab_im($c)
90 @dropxmltab($c);
102 function fillxmltab($c)
134 createxmltab($c);
135 fillxmltab($c);
139 $sid = sessionid($c);
145 readxmltab_ex($c);
152 readxmltab_im($c);
166 dropxmltab($c);
[all …]
H A Dbind_sqltnum_11g.phpt28 oci8_test_sql_execute($c, $stmtarray);
30 function check_col($c, $colname, $id)
91 check_col($c, 'number_t', 42);
100 check_col($c, 'number_t', 43);
109 check_col($c, 'number_t', 44);
118 check_col($c, 'number_t', 45);
127 check_col($c, 'number_t', 46);
136 check_col($c, 'number_t', 47);
145 check_col($c, 'number_t92', 48);
154 check_col($c, 'number_t92', 49);
[all …]
/PHP-7.4/tests/lang/
H A DforeachLoopObjects.001.phpt9 public $c = "Original c";
41 string(10) "Original c"
46 string(1) "c"
47 string(10) "Original c"
50 string(1) "c"
51 string(10) "Original c"
57 string(10) "Original c"
62 string(1) "c"
63 string(10) "Original c"
66 string(1) "c"
[all …]
/PHP-7.4/ext/mbstring/libmbfl/filters/
H A Dmbfilter_sjis_mobile.h55 int mbfl_filt_conv_sjis_mobile_wchar(int c, mbfl_convert_filter *filter);
56 int mbfl_filt_conv_wchar_sjis_mobile(int c, mbfl_convert_filter *filter);
63 int mbfilter_unicode2sjis_emoji_docomo(int c, int *s1, mbfl_convert_filter *filter);
64 int mbfilter_unicode2sjis_emoji_kddi(int c, int *s1, mbfl_convert_filter *filter);
65 int mbfilter_unicode2sjis_emoji_sb(int c, int *s1, mbfl_convert_filter *filter);
67 int mbfilter_conv_map_tbl(int c, int *w, const unsigned short map[][3], int n);
68 int mbfilter_conv_r_map_tbl(int c, int *w, const unsigned short map[][3], int n);
H A Dmbfilter_htmlent.c103 htmlentitifieds[c] != 1) { in mbfl_filt_conv_html_enc()
108 if (c == e->code) { in mbfl_filt_conv_html_enc()
123 uc = (unsigned int)c; in mbfl_filt_conv_html_enc()
138 return c; in mbfl_filt_conv_html_enc()
182 if (c == '&' ) { in mbfl_filt_conv_html_dec()
189 if (c == ';') { in mbfl_filt_conv_html_dec()
264 buffer[filter->status++] = c; in mbfl_filt_conv_html_dec()
266 …if (!strchr(html_entity_chars, c) || filter->status+1==html_enc_buffer_size || (c=='#' && filter->… in mbfl_filt_conv_html_dec()
269 if (c=='&') in mbfl_filt_conv_html_dec()
274 if (c=='&') in mbfl_filt_conv_html_dec()
[all …]
/PHP-7.4/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;
H A Dzend_signed_multiply-64bit-2.phpt7 for($c = -16; $c < 0; $c++) {
8 var_dump($c, intdiv(PHP_INT_MIN, 10), intdiv(PHP_INT_MIN, 10) * $c);
11 for($c = 0; $c <= 16; $c++) {
12 var_dump($c, intdiv(PHP_INT_MAX, 10), intdiv(PHP_INT_MAX, 10) * $c);
/PHP-7.4/ext/ctype/
H A Dctype.c146 zval *c; \
148 Z_PARAM_ZVAL(c) \
150 if (Z_TYPE_P(c) == IS_LONG) { \
151 if (Z_LVAL_P(c) <= 255 && Z_LVAL_P(c) >= 0) { \
152 RETURN_BOOL(iswhat((int)Z_LVAL_P(c))); \
153 } else if (Z_LVAL_P(c) >= -128 && Z_LVAL_P(c) < 0) { \
154 RETURN_BOOL(iswhat((int)Z_LVAL_P(c) + 256)); \
155 } else if (Z_LVAL_P(c) >= 0) { \
160 } else if (Z_TYPE_P(c) == IS_STRING) { \
161 char *p = Z_STRVAL_P(c), *e = Z_STRVAL_P(c) + Z_STRLEN_P(c); \
/PHP-7.4/ext/tokenizer/
H A DMakefile.frag1 $(top_srcdir)/Zend/zend_language_parser.c:
2 $(top_srcdir)/Zend/zend_language_scanner.c:
3 $(top_srcdir)/ext/tokenizer/tokenizer_data.c: $(top_srcdir)/Zend/zend_language_parser.h
4 …/tokenizer.lo: $(top_srcdir)/Zend/zend_language_parser.c $(top_srcdir)/Zend/zend_language_scanner.c
/PHP-7.4/ext/intl/tests/
H A Duconverter_oop_algo.phpt7 $c = new UConverter('utf-8', 'latin1');
8 var_dump(UConverter::LATIN_1 === $c->getSourceType());
9 var_dump(UConverter::UTF8 === $c->getDestinationType());
11 $c = new UConverter('koi8-r', 'utf-32be');
12 var_dump(UConverter::UTF32_BigEndian === $c->getSourceType());
13 var_dump(UConverter::SBCS === $c->getDestinationType());
/PHP-7.4/ext/standard/
H A Dmetaphone.c86 #define ENCODE(c) (isalpha(c) ? _codes[((toupper(c)) - 'A')] : 0) argument
88 #define isvowel(c) (ENCODE(c) & 1) /* AEIOU */ argument
91 #define NOCHANGE(c) (ENCODE(c) & 2) /* FJMNR */ argument
94 #define AFFECTH(c) (ENCODE(c) & 4) /* CGPST */ argument
97 #define MAKESOFT(c) (ENCODE(c) & 8) /* EIY */ argument
100 #define NOGHTOF(c) (ENCODE(c) & 16) /* BDH */ argument
143 #define Phonize(c) { \ argument
148 ZSTR_VAL(*phoned_word)[p_idx++] = c; \
164 #define Isbreak(c) (!isalpha(c)) argument
/PHP-7.4/ext/standard/tests/file/
H A Dpathinfo_basic2.phpt19 'c:\..\dir1',
22 'c:\test\adir\afile..txt',
24 'c:\test\adir\afile.',
27 'c:afile.txt',
55 string(10) "c:\..\dir1"
57 string(4) "c:\."
62 string(10) "c:\..\dir1"
66 string(4) "c:\."
173 string(11) "c:afile.txt"
175 string(7) "c:afile"
[all …]
/PHP-7.4/ext/mbstring/tests/
H A Dmb_ereg2.phpt11 $a = -1; $b = -1; $c = -1;
12 mb_ereg($a, $b, $c);
13 var_dump($a, $b, $c);
15 mb_eregi($a, $b, $c);
16 var_dump($a, $b, $c);
18 mb_ereg_search_init($a, $b, $c);
19 var_dump($a, $b, $c);
/PHP-7.4/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-7.4/sapi/cli/
H A Dconfig.w328 …SAPI('cli', 'php_cli.c php_http_parser.c php_cli_server.c php_cli_process_title.c ps_title.c', 'ph…
23 …SAPI('cli_win32', 'cli_win32.c php_cli_process_title.c ps_title.c', 'php-win.exe', '/DZEND_ENABLE_…
/PHP-7.4/ext/standard/tests/array/
H A Dcompact_variation2.phpt7 * Source code: ext/standard/array.c
17 $c = 'f.c';
18 var_dump(compact('a','b','c'));
19 var_dump(compact(array('a','b','c')));
33 ["c"]=>
34 string(3) "f.c"
41 ["c"]=>
42 string(3) "f.c"
/PHP-7.4/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-7.4/ext/mysqli/
H A Dconfig.w3212 "mysqli.c " +
13 "mysqli_api.c " +
14 "mysqli_driver.c " +
15 "mysqli_exception.c " +
16 "mysqli_fe.c " +
17 "mysqli_nonapi.c " +
18 "mysqli_prop.c " +
19 "mysqli_result_iterator.c " +
20 "mysqli_report.c " +
21 "mysqli_warning.c";
/PHP-7.4/scripts/dev/
H A Dgenfiles107 Zend/zend_language_parser.c \
108 Zend/zend_language_scanner.c \
109 Zend/zend_ini_parser.c \
110 Zend/zend_ini_scanner.c
115 sapi/phpdbg/phpdbg_parser.c \
116 sapi/phpdbg/phpdbg_lexer.c
121 ext/json/json_parser.tab.c \
122 ext/json/json_scanner.c
127 ext/pdo/pdo_sql_parser.c
133 ext/standard/url_scanner_ex.c
[all …]
/PHP-7.4/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 …]

Completed in 43 milliseconds

12345678910>>...163