Home
last modified time | relevance | path

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

1234567

/PHP-8.2/ext/standard/tests/directory/
H A DDirectoryClass_basic_001.phpt11 $rc = new ReflectionClass("Directory");
12 echo $rc;
/PHP-8.2/Zend/tests/array_unpack/
H A Dref1.phpt2 Array unpacking with element rc=1
/PHP-8.2/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 DReflectionClass_getProperties_001.phpt33 $rc = new ReflectionClass($class);
34 var_dump($rc->getProperties());
H A DReflectionReference_bug78263.phpt7 // be treated as a proper reference despite rc=1 during array copying.
H A Dbug81457.phpt18 $rc = new ReflectionClass(testEnum::class);
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();
/PHP-8.2/ext/reflection/tests/types/
H A Dunion_types.phpt43 $rc = new ReflectionClass(Test::class);
44 $rp = $rc->getProperty('prop');
53 $rp = $rc->getProperty('prop');
59 $rp = $rc->getProperty('prop');
/PHP-8.2/Zend/tests/
H A Dqm_assign_ref_unwrap_leak.phpt2 Leak in QM_ASSIGN when unwrapping references (rc=1)
H A Darginfo_zpp_mismatch.phpt69 $rc = new ReflectionClass($class);
70 $obj = $rc->newInstanceWithoutConstructor();
H A Darginfo_zpp_mismatch_strict.phpt71 $rc = new ReflectionClass($class);
72 $obj = $rc->newInstanceWithoutConstructor();
/PHP-8.2/Zend/tests/type_declarations/
H A Dreturn_separation.phpt2 Return values are separated for references with rc=1
/PHP-8.2/sapi/litespeed/
H A Dlsapi_main.c916 int rc = SUCCESS; in lsapi_activate_user_ini_basic_checks() local
933 rc = (*fn_next)(ctx, fn_next + 1); in lsapi_activate_user_ini_basic_checks()
936 return rc; in lsapi_activate_user_ini_basic_checks()
943 int rc = SUCCESS; in lsapi_activate_user_ini_mk_path() local
956 return rc; in lsapi_activate_user_ini_mk_path()
963 int rc = SUCCESS; in lsapi_activate_user_ini_mk_realpath() local
983 return rc; in lsapi_activate_user_ini_mk_realpath()
1027 int rc = SUCCESS; in lsapi_activate_user_ini_walk_down_the_path() local
1055 return rc; in lsapi_activate_user_ini_walk_down_the_path()
1061 int rc = SUCCESS; in lsapi_activate_user_ini_finally() local
[all …]
/PHP-8.2/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.2/ext/mysqli/tests/
H A D012.phpt21 $rc = mysqli_query($link, "CREATE TABLE test_bind_result(c1 tinyint, c2 smallint,
26 if (!$rc)
/PHP-8.2/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.2/ext/standard/tests/general_functions/
H A Ddebug_zval_dump_refs.phpt14 // rc=1 singleton ref remains
/PHP-8.2/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']);

Completed in 28 milliseconds

1234567