Home
last modified time | relevance | path

Searched refs:B (Results 251 – 275 of 623) sorted by relevance

1...<<11121314151617181920>>...25

/PHP-7.4/Zend/tests/
H A Dclosure_056.phpt15 class B extends A {}
17 var_dump(B::foo());
H A Dbug64239_1.phpt9 class B extends A {
17 print_r(get_class_methods("B"));
H A Dbug45742.phpt8 const B = 1;
14 Constants::B => 42,
H A Dbug69568.phpt17 class B extends A {
20 $fn = B::test();
H A Dbug69420.phpt18 class B extends A {
26 $b = new B();
H A Dclosure_053.phpt15 class B extends A {}
17 $b = new B;
H A Dclosure_054.phpt15 class B extends A {}
17 $b = new B;
H A Dns_030.phpt8 use A\B as Foo;
12 Fatal error: Cannot use A\B as Foo because the name is already in use in %sns_030.php on line 5
H A Dbug43200_2.phpt10 abstract class B implements A {
14 class C extends B {
H A Dinvalid_parent_const_ref_leak.phpt7 const B = parent::C;
11 A::B;
/PHP-7.4/ext/reflection/tests/
H A DReflectionClassConstant_toString_error.phpt6 class B {
11 echo new ReflectionClassConstant('B', 'X');
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');
95 Exception: Too few arguments to function B::__construct(), 0 passed and exactly 2 expected
96 In constructor of class B with args x, 123
97 object(B)#%d (0) {
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');
88 Exception: Too few arguments to function B::__construct(), 0 passed and exactly 2 expected
89 In constructor of class B with args x, 123
90 object(B)#%d (0) {
/PHP-7.4/ext/filter/tests/
H A D027.phpt23 string(75) "%3F%3E%3C%21%40%23%24%25%5E%26%2A%28%29%7D%7B%7EQwertyuilfdsasdfgmnbvcxcvbn"
26 string(75) "%3F%3E%3C%21%40%23%24%25%5E%26%2A%28%29%7D%7B%7EQwertyuilfdsasdfgmnbvcxcvbn"
29 string(75) "%3F%3E%3C%21%40%23%24%25%5E%26%2A%28%29%7D%7B%7EQwertyuilfdsasdfgmnbvcxcvbn"
/PHP-7.4/ext/pcre/pcre2lib/sljit/
H A DsljitNativePPC_64.c153 return push_inst(compiler, OR | S(src2) | A(dst) | B(src2)); in emit_single_op()
200 return push_inst(compiler, NOR | RC(flags) | S(src2) | A(dst) | B(src2)); in emit_single_op()
256 return push_inst(compiler, ADD | D(dst) | A(src1) | B(src2)); in emit_single_op()
260 return push_inst(compiler, ADD | RC(flags) | D(dst) | A(src1) | B(src2)); in emit_single_op()
264 return push_inst(compiler, ADDE | D(dst) | A(src1) | B(src2)); in emit_single_op()
277 return push_inst(compiler, SUBF | D(dst) | A(src2) | B(src1)); in emit_single_op()
309 return push_inst(compiler, SUBF | D(dst) | A(src2) | B(src1)); in emit_single_op()
317 return push_inst(compiler, SUBFE | D(dst) | A(src2) | B(src1)); in emit_single_op()
338 return push_inst(compiler, AND | RC(flags) | S(src1) | A(dst) | B(src2)); in emit_single_op()
354 return push_inst(compiler, OR | RC(flags) | S(src1) | A(dst) | B(src2)); in emit_single_op()
[all …]
/PHP-7.4/ext/mbstring/tests/
H A Dmb_encode_mimeheader_basic.phpt12 …* Description: Converts the string to MIME "encoded-word" in the format of =?charset?(B|Q)?encoded…
31 var_dump(mb_encode_mimeheader($input, 'UTF-8', 'B'));
41 var_dump(mb_encode_mimeheader($input, 'UTF-8', 'B'));
59 string(52) "=?UTF-8?B?5pel5pys6Kqe44OG44Kt44K544OI44Gn44GZ44CC?="
66 string(115) "=?UTF-8?B?zpHPhc+Ez4wgzrXOr869zrHOuSDOtc67zrvOt869zrnOus+MIM66zrXOr868?=
67 =?UTF-8?B?zrXOvc6/LiAwMTIzNDU2Nzg5Lg==?="
H A Dmb_output_handler_shift_jis.phpt12 var_dump("�e�X�g�p���{�ꕶ����B���̃��W���[����PHP�Ƀ}���`�o�C�g�֐�������܂��B");
/PHP-7.4/Zend/tests/traits/
H A Dbug63911.phpt11 trait B
21 use B, C;
H A Dbug65576a.phpt22 class B extends A
27 new B();
/PHP-7.4/ext/iconv/tests/
H A Diconv004.phpt15 string(19) ": =?ISO-8859-1?B??="
16 string(19) ": =?ISO-8859-1?B??="
/PHP-7.4/tests/classes/
H A Dinheritance_003.phpt11 class B extends A
19 Warning: Declaration of B::f() should be compatible with A::f($x) in %sinheritance_003.php on line …
H A Dinheritance_004.phpt11 class B extends A
19 Warning: Declaration of B::f($x) should be compatible with A::f() in %sinheritance_004.php on line …
/PHP-7.4/Zend/tests/nullable_types/
H A Dcontravariant_nullable_return_fails.phpt10 interface B extends A {
14 Fatal error: Declaration of B::method(): ?int must be compatible with A::method(): int in %s on lin…
/PHP-7.4/Zend/tests/return_types/
H A Dinheritance001.phpt10 class B extends A {
14 Fatal error: Declaration of B::foo(): StdClass must be compatible with A::foo(): A in %s on line %d
H A Dinheritance003.phpt10 class B implements A {
14 Fatal error: Declaration of B::foo(): StdClass must be compatible with A::foo(): A in %s on line %d

Completed in 27 milliseconds

1...<<11121314151617181920>>...25