/PHP-5.5/ext/pcre/pcrelib/sljit/ |
H A D | sljitNativePPC_32.c | 32 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() 91 return push_inst(compiler, NEG | OERC(flags) | D(dst) | A(src2)); in emit_single_op() 118 return push_inst(compiler, ADD | D(dst) | A(src1) | B(src2)); in emit_single_op() 123 FAIL_IF(push_inst(compiler, MFXER | D(0))); in emit_single_op() 124 FAIL_IF(push_inst(compiler, ADDE | D(dst) | A(src1) | B(src2))); in emit_single_op() 127 return push_inst(compiler, ADDE | D(dst) | A(src1) | B(src2)); in emit_single_op() 151 return push_inst(compiler, SUBF | D(dst) | A(src2) | B(src1)); in emit_single_op() 158 FAIL_IF(push_inst(compiler, MFXER | D(0))); in emit_single_op() 162 return push_inst(compiler, SUBFE | D(dst) | A(src2) | B(src1)); in emit_single_op() [all …]
|
H A D | sljitNativePPC_64.c | 52 return push_inst(compiler, ADDI | D(reg) | A(0) | IMM(imm)); in load_immediate() 70 FAIL_IF(push_inst(compiler, ADDI | D(reg) | A(0) | IMM(tmp >> 48))); in load_immediate() 208 return push_inst(compiler, NEG | OERC(flags) | D(dst) | A(src2)); in emit_single_op() 238 return push_inst(compiler, ADD | D(dst) | A(src1) | B(src2)); in emit_single_op() 244 FAIL_IF(push_inst(compiler, MFXER | D(0))); in emit_single_op() 245 FAIL_IF(push_inst(compiler, ADDE | D(dst) | A(src1) | B(src2))); in emit_single_op() 249 return push_inst(compiler, ADDE | D(dst) | A(src1) | B(src2)); in emit_single_op() 273 return push_inst(compiler, SUBF | D(dst) | A(src2) | B(src1)); in emit_single_op() 281 FAIL_IF(push_inst(compiler, MFXER | D(0))); in emit_single_op() 286 return push_inst(compiler, SUBFE | D(dst) | A(src2) | B(src1)); in emit_single_op() [all …]
|
/PHP-5.5/Zend/tests/ |
H A D | bug47054.phpt | 11 class D extends C { 17 $d = new D(); 27 D::m(); 31 Called class: D 37 Strict Standards: Non-static method D::m() should not be called statically in %s on line %d
|
H A D | lsb_017.phpt | 18 class D extends A { 21 echo A::test(B::test(C::test(D::test())))."\n"; 25 D
|
/PHP-5.5/win32/build/ |
H A D | Makefile.phpize | 21 @for %D in (_x $(BUILD_DIRS_SUB)) do @if exist %D @rd /s /q %D 26 @for %D in (_x $(BUILD_DIRS_SUB)) do @if exist %D @del /F /Q %D\*.* > NUL
|
H A D | Makefile | 102 @for %D in ($(BUILD_DIRS_SUB)) do @if not exist %D @mkdir %D > NUL 109 @for %D in (_x $(EXT_TARGETS)) do @if exist $(BUILD_DIR)\%D @del /F /Q $(BUILD_DIR)\%D > NUL 110 @for %D in (_x $(PECL_TARGETS)) do @if exist $(BUILD_DIR)\%D @del /F /Q $(BUILD_DIR)\%D > NUL 111 @for %D in (_x $(SAPI_TARGETS)) do @if exist $(BUILD_DIR)\%D @del /F /Q $(BUILD_DIR)\%D > NUL 117 @for %D in (_x $(BUILD_DIRS_SUB)) do @if exist %D @del /F /Q %D\*.* > NUL 129 @for %D in (_x $(BUILD_DIRS_SUB)) do @if exist %D @rd /s /q %D
|
/PHP-5.5/ext/ereg/regex/ |
H A D | regex.dsp | 44 # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c 45 # ADD CPP /nologo /MT /W3 /GX /O2 /I "." /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c 46 # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 47 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 70 # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c 71 # ADD CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /I "." /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c 72 # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 73 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32
|
/PHP-5.5/ext/standard/tests/serialize/ |
H A D | serialization_objects_002.phpt | 44 class D extends C { 55 new D( 1, 2, 3333, 444444 ), 56 new D( .5, 0.005, -1.345, 10.005e5 ), 57 new D( TRUE, true, FALSE, false ), 58 new D( "a", 'a', "string", 'string' ), 59 new D( array(), 64 new D( NULL, null, "", "\0" ), 141 After Unserialization => object(D)#%d (8) { 160 After Unserialization => object(D)#%d (8) { 179 After Unserialization => object(D)#%d (8) { [all …]
|
/PHP-5.5/tests/classes/ |
H A D | property_recreate_private.phpt | 15 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 %unicode|string%(12) "changed in D" 67 object(D)#%d (1) {
|
/PHP-5.5/ext/mbstring/ |
H A D | mbstring.dsp | 46 …D ZEND_DEBUG=0 /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "COMPILE_DL_MBSTRIN… 47 …D ZEND_DEBUG=0 /D "MBSTRING_EXPORTS" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "COMPILE_DL_MBSTRING"… 48 # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 49 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 73 …D ZEND_DEBUG=1 /D "MBSTRING_EXPORTS" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "COMPILE_DL_MBSTRING"… 74 …D ZEND_DEBUG=1 /D MBSTRING_EXPORTS=1 /D HAVE_STDLIB_H=1 /D HAVE_STRING_H=1 /D "MBSTRING_EXPORTS" /… 75 # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 76 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
H A D | config.w32 | 20 " /I ext/mbstring/oniguruma /D NOT_RUBY=1 \ 21 /D HAVE_STDARG_PROTOTYPES=1 /D HAVE_STDLIB_H \ 22 /D HAVE_STRICMP /D EXPORT"); 29 -Iext/mbstring/oniguruma /D NOT_RUBY=1 /D LIBMBFL_EXPORTS=1 \ 30 /D HAVE_STDARG_PROTOTYPES=1 /D HAVE_CONFIG_H /D HAVE_STDLIB_H \ 31 /D HAVE_STRICMP /D MBFL_DLL_EXPORT=1 /D EXPORT")
|
/PHP-5.5/ext/pdo/tests/ |
H A D | pdo_011.phpt | 124 test(4,D) 144 string(1) "D" 153 Test1::factory(4,D) 154 Test1::__construct(4,D) 182 string(1) "D" 191 Test1::factory(4,D) 192 Test1::__construct(4,D) 220 string(1) "D" 247 string(1) "D" 273 string(1) "D" [all …]
|
/PHP-5.5/ext/imap/ |
H A D | config.w32 | 19 …ADD_FLAG("CFLAGS_IMAP", "/D HAVE_IMAP2000=1 /D HAVE_IMAP2004=1 /D HAVE_IMAP2007a=1 /D HAVE_IMAP200…
|
/PHP-5.5/ext/standard/tests/array/ |
H A D | array_diff_assoc_variation9.phpt | 24 echo "-- Compare two 2-D arrays --\n"; 28 echo "\n-- Compare subarrays from two 2-D arrays --\n"; 34 echo "\n-- Compare a subarray from one 2-D array and one 2-D array --\n"; 42 -- Compare two 2-D arrays -- 84 -- Compare subarrays from two 2-D arrays -- 112 -- Compare a subarray from one 2-D array and one 2-D array --
|
/PHP-5.5/ext/phar/tests/ |
H A D | bug69324.phar | 1 …hiob��D��q��s:71:"hi there";c��Do߹�#a:2:{i:0;s:2:"hi…
|
/PHP-5.5/ext/standard/tests/file/ |
H A D | 005_basic.phpt | 24 print( @date('Y:M:D:H:i:s', fileatime(__FILE__)) )."\n"; 25 print( @date('Y:M:D:H:i:s', filemtime(__FILE__)) )."\n"; 26 print( @date('Y:M:D:H:i:s', filectime(__FILE__)) )."\n"; 27 print( @date('Y:M:D:H:i:s', touch(dirname(__FILE__)."/005_basic.tmp")) )."\n"; 30 print( @date('Y:M:D:H:i:s', fileatime(".")) )."\n"; 31 print( @date('Y:M:D:H:i:s', filemtime(".")) )."\n"; 32 print( @date('Y:M:D:H:i:s', filectime(".")) )."\n"; 33 print( @date('Y:M:D:H:i:s', touch(dirname(__FILE__)."/005_basic")) )."\n";
|
/PHP-5.5/ext/pcre/tests/ |
H A D | dollar_endonly.phpt | 2 D (PCRE_DOLLAR_ENDONLY) modififer 9 var_dump(preg_match_all('/^\S+.+$/D', "aeiou\n", $m)); 12 var_dump(preg_match_all('/^\S+\s$/D', "aeiou\n", $m));
|
/PHP-5.5/ext/reflection/tests/ |
H A D | ReflectionClass_getConstants_basic.phpt | 8 class D extends C { 10 class E extends D { 18 $classes = array('C', 'D', 'E', 'F', 'X'); 31 Constants from class D:
|
H A D | ReflectionObject_export_basic3.phpt | 9 class D extends C{ 12 $Obj = new D; 17 Object of class [ <user> class D extends C ] {
|
H A D | ReflectionClass_getConstant_basic.phpt | 8 class D extends C { 10 class E extends D { 18 $classes = array("C", "D", "E", "F", "X"); 30 Reflecting on class D:
|
H A D | ReflectionObject_getConstants_basic.phpt | 8 class D extends C { 10 class E extends D { 18 $classes = array("C", "D", "E", "F", "X"); 32 Reflecting on instance of class D:
|
H A D | ReflectionObject_getConstant_basic.phpt | 8 class D extends C { 10 class E extends D { 18 $classes = array("C", "D", "E", "F", "X"); 30 Reflecting on instance of class D:
|
/PHP-5.5/ext/standard/html_tables/ |
H A D | ents_html5.txt | 37 Cayleys 0212D 45 Cfr 0212D 65 CupCap 0224D 125 Ecy 0042D 180 Hopf 0210D 298 Ncy 0041D 364 Nu 0039D 449 Ropf 0211D 763 bsim 0223D 940 ecy 0044D [all …]
|
/PHP-5.5/ext/date/tests/ |
H A D | bug32588.phpt | 8 echo date('D Y/m/d/H:i:s', strtotime('last saturday', 1112703348)). "\n"; 9 echo date('D Y/m/d/H:i:s', strtotime("last sunday", 1112703348)). "\n"; 10 echo date('D Y/m/d/H:i:s', strtotime('last monday', 1112703348)). "\n";
|
H A D | bug39782.phpt | 8 echo $dttTest->format('D M j Y - H:i:s') . "\n"; 11 echo $dttTest->format('D M j Y - H:i:s') . "\n"; 14 echo $dttTest->format('D M j Y - H:i:s') . "\n";
|