Home
last modified time | relevance | path

Searched refs:abstract (Results 26 – 50 of 164) sorted by relevance

1234567

/PHP-5.5/Zend/tests/traits/
H A Dlanguage007.phpt2 Traits can fulfill the requirements of abstract base classes.
7 abstract class Base {
8 abstract function sayWorld();
H A Dbug60217b.phpt2 Bug #60217 (Requiring the same method from different traits and abstract methods have to be compati…
7 public abstract function foo($a);
11 public abstract function foo($a, $b = 0);
H A Dbug60217c.phpt2 Bug #60217 (Requiring the same method from different traits and abstract methods have to be compati…
7 public abstract function foo($a, $b = 0);
11 public abstract function foo($a);
H A Dbug60717.phpt2 Bug #60717 (Order of traits in use statement can cause unexpected unresolved abstract method)
23 abstract function attributes(array $attributes = null);
24 abstract function text($text);
30 abstract function text($text);
H A Derror_006.phpt2 Trying to use an abstract class as trait
6 abstract class abc {
H A Dbug60217a.phpt7 public abstract function foo();
11 public abstract function foo();
/PHP-5.5/tests/classes/
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_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
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 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 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
/PHP-5.5/Zend/tests/
H A Dmagic_methods_007.phpt2 Testing __set() declaration in abstract class with wrong modifier
6 abstract class b {
7 abstract protected function __set($a);
H A Dbug43703.phpt9 abstract class Pointcut
11 abstract public function evaluate(JoinPoint $joinPoint);
H A Derrmsg_002.phpt6 abstract class test {
7 abstract private function foo() {
H A D022.phpt6 abstract class Base
8 abstract function someMethod($param);
H A Dclass_exists_003.phpt2 Checking if exists interface, trait, abstract and final class
8 abstract class b { }
H A Dtrait_exists_003.phpt2 Checking trait_exists(): interface, trait, abstract and final class
8 abstract class b { }
H A Dbug51421.phpt8 abstract class TestInterface {
9 abstract public function __construct(ExampleClass $var);
/PHP-5.5/ext/standard/tests/serialize/
H A Dserialization_objects_003.phpt2 Test serialize() & unserialize() functions: objects (abstract classes)
19 // abstract class
20 abstract class Name
27 abstract protected function getClassName();
32 // implement abstract class
/PHP-5.5/ext/zlib/
H A Dzlib_fopen_wrapper.c35 struct php_gz_stream_data_t *self = (struct php_gz_stream_data_t *) stream->abstract; in php_gziop_read()
49 struct php_gz_stream_data_t *self = (struct php_gz_stream_data_t *) stream->abstract; in php_gziop_write()
59 struct php_gz_stream_data_t *self = (struct php_gz_stream_data_t *) stream->abstract; in php_gziop_seek()
74 struct php_gz_stream_data_t *self = (struct php_gz_stream_data_t *) stream->abstract; in php_gziop_close()
94 struct php_gz_stream_data_t *self = (struct php_gz_stream_data_t *) stream->abstract; in php_gziop_flush()
/PHP-5.5/main/streams/
H A Dglob_wrapper.c52 glob_s_t *pglob = (glob_s_t *)stream->abstract; in _php_glob_stream_get_path()
74 glob_s_t *pglob = (glob_s_t *)stream->abstract; in _php_glob_stream_get_pattern()
96 glob_s_t *pglob = (glob_s_t *)stream->abstract; in _php_glob_stream_get_count()
142 glob_s_t *pglob = (glob_s_t *)stream->abstract; in php_glob_stream_read()
166 glob_s_t *pglob = (glob_s_t *)stream->abstract; in php_glob_stream_close()
178 efree(stream->abstract); in php_glob_stream_close()
185 glob_s_t *pglob = (glob_s_t *)stream->abstract; in php_glob_stream_rewind()
H A Dmemory.c51 php_stream_memory_data *ms = (php_stream_memory_data*)stream->abstract; in php_stream_memory_write()
319 ms = (php_stream_memory_data*)stream->abstract; in _php_stream_memory_open()
365 php_stream_temp_data *ts = (php_stream_temp_data*)stream->abstract; in php_stream_temp_write()
395 php_stream_temp_data *ts = (php_stream_temp_data*)stream->abstract; in php_stream_temp_read()
416 php_stream_temp_data *ts = (php_stream_temp_data*)stream->abstract; in php_stream_temp_close()
441 php_stream_temp_data *ts = (php_stream_temp_data*)stream->abstract; in php_stream_temp_flush()
452 php_stream_temp_data *ts = (php_stream_temp_data*)stream->abstract; in php_stream_temp_seek()
472 php_stream_temp_data *ts = (php_stream_temp_data*)stream->abstract; in php_stream_temp_cast()
518 php_stream_temp_data *ts = (php_stream_temp_data*)stream->abstract; in php_stream_temp_stat()
591 ts = (php_stream_temp_data*)stream->abstract; in _php_stream_temp_open()
[all …]
/PHP-5.5/Zend/tests/traits/bugs/
H A Dabstract-methods03.phpt2 Abstract Trait Methods should behave like common abstract methods.
8 public abstract function hello();
H A Dabstract-methods02.phpt2 Abstract Trait Methods should behave like common abstract methods.
8 public abstract function hello();
/PHP-5.5/ext/reflection/tests/
H A Dtraits002.phpt6 abstract class foo {
18 Class [ <user> abstract class foo ] {

Completed in 37 milliseconds

1234567