Home
last modified time | relevance | path

Searched refs:b (Results 651 – 675 of 2383) sorted by relevance

1...<<21222324252627282930>>...96

/PHP-5.5/ext/phar/tests/zip/
H A Dphar_copy.phpt25 $p->copy('a', 'b');
26 echo file_get_contents($p['b']->getPathName());
27 $p->copy('b', 'c');
43 echo 'b: ' ,file_get_contents($p2['b']->getPathName());
/PHP-5.5/ext/phar/tests/
H A D020.phpt11 $file = b"<?php
18 $files['b/a'] = 'b';
19 $files['b/c/d'] = 'c';
24 var_dump(stat('phar://hio/a'), stat('phar://hio/b'));
/PHP-5.5/ext/gmp/tests/
H A D033.phpt34 $b = "";
35 gmp_setbit($b, 23);
36 gmp_setbit($b);
37 gmp_setbit($b, 23,1,1);
38 gmp_setbit($b,array());
/PHP-5.5/ext/pcre/pcrelib/sljit/
H A DsljitNativeX86_32.c278 sljit_si b, sljit_sw immb) in emit_x86_instruction() argument
307 if (b & SLJIT_MEM) { in emit_x86_instruction()
308 if ((b & REG_MASK) == SLJIT_UNUSED) in emit_x86_instruction()
318 if ((b & REG_MASK) == SLJIT_SP && !(b & OFFS_REG_MASK)) in emit_x86_instruction()
319 b |= TO_OFFS_REG(SLJIT_SP); in emit_x86_instruction()
387 if (!(b & SLJIT_MEM)) in emit_x86_instruction()
388 *buf_ptr++ |= MOD_REG + ((!(flags & EX86_SSE2_OP2)) ? reg_map[b] : b); in emit_x86_instruction()
390 if ((b & OFFS_REG_MASK) == SLJIT_UNUSED || (b & OFFS_REG_MASK) == TO_OFFS_REG(SLJIT_SP)) { in emit_x86_instruction()
399 *buf_ptr++ |= reg_map[b & REG_MASK]; in emit_x86_instruction()
402 *buf_ptr++ = reg_map[b & REG_MASK] | (reg_map[OFFS_REG(b)] << 3); in emit_x86_instruction()
[all …]
/PHP-5.5/ext/mbstring/tests/
H A Dphp_gr_jp_dev_884-1.phpt11 var_dump(ereg_replace(".*", "b", "a"));
12 var_dump(preg_replace("/.*/", "b", "a"));
13 var_dump(mb_ereg_replace(".*", "b", "a"));
H A Dmb_strripos_basic2.phpt26 b'abc defabc def',
27 b'ABC DEFABC DEF',
28 b'Abc dEFaBC Def',
33 b'DE',
34 b'de',
35 b'De',
36 b'dE',
/PHP-5.5/ext/standard/tests/array/
H A Dbug30266.phpt7 public $b = "c";
11 $this->b = $val;
16 $fruits = array ("d"=>"lemon", "a"=>"orange", "b"=>"banana", "c"=>"apple");
H A Darray_map_variation10.phpt20 var_dump( array_map( create_function('$a, $b', 'return array($a, $b);'), $array1, $array2));
23 var_dump( array_map( create_function('$a, $b', 'return array($a, $b);'), $array1));
66 Notice: Undefined variable: b in %s(20) : runtime-created function on line %d
70 Notice: Undefined variable: b in %s(20) : runtime-created function on line %d
74 Notice: Undefined variable: b in %s(20) : runtime-created function on line %d
/PHP-5.5/Zend/tests/
H A D029.phpt11 $arr[0]->b = new $arr[0];
33 ["b"]=>
44 ["b"]=>
H A Dbug54804.inc2 namespace b\c {}
3 namespace b\d {}
H A Dstr_offset_001.phpt30 string(1) "b"
35 string(1) "b"
43 string(1) "b"
48 string(1) "b"
/PHP-5.5/ext/ctype/tests/
H A Dbug25745.phpt16 $b = $ctype_func(chr($i));
17 if ($a != $b) {
18 echo "broken... $ctype_func($i) = $a, $ctype_func(chr($i)) = $b\n";
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_types.phpt148 test_type($db, 450, 'BINARY(255)', str_repeat('b', 255));
150 test_type($db, 470, 'VARBINARY(255)', str_repeat('b', 255));
152 test_type($db, 480, 'TINYBLOB', str_repeat('b', 255));
153 test_type($db, 490, 'BLOB', str_repeat('b', 256));
154 test_type($db, 500, 'MEDIUMBLOB', str_repeat('b', 256));
155 test_type($db, 510, 'LONGBLOB', str_repeat('b', 256));
157 test_type($db, 520, 'TINYTEXT', str_repeat('b', 255));
160 test_type($db, 560, 'TEXT', str_repeat('b', 256));
161 test_type($db, 570, 'TEXT BINARY', str_repeat('b', 256));
163 test_type($db, 580, 'MEDIUMTEXT', str_repeat('b', 256));
[all …]
/PHP-5.5/ext/reflection/tests/
H A DReflectionClass_getModifiers_basic.phpt9 abstract class b {}
14 class g extends b {}
22 dump_modifiers('b');
/PHP-5.5/ext/phar/tests/files/
H A Dnophar.phar.inc5 $p['index.php'] = '<?php include "b/c.php";' . "\n";
7 $p['b/c.php'] = '<?php echo "in b\n";$a = fopen("index.php", "r", true);echo stream_get_contents($a…
/PHP-5.5/ext/phar/tests/cache_list/files/
H A Dnophar.phar.inc5 $p['index.php'] = '<?php include "b/c.php";' . "\n";
7 $p['b/c.php'] = '<?php echo "in b\n";$a = fopen("index.php", "r", true);echo stream_get_contents($a…
/PHP-5.5/tests/classes/
H A Dproperty_override_protectedStatic_private.phpt26 $b = new B;
27 $b->showA();
28 $b->showB();
H A Dproperty_override_protectedStatic_protected.phpt26 $b = new B;
27 $b->showA();
28 $b->showB();
H A Dproperty_override_protectedStatic_public.phpt26 $b = new B;
27 $b->showA();
28 $b->showB();
H A Dproperty_override_publicStatic_private.phpt26 $b = new B;
27 $b->showA();
28 $b->showB();
H A Dproperty_override_publicStatic_protected.phpt26 $b = new B;
27 $b->showA();
28 $b->showB();
H A Dproperty_override_publicStatic_public.phpt26 $b = new B;
27 $b->showA();
28 $b->showB();
H A Dproperty_override_public_private.phpt27 $b = new B;
28 $b->showA();
29 $b->showB();
H A Dproperty_override_public_protected.phpt27 $b = new B;
28 $b->showA();
29 $b->showB();
/PHP-5.5/tests/output/
H A Dob_013.phpt6 function b($s){return $s;}
12 ob_start('b');
34 [2] => b
74 [name] => b

Completed in 164 milliseconds

1...<<21222324252627282930>>...96