Home
last modified time | relevance | path

Searched refs:o (Results 26 – 50 of 473) sorted by relevance

12345678910>>...19

/PHP-5.5/ext/standard/tests/strings/
H A Dsprintf_variation30.phpt24 "%o", "%ho", "%lo",
25 "%Lo", " %o", "%o ",
26 "\t%o", "\n%o", "%4o",
27 "%30o", "%[0-7]", "%*o"
51 string(1) "o"
53 string(1) "o"
62 string(1) "o"
66 string(1) "o"
68 string(1) "o"
77 string(1) "o"
H A Dstrrchr_variation1.phpt48 "%\o",
49 "\o,",
95 $&!#%\o,()*+-./:;<=>?@hello123456he #4 A "
103 $&!#%\o,()*+-./:;<=>?@hello123456he #4 A "
111 $&!#%\o,()*+-./:;<=>?@hello123456he #4 A "
115 $&!#%\o,()*+-./:;<=>?@hello123456he #4 A "
122 $&!#%\o,()*+-./:;<=>?@hello123456he #4 A "
126 $&!#%\o,()*+-./:;<=>?@hello123456he #4 A "
130 $&!#%\o,()*+-./:;<=>?@hello123456he #4 A "
134 $&!#%\o,()*+-./:;<=>?@hello123456he #4 A "
[all …]
H A Dvsprintf_basic8.phpt14 $format1 = "%o";
15 $format2 = "%o %o";
16 $format3 = "%o %o %o";
H A Dvprintf_basic8.phpt14 $format1 = "%o";
15 $format2 = "%o %o";
16 $format3 = "%o %o %o";
H A Dvfprintf_basic8.phpt14 $format1 = "%o";
15 $format2 = "%o %o";
16 $format3 = "%o %o %o";
H A Dsprintf_basic8.phpt20 $format1 = "%o";
21 $format2 = "%o %o";
22 $format3 = "%o %o %o";
/PHP-5.5/ext/fileinfo/libmagic/
H A Dfuncs.c74 efree(ms->o.buf); in file_printf()
77 ms->o.buf = buf; in file_printf()
96 efree(ms->o.buf); in file_error_core()
97 ms->o.buf = NULL; in file_error_core()
314 if (ms->o.buf) { in file_reset()
318 if (ms->o.pbuf) { in file_reset()
333 (o)++)
370 np = ms->o.pbuf; in file_getbuffer()
371 op = ms->o.buf; in file_getbuffer()
400 for (np = ms->o.pbuf, op = ms->o.buf; *op;) { in file_getbuffer()
[all …]
/PHP-5.5/tests/classes/
H A Dvisibility_005.phpt24 $o = new base;
25 $o->d = 4;
27 $o->f();
29 foreach($o as $k=>$v) {
33 $o = new derived;
34 $o->d = 4;
36 $o->f();
38 foreach($o as $k=>$v) {
/PHP-5.5/ext/simplexml/tests/
H A Dbug46003.phpt10 <o d='h'>
13 </o>
20 var_dump(isset($x->p->o));
21 var_dump(isset($x->o->yy));
22 var_dump(isset($x->o->zz));
23 var_dump(isset($x->o->text));
24 var_dump(isset($x->o->xx));
/PHP-5.5/tests/basic/
H A D023.phpt7 c o o k i e=value; c o o k i e= v a l u e ;;c%20o+o k+i%20e=v;name="value","value",UEhQIQ==;UEhQIQ=…
/PHP-5.5/ext/intl/tests/
H A Dgrapheme.phpt1006 find "o" in "aa%CC%8Abco%CC%88o" - grapheme_strstr = o == o
1111 extract from "o%CC%88o%CC%88o%CC%88o%CC%88" "1" graphemes - grapheme_extract starting at byte posit…
1112 extract from "o%CC%88o%CC%88o%CC%88o%CC%88" "1" graphemes - grapheme_extract starting at byte posit…
1113 extract from "o%CC%88o%CC%88o%CC%88o%CC%88" "1" graphemes - grapheme_extract starting at byte posit…
1115 extract from "o%CC%88o%CC%88o%CC%88o%CC%88" "2" graphemes - grapheme_extract starting at byte posit…
1116 extract from "o%CC%88o%CC%88o%CC%88o%CC%88" "2" graphemes - grapheme_extract starting at byte posit…
1117 extract from "o%CC%88o%CC%88o%CC%88o%CC%88" "2" graphemes - grapheme_extract starting at byte posit…
1120 extract from "o%CC%88o%CC%88o%CC%88o%CC%88" "2" graphemes - grapheme_extract starting at byte posit…
1146 …rom "o%CC%88o%CC%88o%CC%88o%CC%88" "6" graphemes - grapheme_extract GRAPHEME_EXTR_MAXBYTES startin…
1147 …rom "o%CC%88o%CC%88o%CC%88o%CC%88" "6" graphemes - grapheme_extract GRAPHEME_EXTR_MAXBYTES startin…
[all …]
/PHP-5.5/Zend/tests/traits/
H A Dflattening001.phpt28 $o = new TraitsTest();
29 var_dump($o->getText());
31 $o->setText('foo');
33 var_dump($o->getText());
35 $o->setText('bar');
37 var_dump($o->getText());
H A Dmethods_001.phpt28 $o = new bar;
29 echo $o, PHP_EOL;
30 $o->xyz;
31 $o->xyz = 2;
32 clone $o;
H A Dlanguage002.phpt26 $o = new MyHelloWorld();
27 $o->sayHello();
28 $o->sayWorld();
29 $o->sayExclamationMark();
/PHP-5.5/ext/tidy/tests/
H A Dbug_50558.phpt12 function doSomething(MyTidy $o)
14 var_dump($o);
17 $o = new MyTidy();
18 var_dump($o instanceof MyTidy);
19 doSomething($o);
/PHP-5.5/ext/spl/tests/
H A Dfileobject_002.phpt10 $o = new SplFileObject(dirname(__FILE__) . '/' . $name);
12 var_dump($o->key());
13 while(($c = $o->fgetc()) !== false)
15 var_dump($o->key(), $c, $o->eof());
18 var_dump($o->eof());
19 var_dump($o->key());
20 var_dump($o->eof());
H A Darray_027.phpt7 $o = new AO();
8 $o['plop'] = $o;
10 var_dump($o);
H A DSplObjectStorage_var_dump.phpt5 $o = new SplObjectStorage();
7 $o[new StdClass] = $o;
9 var_dump($o);
/PHP-5.5/ext/ereg/regex/
H A Dregexec.c35 #define INIT(o, n) ((o) = (unsigned)1 << (n)) argument
36 #define INC(o) ((o) <<= 1) argument
37 #define ISSTATEIN(v, o) ((v) & (o)) argument
84 #define INIT(o, n) ((o) = (n)) argument
85 #define INC(o) ((o)++) argument
86 #define ISSTATEIN(v, o) ((v)[o]) argument
/PHP-5.5/sapi/apache/
H A DapMakefile.tmpl10 OBJS=mod_php5.o
14 SHLIB_OBJS=mod_php5.so-o
37 $(LD_SHLIB) $(LDFLAGS_SHLIB) -o $@ $(SHLIB_OBJS) $(SHLIB_OBJS_LIB) $(LIBS) $(PHP_LIBS)
39 # 1. extension .o for shared objects cannot be used here because
43 # 2. extension -so.o (as used elsewhere) cannot be used because
45 # extension .so-o
46 .SUFFIXES: .o .so-o
47 .c.o:
49 .c.so-o:
50 … -c $(INCLUDES) $(CFLAGS) $(CFLAGS_SHLIB) $(PHP_CFLAGS) $(CPPFLAGS) $(SPACER) $< && mv $*.o $*.so-o
[all …]
/PHP-5.5/sapi/apache_hooks/
H A DapMakefile.tmpl10 OBJS=mod_php5.o
14 SHLIB_OBJS=mod_php5.so-o
37 $(LD_SHLIB) $(LDFLAGS_SHLIB) -o $@ $(SHLIB_OBJS) $(SHLIB_OBJS_LIB) $(LIBS) $(PHP_LIBS)
39 # 1. extension .o for shared objects cannot be used here because
43 # 2. extension -so.o (as used elsewhere) cannot be used because
45 # extension .so-o
46 .SUFFIXES: .o .so-o
47 .c.o:
49 .c.so-o:
50 … -c $(INCLUDES) $(CFLAGS) $(CFLAGS_SHLIB) $(PHP_CFLAGS) $(CPPFLAGS) $(SPACER) $< && mv $*.o $*.so-o
[all …]
/PHP-5.5/Zend/tests/traits/bugs/
H A Dalias01.phpt14 $o = new C1;
15 $o->m1();
16 $o->a1();
17 $o->m2();
18 $o->a2();
/PHP-5.5/Zend/tests/
H A Dconcat_001.phpt15 $o = new test;
20 var_dump($a.$o);
26 var_dump($o.$a);
27 var_dump($o.$s);
28 var_dump($o.$i);
29 var_dump($o.$d);
30 var_dump($o.$o);
32 var_dump($s.$o);
39 var_dump($i.$o);
45 var_dump($d.$o);
H A Dbug53748.phpt26 $o= myHelloWorld::getInstance(1);
27 $o= myHelloWorld::getInstance(1);
28 $o= myHelloWorld::getInstance(2);
29 $o= myHelloWorld::getInstance(array(1=>2));
30 $o= myHelloWorld::getInstance(array(1=>2));
/PHP-5.5/ext/reflection/tests/
H A Dbug46064.phpt10 $o = new x;
11 $o->z = 1000;
12 $o->zzz = 3;
14 var_dump($h = new reflectionproperty($o, 'z'));
20 var_dump($h->getValue($o));
24 var_dump(new reflectionproperty($o, 'zz'));
29 var_dump(new reflectionproperty($o, 'zzz'));

Completed in 32 milliseconds

12345678910>>...19