Home
last modified time | relevance | path

Searched refs:B (Results 101 – 125 of 504) sorted by relevance

12345678910>>...21

/PHP-5.5/ext/reflection/tests/
H A DReflectionClass_newInstance_001.phpt14 class B {
16 echo "In constructor of class B with args $a, $b\n";
36 $rcB = new ReflectionClass('B');
81 Warning: Missing argument 1 for B::__construct() in %s on line 9
83 Warning: Missing argument 2 for B::__construct() in %s on line 9
88 In constructor of class B with args ,
89 In constructor of class B with args x, 123
90 object(B)#%d (0) {
92 object(B)#%d (0) {
H A DReflectionFunction_getNamespaceName.phpt5 namespace A\B;
14 $function = new \ReflectionFunction('A\\B\\foo');
26 string(7) "A\B\foo"
27 string(3) "A\B"
H A DReflectionClass_getNamespaceName.phpt5 namespace A\B;
15 $function = new \ReflectionClass('A\\B\\Foo');
27 string(7) "A\B\Foo"
28 string(3) "A\B"
H A Dproperty_exists.phpt140 ===B===
141 B::$a
143 B::$b
145 B::$c
147 B::$d
149 B::$e
152 B::$a
154 B::$b
156 B::$c
158 B::$d
[all …]
H A DReflectionClass_getConstructor_basic.phpt36 class B {
37 function B() {}
40 class C extends B {
52 'OldAndNewCtor', 'NewAndOldCtor', 'B', 'C', 'D1', 'D2', 'X', 'Y');
74 Constructor of B: B
H A DReflectionClass_newInstanceArgs_001.phpt14 class B {
16 echo "In constructor of class B with args $a, $b\n";
36 $rcB = new ReflectionClass('B');
81 Warning: Missing argument 1 for B::__construct() in %s on line 9
83 Warning: Missing argument 2 for B::__construct() in %s on line 9
88 In constructor of class B with args ,
89 In constructor of class B with args x, 123
90 object(B)#%d (0) {
92 object(B)#%d (0) {
H A DReflectionClass_isSubclassOf_basic.phpt6 class B extends A {}
7 class C extends B {}
32 Is A a subclass of B?
44 Is B a subclass of A?
47 Is B a subclass of B?
50 Is B a subclass of C?
53 Is B a subclass of I?
56 Is B a subclass of X?
62 Is C a subclass of B?
77 Is I a subclass of B?
[all …]
/PHP-5.5/ext/standard/tests/strings/
H A Dchunk_split.phpt10 $a=str_repeat("B", 65535);
12 $c=str_repeat("B", 65535);
15 $a=str_repeat("B", 65537);
17 $c=str_repeat("B", 65537);
H A Dbug27675.phpt5 echo str_ireplace('/*<B>', '<B>', '/*<b> I am a comment</b>*/');
8 <B> I am a comment</b>*/
/PHP-5.5/Zend/tests/
H A Dns_060.phpt6 use Bar\A as B;
8 $a = new B;
13 use Foo\A as B;
14 $a = new B;
H A Dget_class_methods_001.phpt12 class B extends A {
17 var_dump(get_class_methods('B'));
23 var_dump(get_class_methods('B'));
26 B::test();
H A Dget_class_methods_002.phpt11 class B implements A {
17 var_dump(get_class_methods('B'));
23 new B;
27 Strict Standards: Redefining already defined constructor for class B in %s on line %d
H A Dbug30140.phpt11 class B extends A {
20 var_dump(B::$test1);
21 var_dump(B::$test2);
22 var_dump(B::$test3);
/PHP-5.5/ext/soap/tests/
H A Dclassmap003.phpt16 class B extends A {
25 return new B(5);
46 array('classmap'=>array('A'=>'A','B'=>'B')));
50 B Object
/PHP-5.5/tests/classes/
H A Dproperty_override_protectedStatic_private.phpt14 class B extends A
16 private $p = "B::p";
26 $b = new B;
32 Fatal error: Cannot redeclare static A::$p as non static B::$p in %s on line 18
H A Dproperty_override_protectedStatic_protected.phpt14 class B extends A
16 protected $p = "B::p";
26 $b = new B;
32 Fatal error: Cannot redeclare static A::$p as non static B::$p in %s on line 18
H A Dproperty_override_protectedStatic_public.phpt14 class B extends A
16 public $p = "B::p";
26 $b = new B;
32 Fatal error: Cannot redeclare static A::$p as non static B::$p in %s on line 18
H A Dproperty_override_publicStatic_private.phpt14 class B extends A
16 private $p = "B::p";
26 $b = new B;
32 Fatal error: Cannot redeclare static A::$p as non static B::$p in %s on line 18
H A Dproperty_override_publicStatic_protected.phpt14 class B extends A
16 protected $p = "B::p";
26 $b = new B;
32 Fatal error: Cannot redeclare static A::$p as non static B::$p in %s on line 18
H A Dproperty_override_publicStatic_public.phpt14 class B extends A
16 public $p = "B::p";
26 $b = new B;
32 Fatal error: Cannot redeclare static A::$p as non static B::$p in %s on line 18
H A Dproperty_override_public_private.phpt14 class B extends A
16 private $p = "B::p";
27 $b = new B;
33 Fatal error: Access level to B::$p must be public (as in class A) in %s on line 18
H A Dproperty_override_public_protected.phpt14 class B extends A
16 protected $p = "B::p";
27 $b = new B;
33 Fatal error: Access level to B::$p must be public (as in class A) in %s on line 18
H A Dproperty_override_protected_private.phpt14 class B extends A
16 private $p = "B::p";
27 $b = new B;
33 Fatal error: Access level to B::$p must be protected (as in class A) or weaker in %s on line 18
/PHP-5.5/ext/pdo/tests/
H A Dpdo_011.phpt122 test(2,B)
134 string(1) "B"
149 Test1::factory(2,B)
150 Test1::__construct(2,B)
168 string(1) "B"
187 Test1::factory(2,B)
188 Test1::__construct(2,B)
206 string(1) "B"
237 string(1) "B"
263 string(1) "B"
[all …]
/PHP-5.5/ext/pcre/pcrelib/sljit/
H A DsljitNativePPC_32.c54 return push_inst(compiler, OR | S(src2) | A(dst) | B(src2)); in emit_single_op()
87 return push_inst(compiler, NOR | RC(flags) | S(src2) | A(dst) | B(src2)); in emit_single_op()
118 return push_inst(compiler, ADD | D(dst) | A(src1) | B(src2)); in emit_single_op()
124 FAIL_IF(push_inst(compiler, ADDE | D(dst) | A(src1) | B(src2))); in emit_single_op()
127 return push_inst(compiler, ADDE | D(dst) | A(src1) | B(src2)); in emit_single_op()
145 FAIL_IF(push_inst(compiler, CMPL | CRD(4) | A(src1) | B(src2))); in emit_single_op()
147 FAIL_IF(push_inst(compiler, CMP | CRD(0) | A(src1) | B(src2))); in emit_single_op()
151 return push_inst(compiler, SUBF | D(dst) | A(src2) | B(src1)); in emit_single_op()
153 FAIL_IF(push_inst(compiler, CMPL | CRD(4) | A(src1) | B(src2))); in emit_single_op()
159 FAIL_IF(push_inst(compiler, SUBFE | D(dst) | A(src2) | B(src1))); in emit_single_op()
[all …]

Completed in 33 milliseconds

12345678910>>...21