Home
last modified time | relevance | path

Searched refs:final (Results 1 – 25 of 121) sorted by relevance

12345

/PHP-8.1/ext/standard/
H A Dphp_crypt_r.c105 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.1/Zend/tests/
H A Daccess_modifiers_005.phpt2 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 Derrmsg_038.phpt2 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 Daccess_modifiers_003.phpt6 final final class test {
13 Fatal error: Multiple final modifiers are not allowed in %s on line %d
H A Dbug71871.phpt2 Bug #71871: Interfaces allow final and abstract functions
7 final function test();
12 Fatal error: Interface method test::test() must not be final in %s on line %d
H A Daccess_modifiers_007.phpt2 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 Daccess_modifiers_013.phpt2 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 Dbug75218.phpt14 try_eval('if (false) {class C { final final function foo($fff) {}}}');
21 Multiple final modifiers are not allowed
/PHP-8.1/Zend/tests/constants/final_constants/
H A Dfinal_const1.phpt2 Class constants support the final modifier
8 final const A = "foo";
9 final public const B = "foo";
H A Dfinal_const3.phpt2 Private class constants cannot be final
8 private final const A = "foo";
13 Fatal error: Private constant Foo::A cannot be final as it is not visible to other classes in %s on…
H A Dfinal_const13.phpt2 Bug GH-7757 (Multi-inherited final constant causes fatal error)
6 final public const TEST = 'this';
/PHP-8.1/Zend/tests/traits/
H A Dlanguage019.phpt2 final alias
10 T1::foo as final;
15 Fatal error: Cannot use 'final' as method modifier in %s on line %d
H A Derror_014.phpt2 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
/PHP-8.1/tests/classes/
H A Dinterface_method_final.phpt2 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 Dfinal_abstract.phpt2 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 Dinheritance_007.phpt2 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 Dfinal_ctor1.phpt2 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 Dabstract_final.phpt2 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 Dclass_final.phpt2 ZE2 A final class cannot be inherited
6 final class base {
20 Fatal error: Class derived cannot extend final class base in %s on line %d
H A Dfinal_redeclare.phpt2 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
/PHP-8.1/sapi/cli/tests/
H A D005.phpt85 Method [ <internal:Core, prototype Throwable> final public method getMessage ] {
92 Method [ <internal:Core, prototype Throwable> final public method getCode ] {
98 Method [ <internal:Core, prototype Throwable> final public method getFile ] {
105 Method [ <internal:Core, prototype Throwable> final public method getLine ] {
112 Method [ <internal:Core, prototype Throwable> final public method getTrace ] {
119 Method [ <internal:Core, prototype Throwable> final public method getPrevious ] {
126 Method [ <internal:Core, prototype Throwable> final public method getTraceAsString ] {
/PHP-8.1/Zend/tests/enum/
H A Dfinal.phpt2 Enum is final
12 Fatal error: Class Bar cannot extend final class Foo in %s on line %d
/PHP-8.1/ext/standard/tests/class_object/
H A Dbug78638.phpt2 FR: #78638 (__PHP_Incomplete_Class should be final)
9 Fatal error: Class __PHP_Incomplete_Class@anonymous cannot extend final class __PHP_Incomplete_Clas…
/PHP-8.1/ext/tokenizer/tests/
H A DPhpToken_final_constructor.phpt2 Check that the PhpToken constructor is final
15 Fatal error: Cannot override final method PhpToken::__construct() in %s on line %d
/PHP-8.1/ext/imap/tests/
H A Dimap_final.phpt2 Check that IMAP\Connection is declared final
10 Fatal error: Class T cannot extend final class IMAP\Connection in %s on line %d

Completed in 45 milliseconds

12345