Home
last modified time | relevance | path

Searched refs:rc (Results 101 – 125 of 164) sorted by relevance

1234567

/PHP-8.0/ext/reflection/tests/
H A DReflectionClass_toString_003.phpt22 $rc = new ReflectionClass($class);
23 echo $rc;
H A DReflectionClass_getDocComment_001.phpt52 $rc = new ReflectionClass($class);
53 var_dump($rc->getDocComment());
H A DReflectionClass_isInstance_basic.phpt21 $rc = new ReflectionClass($class);
25 var_dump($rc->isInstance($instance));
H A DReflectionClass_isIterateable_001.phpt33 $rc = new ReflectionClass($class);
35 var_dump($rc->isIterateable());
H A DReflectionClass_toString_002.phpt22 $rc = new ReflectionClass($class);
23 echo $rc;
H A DReflectionReference_bug78263.phpt7 // be treated as a proper reference despite rc=1 during array copying.
H A DReflectionClass_getProperties_001.phpt33 $rc = new ReflectionClass($class);
34 var_dump($rc->getProperties());
H A DReflectionClass_getMethods_001.phpt33 $rc = new ReflectionClass($class);
34 var_dump($rc->getMethods());
H A DReflectionMethod_getDocComment_basic.phpt58 $rc = new ReflectionClass($class);
59 $rms = $rc->getMethods();
H A DReflectionProperty_getDocComment_basic.phpt35 $rc = new ReflectionClass($class);
36 $rps = $rc->getProperties();
H A DReflectionClass_getInterfaces_003.phpt22 $rc = new ReflectionClass('C');
23 $a = $rc->getInterfaces();
/PHP-8.0/Zend/tests/type_declarations/
H A Dreturn_separation.phpt2 Return values are separated for references with rc=1
/PHP-8.0/ext/standard/tests/array/
H A Darray_merge_replace_recursive_refs.phpt2 array_merge/replace_recursive() should unwrap references with rc=1
H A Dbug79930.phpt11 // Create rc=1 reference.
/PHP-8.0/ext/mysqli/tests/
H A D012.phpt20 $rc = mysqli_query($link, "CREATE TABLE test_bind_result(c1 tinyint, c2 smallint,
25 if (!$rc)
H A D006.phpt21 $rc = mysqli_query($link,"CREATE TABLE test_bind_fetch(c1 int unsigned,
28 if (!$rc)
H A D007.phpt21 $rc = mysqli_query($link, "CREATE TABLE test_bind_fetch(c1 smallint unsigned,
28 if (!$rc)
H A D008.phpt21 $rc = mysqli_query($link, "CREATE TABLE test_bind_fetch(c1 tinyint,
28 if (!$rc)
H A D010.phpt23 $rc = mysqli_query($link, "CREATE TABLE test_bind_fetch(c1 float(3),
30 if (!$rc)
H A D013.phpt18 $rc = mysqli_query($link, "CREATE TABLE test_bind_result(c1 tinyint, c2 smallint,
23 if (!$rc)
/PHP-8.0/sapi/litespeed/
H A Dlsapi_main.c919 int rc = SUCCESS; in lsapi_activate_user_ini_basic_checks() local
936 rc = (*fn_next)(ctx, fn_next + 1); in lsapi_activate_user_ini_basic_checks()
939 return rc; in lsapi_activate_user_ini_basic_checks()
946 int rc = SUCCESS; in lsapi_activate_user_ini_mk_path() local
959 return rc; in lsapi_activate_user_ini_mk_path()
966 int rc = SUCCESS; in lsapi_activate_user_ini_mk_realpath() local
986 return rc; in lsapi_activate_user_ini_mk_realpath()
1030 int rc = SUCCESS; in lsapi_activate_user_ini_walk_down_the_path() local
1058 return rc; in lsapi_activate_user_ini_walk_down_the_path()
1064 int rc = SUCCESS; in lsapi_activate_user_ini_finally() local
[all …]
/PHP-8.0/ext/pcre/pcre2lib/
H A Dpcre2_study.c978 int rc; in set_start_bits() local
1124 rc = set_start_bits(re, tcode, utf, ucp, depthptr); in set_start_bits()
1125 if (rc == SSB_DONE) in set_start_bits()
1129 else if (rc == SSB_CONTINUE) in set_start_bits()
1134 else return rc; /* FAIL, UNKNOWN, or TOODEEP */ in set_start_bits()
1180 rc = set_start_bits(re, ++tcode, utf, ucp, depthptr); in set_start_bits()
1181 if (rc == SSB_FAIL || rc == SSB_UNKNOWN || rc == SSB_TOODEEP) return rc; in set_start_bits()
1691 int rc = set_start_bits(re, code, utf, ucp, &depth); in PRIV() local
1692 if (rc == SSB_UNKNOWN) return 1; in PRIV()
1702 if (rc == SSB_DONE) in PRIV()
/PHP-8.0/Zend/tests/named_params/
H A Dcall_user_func.phpt66 $rc = new ReflectionClass(Test::class);
67 $rc->newInstance('A', c: 'C');
68 $rc->newInstanceArgs(['A', 'c' => 'C']);
/PHP-8.0/Zend/
H A Dzend_types.h610 #define GC_SET_REFCOUNT(p, rc) zend_gc_set_refcount(&(p)->gc, rc) argument
613 #define GC_ADDREF_EX(p, rc) zend_gc_addref_ex(&(p)->gc, rc) argument
614 #define GC_DELREF_EX(p, rc) zend_gc_delref_ex(&(p)->gc, rc) argument
1104 #define Z_SET_REFCOUNT_P(pz, rc) zval_set_refcount_p(pz, rc) argument
1109 #define Z_SET_REFCOUNT(z, rc) Z_SET_REFCOUNT_P(&(z), rc) argument
1155 p->refcount = rc; in zend_gc_set_refcount()
1177 static zend_always_inline uint32_t zend_gc_addref_ex(zend_refcounted_h *p, uint32_t rc) { in zend_gc_addref_ex() argument
1179 p->refcount += rc; in zend_gc_addref_ex()
1185 p->refcount -= rc; in zend_gc_delref_ex()
1196 static zend_always_inline uint32_t zval_set_refcount_p(zval* pz, uint32_t rc) { in zval_set_refcount_p() argument
[all …]
/PHP-8.0/ext/intl/collator/
H A Dcollator_sort.c53 int rc = SUCCESS; in collator_regular_compare_function() local
114 rc = compare_function( result, norm1_p, norm2_p ); in collator_regular_compare_function()
129 return rc; in collator_regular_compare_function()
171 int rc = SUCCESS; in collator_icu_compare_function() local
188 return rc; in collator_icu_compare_function()

Completed in 73 milliseconds

1234567