Home
last modified time | relevance | path

Searched refs:D (Results 26 – 50 of 347) sorted by relevance

12345678910>>...14

/PHP-8.1/tests/classes/
H A Dstatic_properties_004.phpt6 class D extends C { }
7 class E extends D { }
10 var_dump(C::$p, D::$p, E::$p);
13 D::$p = 'changed.all';
14 var_dump(C::$p, D::$p, E::$p);
18 D::$p =& $ref;
19 var_dump(C::$p, D::$p, E::$p);
H A Dconstants_basic_006.phpt8 public static $a = array(K => D::V, E::A => K);
11 eval('class D extends C { const V = \'test\'; }');
13 class E extends D
20 var_dump(C::X, C::$a, D::X, D::$a, E::X, E::$a);
H A Dproperty_recreate_protected.phpt15 class D extends C {
17 $this->p = 'changed in D';
21 $d = new D;
28 $d = new D;
40 object(D)#%d (1) {
46 object(D)#%d (1) {
48 string(12) "changed in D"
H A Dproperty_recreate_private.phpt15 class D extends C {
17 $this->p = 'changed in D';
22 $d = new D;
28 $d = new D;
34 $d = new D;
55 object(D)#%d (1) {
61 object(D)#%d (1) {
63 string(12) "changed in D"
67 object(D)#%d (1) {
/PHP-8.1/ext/standard/tests/file/
H A D005_basic.phpt7 print( @date('Y:M:D:H:i:s', fileatime(__FILE__)) )."\n";
8 print( @date('Y:M:D:H:i:s', filemtime(__FILE__)) )."\n";
9 print( @date('Y:M:D:H:i:s', filectime(__FILE__)) )."\n";
10 print( @date('Y:M:D:H:i:s', touch(__DIR__."/005_basic.tmp")) )."\n";
13 print( @date('Y:M:D:H:i:s', fileatime(".")) )."\n";
14 print( @date('Y:M:D:H:i:s', filemtime(".")) )."\n";
15 print( @date('Y:M:D:H:i:s', filectime(".")) )."\n";
16 print( @date('Y:M:D:H:i:s', touch(__DIR__."/005_basic")) )."\n";
/PHP-8.1/tests/lang/
H A DforeachLoopObjects.002.phpt39 class D extends C {
61 class E extends D {
91 $myD = new D;
105 $myD = new D;
125 $myD = new D;
128 $myD = new D;
131 $myD = new D;
155 $myD = new D;
341 in D::doForEach
400 in D::doForEach
[all …]
/PHP-8.1/ext/date/tests/
H A Ddate_modify-1.phpt7 echo date_format($ts, 'D, d M Y H:i:s T'), "\n";
9 echo date_format($ts, 'D, d M Y H:i:s T'), "\n";
13 echo date_format($ts, 'D, d M Y H:i:s T'), "\n";
15 echo date_format($ts, 'D, d M Y H:i:s T'), "\n";
18 echo date_format($ts, 'D, d M Y H:i:s T'), "\n";
20 echo date_format($ts, 'D, d M Y H:i:s T'), "\n";
H A Ddate_interval_bad_format_leak.phpt7 new DateInterval('P3"D');
13 new DatePeriod('P3"D');
26 Unknown or bad format (P3"D)
27 Unknown or bad format (P3"D)
H A Dbug73294.phpt8 $D = "22";
10 $dt = new DateTime("{$i}-{$M}-{$D} 00:00:00");
11 $expected = "{$i}-{$M}-{$D} 00:00:00";
/PHP-8.1/ext/standard/tests/array/
H A Darray_diff_assoc_variation9.phpt17 echo "-- Compare two 2-D arrays --\n";
21 echo "\n-- Compare subarrays from two 2-D arrays --\n";
27 echo "\n-- Compare a subarray from one 2-D array and one 2-D array --\n";
35 -- Compare two 2-D arrays --
77 -- Compare subarrays from two 2-D arrays --
105 -- Compare a subarray from one 2-D array and one 2-D array --
H A Darray_diff_variation9.phpt16 echo "-- Compare two 2-D arrays --\n";
20 echo "\n-- Compare subarrays from two 2-D arrays --\n";
27 echo "\n-- Compare a subarray from one 2-D array and one 2-D array --\n";
35 -- Compare two 2-D arrays --
57 -- Compare subarrays from two 2-D arrays --
81 -- Compare a subarray from one 2-D array and one 2-D array --
/PHP-8.1/ext/standard/tests/serialize/
H A Dserialization_objects_002.phpt33 class D extends C {
44 new D( 1, 2, 3333, 444444 ),
45 new D( .5, 0.005, -1.345, 10.005e5 ),
46 new D( TRUE, true, FALSE, false ),
47 new D( "a", 'a', "string", 'string' ),
48 new D( array(),
53 new D( NULL, null, "", "\0" ),
128 After Unserialization => object(D)#%d (8) {
147 After Unserialization => object(D)#%d (8) {
166 After Unserialization => object(D)#%d (8) {
[all …]
/PHP-8.1/Zend/tests/traits/
H A Dabstract_method_9.phpt15 private function method($x): D {
16 return new D;
19 } else if ($class == D::class) {
20 class D extends C {}
/PHP-8.1/ext/pcre/pcre2lib/sljit/
H A DsljitNativePPC_32.c32 return push_inst(compiler, ADDI | D(reg) | A(0) | IMM(imm)); in load_immediate()
37 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(imm >> 16))); in load_immediate()
109 return push_inst(compiler, ADDIS | D(dst) | A(src1) | compiler->imm); in emit_single_op()
120 return push_inst(compiler, ADDIC | D(dst) | A(src1) | compiler->imm); in emit_single_op()
124 return push_inst(compiler, ADD | D(dst) | A(src1) | B(src2)); in emit_single_op()
130 return push_inst(compiler, ADDE | D(dst) | A(src1) | B(src2)); in emit_single_op()
143 return push_inst(compiler, SUBF | D(dst) | A(src2) | B(src1)); in emit_single_op()
156 return push_inst(compiler, SUBF | D(dst) | A(src2) | B(src1)); in emit_single_op()
171 return push_inst(compiler, SUBF | D(dst) | A(src2) | B(src1)); in emit_single_op()
177 return push_inst(compiler, SUBFE | D(dst) | A(src2) | B(src1)); in emit_single_op()
[all …]
H A DsljitNativePPC_64.c49 return push_inst(compiler, ADDI | D(reg) | A(0) | IMM(imm)); in load_immediate()
55 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(imm >> 16))); in load_immediate()
67 FAIL_IF(push_inst(compiler, ADDI | D(reg) | A(0) | IMM(tmp >> 48))); in load_immediate()
84 FAIL_IF(push_inst(compiler, ADDI | D(reg) | A(0) | IMM(tmp >> 48))); in load_immediate()
259 FAIL_IF(push_inst(compiler, ADD | D(dst) | A(src1) | B(src2))); in emit_single_op()
263 return push_inst(compiler, ADD | D(dst) | A(src1) | B(src2)); in emit_single_op()
271 return push_inst(compiler, ADDE | D(dst) | A(src1) | B(src2)); in emit_single_op()
284 return push_inst(compiler, SUBF | D(dst) | A(src2) | B(src1)); in emit_single_op()
297 return push_inst(compiler, SUBF | D(dst) | A(src2) | B(src1)); in emit_single_op()
321 return push_inst(compiler, SUBF | D(dst) | A(src2) | B(src1)); in emit_single_op()
[all …]
/PHP-8.1/ext/pgsql/
H A Dconfig.w3210 …ADD_FLAG("CFLAGS_PGSQL", "/D PGSQL_EXPORTS /D HAVE_PQFREEMEM /D HAVE_PGSQL_WITH_MULTIBYTE_SUPPORT"…
/PHP-8.1/ext/pdo/tests/
H A Dpdo_011.phpt125 test(4,D)
145 string(1) "D"
154 Test1::factory(4,D)
155 Test1::__construct(4,D)
183 string(1) "D"
192 Test1::factory(4,D)
193 Test1::__construct(4,D)
221 string(1) "D"
248 string(1) "D"
274 string(1) "D"
[all …]
/PHP-8.1/ext/imap/
H A Dconfig.w3218 …ADD_FLAG("CFLAGS_IMAP", "/D HAVE_IMAP2000=1 /D HAVE_IMAP2004=1 /D HAVE_IMAP2007a=1 /D HAVE_IMAP200…
/PHP-8.1/Zend/tests/
H A Dconstant_expressions_classes.phpt15 'D' => 'class D { const HW = \space1\C::HW." extended by D"; }',
31 printf("D::HW = %s\n", D::HW);
39 D::HW = this is space1\C extended by D
/PHP-8.1/ext/opcache/
H A Dconfig.w3223 var dasm_flags = (X64 ? "-D X64=1" : "") + (X64 ? " -D X64WIN=1" : "") + " -D WIN=1";
25 dasm_flags += " -D ZTS=1";
32 /*ADD_FLAG("CFLAGS_OPCACHE", "/D DASM_VERSION=10400");*/
/PHP-8.1/ext/phar/tests/
H A Dbug69324.phar1 …���hio�������b�����D�����q�������s:71:"hi there";���c�����D���o߹���#���a:2:{i:0;s:2:"hi…
/PHP-8.1/win32/build/
H A DMakefile.phpize30 @for %D in (_x $(BUILD_DIRS_SUB)) do @if exist %D @rd /s /q %D
36 @for %D in (_x $(BUILD_DIRS_SUB)) do @if exist %D @del /F /Q %D\*.* > NUL
/PHP-8.1/ext/pcre/tests/
H A Ddollar_endonly.phpt2 D (PCRE_DOLLAR_ENDONLY) modifier
9 var_dump(preg_match_all('/^\S+.+$/D', "aeiou\n", $m));
12 var_dump(preg_match_all('/^\S+\s$/D', "aeiou\n", $m));
/PHP-8.1/ext/reflection/tests/
H A DReflectionClass_getConstants_basic.phpt8 class D extends C {
10 class E extends D {
18 $classes = array('C', 'D', 'E', 'F', 'X');
31 Constants from class D:
/PHP-8.1/ext/readline/
H A Dconfig.w329 ADD_FLAG("CFLAGS_READLINE", "/D HAVE_LIBEDIT");
10 ADD_FLAG("CFLAGS_READLINE", "/D HAVE_RL_COMPLETION_MATCHES");
11 ADD_FLAG("CFLAGS_READLINE", "/D HAVE_HISTORY_LIST");

Completed in 51 milliseconds

12345678910>>...14