/PHP-8.0/ext/standard/ |
H A D | php_crypt_r.c | 105 unsigned char final[16]; in php_md5_crypt_r() local 142 PHP_MD5Final(final, &ctx1); in php_md5_crypt_r() 148 ZEND_SECURE_ZERO(final, sizeof(final)); in php_md5_crypt_r() 162 PHP_MD5Final(final, &ctx); in php_md5_crypt_r() 188 PHP_MD5Final(final, &ctx1); in php_md5_crypt_r() 193 l = (final[ 0]<<16) | (final[ 6]<<8) | final[12]; to64(p,l,4); p += 4; in php_md5_crypt_r() 194 l = (final[ 1]<<16) | (final[ 7]<<8) | final[13]; to64(p,l,4); p += 4; in php_md5_crypt_r() 195 l = (final[ 2]<<16) | (final[ 8]<<8) | final[14]; to64(p,l,4); p += 4; in php_md5_crypt_r() 196 l = (final[ 3]<<16) | (final[ 9]<<8) | final[15]; to64(p,l,4); p += 4; in php_md5_crypt_r() 197 l = (final[ 4]<<16) | (final[10]<<8) | final[ 5]; to64(p,l,4); p += 4; in php_md5_crypt_r() [all …]
|
/PHP-8.0/Zend/tests/ |
H A D | access_modifiers_005.phpt | 2 using multiple access modifiers (final methods) 7 final final function foo() { 14 Fatal error: Multiple final modifiers are not allowed in %s on line %d
|
H A D | errmsg_038.phpt | 2 errmsg: properties cannot be final 7 final $var = 1; 13 Fatal error: Cannot declare property test::$var final, the final modifier is allowed only for metho…
|
H A D | access_modifiers_003.phpt | 6 final final class test { 13 Fatal error: Multiple final modifiers are not allowed in %s on line %d
|
H A D | access_modifiers_007.phpt | 2 abstract final methods errmsg 7 final abstract function foo(); 13 Fatal error: Cannot use the final modifier on an abstract class member in %s on line %d
|
H A D | access_modifiers_013.phpt | 2 Prevent abstract and final in the same class declaration 6 final abstract class C { 12 Fatal error: Cannot use the final modifier on an abstract class in %s on line %d
|
H A D | bug75218.phpt | 14 try_eval('if (false) {class C { final final function foo($fff) {}}}'); 21 Multiple final modifiers are not allowed
|
H A D | bug71871.phpt | 2 Bug #71871: Interfaces allow final and abstract functions 7 final function test();
|
H A D | access_modifiers_002.phpt | 7 static public public static final public final $var;
|
H A D | access_modifiers_001.phpt | 7 static public public static final public final function foo() {
|
/PHP-8.0/sapi/cli/tests/ |
H A D | 005.phpt | 62 Method [ <internal:Core> final private method __clone ] { 84 Method [ <internal:Core, prototype Throwable> final public method getMessage ] { 91 Method [ <internal:Core, prototype Throwable> final public method getCode ] { 97 Method [ <internal:Core, prototype Throwable> final public method getFile ] { 104 Method [ <internal:Core, prototype Throwable> final public method getLine ] { 111 Method [ <internal:Core, prototype Throwable> final public method getTrace ] { 118 Method [ <internal:Core, prototype Throwable> final public method getPrevious ] { 125 Method [ <internal:Core, prototype Throwable> final public method getTraceAsString ] {
|
/PHP-8.0/Zend/tests/traits/ |
H A D | language019.phpt | 2 final alias 10 T1::foo as final; 15 Fatal error: Cannot use 'final' as method modifier in %s on line %d
|
H A D | error_014.phpt | 2 Trying to override final method 11 final public function test() { return 4; } 23 Fatal error: Cannot override final method baz::test() in %s on line %d
|
H A D | error_005.phpt | 2 Trying to use a final class as trait 6 final class abc {
|
/PHP-8.0/tests/classes/ |
H A D | interface_method_final.phpt | 2 ZE2 An interface method cannot be final 7 abstract final function err(); 12 Fatal error: Cannot use the final modifier on an abstract class member in %s on line %d
|
H A D | final_abstract.phpt | 2 ZE2 A final method cannot be abstract 7 final abstract function show(); 13 Fatal error: Cannot use the final modifier on an abstract class member in %s
|
H A D | final_ctor1.phpt | 2 ZE2 cannot override final __construct 8 public final function __construct() 26 Fatal error: Cannot override final method Base::__construct() in %s on line %d
|
H A D | abstract_final.phpt | 2 ZE2 A final method cannot be abstract 7 abstract final function show(); 13 Fatal error: Cannot use the final modifier on an abstract class member in %s on line %d
|
H A D | inheritance_007.phpt | 2 Ensure private methods with the same name are not checked for inheritance rules - final 17 final private function finalPrivate() { 29 final private function finalPrivate() { 41 Warning: Private methods cannot be final as they are never overridden by other classes %s 43 Warning: Private methods cannot be final as they are never overridden by other classes %s
|
H A D | class_final.phpt | 2 ZE2 A final class cannot be inherited 6 final class base { 20 Fatal error: Class derived may not inherit from final class (base) in %s on line %d
|
H A D | final_redeclare.phpt | 2 ZE2 A final method may not be overwritten 7 final function show() { 23 Fatal error: Cannot override final method pass::show() in %s on line 12
|
H A D | constants_visibility_007.phpt | 6 final const X = 1; 10 Fatal error: Cannot use 'final' as constant modifier in %s on line 3
|
H A D | final_private_ctor.phpt | 8 private final function __construct() 21 Fatal error: Cannot override final method Base::__construct() in %s on line %d
|
/PHP-8.0/ext/standard/tests/class_object/ |
H A D | bug78638.phpt | 2 FR: #78638 (__PHP_Incomplete_Class should be final) 9 Fatal error: Class __PHP_Incomplete_Class@anonymous may not inherit from final class (__PHP_Incompl…
|
/PHP-8.0/Zend/tests/type_declarations/ |
H A D | static_type_in_final_class.phpt | 2 While it may not be very useful, static is also permitted in final classes 6 final class Test {
|