Home
last modified time | relevance | path

Searched refs:rc (Results 151 – 175 of 209) sorted by path

123456789

/PHP-5.5/ext/reflection/tests/
H A DReflectionObject_getConstants_error.phpt8 $rc = new ReflectionObject(new X);
10 $rc->getConstants('X');
11 $rc->getConstants(true);
H A DReflectionObject_getConstructor_basic.phpt55 $rc = new ReflectionObject(new $class);
56 $rm = $rc->getConstructor();
H A DReflectionObject_getConstructor_error.phpt6 $rc = new ReflectionObject(new C);
7 var_dump($rc->getConstructor(null));
8 var_dump($rc->getConstructor('X'));
9 var_dump($rc->getConstructor(true));
10 var_dump($rc->getConstructor(array(1,2,3)));
H A DReflectionProperty_getDocComment_basic.phpt36 $rc = new ReflectionClass($class);
37 $rps = $rc->getProperties();
H A DReflectionProperty_getDocComment_error.phpt10 $rc = new ReflectionProperty('C', 'a');
11 var_dump($rc->getDocComment(null));
12 var_dump($rc->getDocComment('X'));
13 var_dump($rc->getDocComment(true));
14 var_dump($rc->getDocComment(array(1, 2, 3)));
H A Dbug39067.phpt18 $rc = new ReflectionClass('C');
19 var_dump($rc->getProperty('x')->getDeclaringClass()->getName());
21 $rc = new ReflectionClass('B');
22 var_dump($rc->getProperty('x')->getDeclaringClass()->getName());
24 $rc = new ReflectionClass('A');
25 var_dump($rc->getProperty('x')->getDeclaringClass()->getName());
35 $rc = new ReflectionClass('Test2');
36 var_dump($rc->getProperty('x')->getDeclaringClass()->getName());
H A Dbug42976.phpt16 $rc = new ReflectionClass('C');
18 $rc->newInstance($x); // causes crash
21 $rc->newInstanceArgs(array($x)); // causes crash
H A Dbug43926.phpt18 $rc = new ReflectionClass('C');
23 $cc = $rc->newInstance();
28 print("Is? C ". ($rc->isInstance($ca) ? 'true' : 'false') .", instanceof: ". (($ca instanceof C) ? …
33 print("Is? C ". ($rc->isInstance($cc) ? 'true' : 'false') .", instanceof: ". (($cc instanceof C) ? …
38 print("Is? C ". ($rc->isInstance($cd) ? 'true' : 'false') .", instanceof: ". (($cd instanceof C) ? …
43 print("Is? C ". ($rc->isInstance($ce) ? 'true' : 'false') .", instanceof: ". (($ce instanceof C) ? …
H A Dbug45139.phpt22 $rc = new ReflectionClass('C');
23 $rp = $rc->getProperty('foo');
26 $rc = new ReflectionClass('A');
27 $rp = $rc->getProperty('foo');
30 $rc = new ReflectionClass('B');
31 $rp = $rc->getProperty('bar');
34 $rc = new ReflectionClass('C');
35 $rp = $rc->getProperty('bar');
38 $rc = new ReflectionClass('C');
39 $rp = $rc->getProperty('baz');
[all …]
H A Dbug53915.phpt11 $rc = new ReflectionClass('Foo');
12 print_r($rc->getConstants());
20 $rc = new ReflectionClass('Foo2');
21 print_r($rc->getConstant('B'));
/PHP-5.5/ext/shmop/
H A Dshmop.dsp30 RSC=rc.exe
92 # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
/PHP-5.5/ext/simplexml/
H A Dsimplexml.dsp30 RSC=rc.exe
92 # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
/PHP-5.5/ext/skeleton/
H A Dskeleton.dsp30 RSC=rc.exe
94 # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
/PHP-5.5/ext/snmp/
H A Dsnmp.dsp30 RSC=rc.exe
94 # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
/PHP-5.5/ext/soap/
H A Dphp_soap.dsp30 RSC=rc.exe
93 # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
/PHP-5.5/ext/sockets/
H A Dsockets.dsp30 RSC=rc.exe
94 # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
/PHP-5.5/ext/spl/
H A Dspl_dllist.c44 #define SPL_LLIST_DELREF(elem) if(!--(elem)->rc) { \
48 #define SPL_LLIST_CHECK_DELREF(elem) if((elem) && !--(elem)->rc) { \
52 #define SPL_LLIST_ADDREF(elem) (elem)->rc++
53 #define SPL_LLIST_CHECK_ADDREF(elem) if(elem) (elem)->rc++
67 int rc; member
191 elem->rc = 1; in spl_ptr_llist_unshift()
215 elem->rc = 1; in spl_ptr_llist_push()
1275 elem->rc = 1; in SPL_METHOD()
/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3.c62668 rc = p->rc;
62885 p->rc = rc;
63002 p->rc = rc;
67318 int rc = p->rc;
68532 rc = -rc;
75989 if( rc==SQLITE_OK ) rc = initData.rc;
77363 p->rc = rc;
77417 p->rc = rc;
77823 v->rc = rc;
105912 if( rc==SQLITE_OK ) rc = initData.rc;
[all …]
/PHP-5.5/ext/standard/tests/assert/
H A Dassert_error1.phpt35 var_dump($rc = assert('aa=sd+as+safsafasfaçsafçsafç'));
H A Dassert_variation.phpt52 var_dump($rc=assert_options(ASSERT_CALLBACK, "c1"));
59 var_dump($rc = assert_options(ASSERT_CALLBACK,array("c1","assert")));
67 var_dump($rc=assert_options(ASSERT_CALLBACK,array(&$o,"assert")));
/PHP-5.5/ext/standard/tests/directory/
H A DDirectoryClass_basic_001.phpt12 $rc = new ReflectionClass("Directory");
13 echo $rc;
/PHP-5.5/ext/standard/tests/strings/
H A Dbug72434.phpt16 // Increment the reference counter by 1 -> rc is 0
18 // Increment the reference counter by 1 again -> rc is 1
/PHP-5.5/ext/sybase_ct/
H A Dsybase_ct.dsp30 RSC=rc.exe
95 # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
/PHP-5.5/ext/tidy/
H A Dtidy.dsp30 RSC=rc.exe
93 # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
/PHP-5.5/ext/tokenizer/
H A Dtokenizer.dsp30 RSC=rc.exe
93 # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"

Completed in 496 milliseconds

123456789