Home
last modified time | relevance | path

Searched refs:B (Results 151 – 175 of 988) sorted by relevance

12345678910>>...40

/php-src/Zend/tests/
H A Dbug74084.phpt7 $$A += $$B['a'] = &$$C;
10 $$A -= $$B['a'] = &$$C;
16 $$A *= $$B['a'] = &$$C;
22 $$A /= $$B['a'] = &$$C;
28 $$A **= $$B['a'] = &$$C;
H A Dbug76869.phpt10 class B extends A {
12 return "B";
15 $b = new B();
23 Exception: Call to protected method B::f() from global scope
H A Dns_091.phpt9 class B { function __construct() {echo __METHOD__,"\n";} }
13 use Foo\Bar\{ A, Baz\B };
15 new B;
20 Foo\Bar\Baz\B::__construct
H A Dbug48215.phpt15 class B extends A
27 $b = new B();
31 B::__construct
33 B::A
/php-src/ext/reflection/tests/
H A Dbug48336.phpt8 class B extends A {
12 class C extends B {
26 $classes = ['A', 'B', 'C', 'D', 'E', 'F'];
40 B => B
H A Dbug79683.phpt16 class B
21 $b = new B();
32 object(B)#1 (1) {
33 ["prop2":"B":private]=>
H A DReflectionProperty_getDocComment_basic.phpt26 class B extends A {
34 foreach(array('A', 'B') as $class) {
76 ---> Doc comment for B::$a:
80 ---> Doc comment for B::$b:
84 ---> Doc comment for B::$c:
88 ---> Doc comment for B::$e:
92 ---> Doc comment for B::$d:
98 ---> Doc comment for B::$f:
H A DReflectionClass_isInstance_basic.phpt6 class B extends A {}
13 $classes = array("A", "B", "C", "I", "X");
16 "myB" => new B,
36 is myA a B? bool(false)
37 is myB a B? bool(true)
38 is myC a B? bool(false)
39 is myX a B? bool(false)
/php-src/ext/mbstring/tests/
H A Dbug49354.phpt7 $crap = 'AåBäCöDü'; // sequence of 1-byte and 2-byte chars: [41 c3a5 42 c3a4 43 c3b6 44 c3bc]
17 string(12) "AåBäCöDü"
18 string(11) "åBäCöDü"
19 string(11) "åBäCöDü"
20 string(9) "BäCöDü"
/php-src/ext/dom/tests/modern/spec/
H A Dbug55294.phpt10 <B>
12 </B>
18 $node = $bDOM->importNode($aDOM->getElementsByTagNameNS('http://example.com/A', 'B')->item(0), true…
26 <B xmlns="http://example.com/A">
28 </B>
/php-src/ext/iconv/tests/
H A Diconv_mime_decode.phpt44 From: =?ISO-2022-JP?B?GyRCJTUbKEI=?=
45 =?ISO-2022-JP?B?GyRCJXMlVxsoQg==?=
46 =?ISO-2022-JP?B?GyRCJWtKOBsoQg==?=
47 =?ISO-2022-JP?B?GyRCO3pOcxsoQg==?=
48 =?ISO-2022-JP?B?GyRCJTUlcxsoQg==?=
49 =?ISO-2022-JP?B?GyRCJVclaxsoQg==?=
50 =?ISO-2022-JP?B?GyRCSjg7ehsoQg==?=
51 =?ISO-2022-JP?B?GyRCTnNGfBsoQg==?=
52 =?ISO-2022-JP?B?GyRCS1w4bBsoQg==?=
53 =?ISO-2022-JP?B?GyRCJUYlLRsoQg==?=
[all …]
/php-src/tests/classes/
H A Dproperty_override_private_private.phpt14 class B extends A
16 private $p = "B::p";
27 $b = new B;
34 B::p
H A Dproperty_override_private_public.phpt14 class B extends A
16 public $p = "B::p";
27 $b = new B;
34 B::p
H A Dproperty_override_private_protected.phpt14 class B extends A
16 protected $p = "B::p";
27 $b = new B;
34 B::p
H A Dproperty_override_privateStatic_private.phpt14 class B extends A
16 private $p = "B::p";
26 $b = new B;
33 B::p
H A Dproperty_override_privateStatic_public.phpt14 class B extends A
16 public $p = "B::p";
26 $b = new B;
33 B::p
H A Dproperty_override_privateStatic_protected.phpt14 class B extends A
16 protected $p = "B::p";
26 $b = new B;
33 B::p
/php-src/Zend/tests/property_hooks/
H A Dinheritance.phpt13 class B extends A {
15 get { return "B"; }
23 $b = new B;
31 string(1) "B"
/php-src/sapi/phpdbg/tests/
H A Dinfo_002.phpt12 >00010: print B;
18 %s 1 int B
25 const B = C::D * A;
31 print B;
/php-src/Zend/tests/type_declarations/dnf_types/variance/
H A Dinvalid_invariance2.phpt9 class B {}
12 public (X&Y)|B $prop;
15 public A|B $prop;
21 Fatal error: Type of Test2::$prop must be (X&Y)|B (as in class Test) in %s on line %d
/php-src/Zend/tests/type_declarations/intersection_types/
H A Dparsing_comment.phpt8 Comment // ** / / * * **/ B $p) {}
10 B $p) {}
12 B $p) {}
14 B $p) {}
/php-src/Zend/tests/type_declarations/union_types/variance/
H A Dvalid.phpt14 public function method2(B|string $a): A|string {}
15 public function method3(Y|B $a): X|A {}
18 class B extends A {
23 public function method2(A|string $a): B|string {}
24 public function method3(A|X $a): B|Y {}
/php-src/Zend/tests/type_declarations/variance/
H A Dclass_order_autoload_error3.phpt11 } else if ($class == 'B') {
12 class B extends A {
25 public function method(): B {}
34 $b = new B;
38 Fatal error: Declaration of R::method(): A must be compatible with Q::method(): B in %s on line %d
H A Dloading_exception1.phpt13 class B extends A {
23 // Tie up B in a variance obligation.
28 public function test(): B {}
32 // Fallback to fatal error, as we can't unlink class B anymore.
34 class B extends A implements I {
45 Fatal error: During inheritance of B with variance dependencies: Uncaught Exception: Class A does n…
H A Dloading_exception2.phpt15 class B extends A implements I {
25 // Tie up B in a variance obligation.
30 public function test(): B {}
34 // Fallback to fatal error, as we can't unlink class B anymore.
36 class B extends A implements I, J {
47 Fatal error: During inheritance of B with variance dependencies: Uncaught Exception: Class I does n…

Completed in 20 milliseconds

12345678910>>...40