Home
last modified time | relevance | path

Searched refs:abstract (Results 1 – 25 of 164) sorted by last modified time

1234567

/PHP-5.5/tests/classes/
H A Dfinal_abstract.phpt2 ZE2 A final method cannot be abstract
9 final abstract function show();
16 Fatal error: Cannot use the final modifier on an abstract class member in %s
H A Dinterface_method.phpt2 ZE2 An interface method must be abstract
H A Dinterface_method_final.phpt9 abstract final function err();
15 Fatal error: Cannot use the final modifier on an abstract class member in %s on line %d
H A Dinterface_method_private.phpt9 abstract private function err();
H A Dinterface_must_be_implemented.phpt17 Fatal error: Class derived_a contains 1 abstract method and must therefore be declared abstract or …
H A Dinterfaces_002.phpt21 // this should die -- Exception class must be abstract...
29 Fatal error: Class Exception_foo contains 1 abstract method and must therefore be declared abstract
H A Dmethod_override_optional_arg_002.phpt2 Omitting optional arg in method inherited from abstract class
6 abstract class A {
H A Dclass_abstract.phpt2 ZE2 An abstract class cannot be instanciated
8 abstract class base {
28 Fatal error: Cannot instantiate abstract class base in %s on line %d
H A Dclone_004.phpt5 abstract class base {
H A Dclone_005.phpt5 abstract class base {
H A Dctor_in_interface_03.phpt10 abstract class implem implements constr
H A Dabstract.phpt2 ZE2 An abstract method may not be called
8 abstract class fail {
9 abstract function show();
30 Fatal error: Cannot call abstract method fail::show() in %s on line %d
H A Dabstract_by_interface_001.phpt2 ZE2 An abstract method may not be called
14 abstract class Derived extends Root implements MyInterface {
33 Fatal error: Class Fails contains 1 abstract method and must therefore be declared abstract or impl…
H A Dabstract_by_interface_002.phpt2 ZE2 An abstract method may not be called
14 abstract class Derived extends Root implements MyInterface {
33 Fatal error: Class Fails contains 1 abstract method and must therefore be declared abstract or impl…
H A Dabstract_class.phpt2 ZE2 An abstract class cannot be instantiated
8 abstract class fail {
9 abstract function show();
29 Fatal error: Cannot instantiate abstract class fail in %s on line %d
H A Dabstract_derived.phpt2 ZE2 A derived class with an abstract method must be abstract
12 abstract function show();
20 Fatal error: Class derived contains 1 abstract method and must therefore be declared abstract or im…
H A Dabstract_final.phpt2 ZE2 A final method cannot be abstract
9 abstract final function show();
16 Fatal error: Cannot use the final modifier on an abstract class member in %s on line %d
H A Dabstract_inherit.phpt2 ZE2 A class that inherits an abstract method is abstract
8 abstract class pass {
9 abstract function show();
12 abstract class fail extends pass {
22 Fatal error: Cannot instantiate abstract class fail in %s on line %d
H A Dabstract_not_declared.phpt2 ZE2 An abstract class must be declared abstract
9 abstract function show();
15 Fatal error: Class fail contains 1 abstract method and must therefore be declared abstract or imple…
H A Dabstract_redeclare.phpt2 ZE2 A method cannot be redeclared abstract
15 abstract function show();
22 Fatal error: Class fail contains 1 abstract method and must therefore be declared abstract or imple…
H A Dabstract_static.phpt2 ZE2 A static abstract methods
23 abstract static function func();
34 Strict Standards: Static function fail::func() should not be abstract in %sabstract_static.php(%d) …
36 Fatal error: Class fail contains 1 abstract method and must therefore be declared abstract or imple…
H A Dabstract_user_call.phpt6 abstract class test_base
8 abstract function func();
30 Fatal error: Cannot call abstract method test_base::func() in %s on line %d
/PHP-5.5/scripts/dev/
H A Dgenerate-phpt.phar795 abstract class gtPreCondition {
797 abstract public function check($clo);
799 abstract public function getMessage();
1040 abstract class gtTestSubject {
1306 abstract class gtErrorTestCase extends gtTestCase {
1357 abstract class gtTestCase {
1867 abstract class gtBasicTestCase extends gtTestCase {
1902 abstract class gtVariationContainer {
1957 abstract class gtVariationTestCase extends gtTestCase {
/PHP-5.5/main/streams/
H A Dstreams.c288 PHPAPI php_stream *_php_stream_alloc(php_stream_ops *ops, void *abstract, const char *persistent_id… in _php_stream_alloc() argument
304 ret->abstract = abstract; in _php_stream_alloc()
487 stream->abstract = NULL; in _php_stream_free()
H A Duserspace.c534 uwrap->wrapper.abstract = uwrap; in PHP_FUNCTION()
626 php_userstream_data_t *us = (php_userstream_data_t *)stream->abstract; in php_userstreamop_write()
682 php_userstream_data_t *us = (php_userstream_data_t *)stream->abstract; in php_userstreamop_read()
758 php_userstream_data_t *us = (php_userstream_data_t *)stream->abstract; in php_userstreamop_close()
785 php_userstream_data_t *us = (php_userstream_data_t *)stream->abstract; in php_userstreamop_flush()
813 php_userstream_data_t *us = (php_userstream_data_t *)stream->abstract; in php_userstreamop_seek()
940 php_userstream_data_t *us = (php_userstream_data_t *)stream->abstract; in php_userstreamop_stat()
972 php_userstream_data_t *us = (php_userstream_data_t *)stream->abstract; in php_userstreamop_set_option()
1521 php_userstream_data_t *us = (php_userstream_data_t *)stream->abstract; in php_userstreamop_readdir()
1557 php_userstream_data_t *us = (php_userstream_data_t *)stream->abstract; in php_userstreamop_closedir()
[all …]

Completed in 31 milliseconds

1234567