/PHP-8.1/ext/reflection/tests/ |
H A D | ReflectionClass_toString_003.phpt | 22 $rc = new ReflectionClass($class); 23 echo $rc;
|
H A D | ReflectionClass_getDocComment_001.phpt | 52 $rc = new ReflectionClass($class); 53 var_dump($rc->getDocComment());
|
H A D | ReflectionClass_isInstance_basic.phpt | 21 $rc = new ReflectionClass($class); 25 var_dump($rc->isInstance($instance));
|
H A D | ReflectionClass_isIterateable_001.phpt | 33 $rc = new ReflectionClass($class); 35 var_dump($rc->isIterateable());
|
H A D | ReflectionClass_toString_002.phpt | 22 $rc = new ReflectionClass($class); 23 echo $rc;
|
H A D | ReflectionClass_getProperties_001.phpt | 33 $rc = new ReflectionClass($class); 34 var_dump($rc->getProperties());
|
H A D | ReflectionReference_bug78263.phpt | 7 // be treated as a proper reference despite rc=1 during array copying.
|
H A D | bug81457.phpt | 18 $rc = new ReflectionClass(testEnum::class);
|
H A D | ReflectionClass_getMethods_001.phpt | 33 $rc = new ReflectionClass($class); 34 var_dump($rc->getMethods());
|
H A D | ReflectionMethod_getDocComment_basic.phpt | 58 $rc = new ReflectionClass($class); 59 $rms = $rc->getMethods();
|
H A D | ReflectionProperty_getDocComment_basic.phpt | 35 $rc = new ReflectionClass($class); 36 $rps = $rc->getProperties();
|
/PHP-8.1/Zend/tests/ |
H A D | qm_assign_ref_unwrap_leak.phpt | 2 Leak in QM_ASSIGN when unwrapping references (rc=1)
|
H A D | arginfo_zpp_mismatch.phpt | 69 $rc = new ReflectionClass($class); 70 $obj = $rc->newInstanceWithoutConstructor();
|
H A D | arginfo_zpp_mismatch_strict.phpt | 71 $rc = new ReflectionClass($class); 72 $obj = $rc->newInstanceWithoutConstructor();
|
/PHP-8.1/Zend/tests/type_declarations/ |
H A D | return_separation.phpt | 2 Return values are separated for references with rc=1
|
/PHP-8.1/sapi/litespeed/ |
H A D | lsapi_main.c | 920 int rc = SUCCESS; in lsapi_activate_user_ini_basic_checks() local 937 rc = (*fn_next)(ctx, fn_next + 1); in lsapi_activate_user_ini_basic_checks() 940 return rc; in lsapi_activate_user_ini_basic_checks() 947 int rc = SUCCESS; in lsapi_activate_user_ini_mk_path() local 960 return rc; in lsapi_activate_user_ini_mk_path() 967 int rc = SUCCESS; in lsapi_activate_user_ini_mk_realpath() local 987 return rc; in lsapi_activate_user_ini_mk_realpath() 1031 int rc = SUCCESS; in lsapi_activate_user_ini_walk_down_the_path() local 1059 return rc; in lsapi_activate_user_ini_walk_down_the_path() 1065 int rc = SUCCESS; in lsapi_activate_user_ini_finally() local [all …]
|
/PHP-8.1/ext/pcre/pcre2lib/ |
H A D | pcre2_study.c | 978 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.1/ext/mysqli/tests/ |
H A D | 012.phpt | 21 $rc = mysqli_query($link, "CREATE TABLE test_bind_result(c1 tinyint, c2 smallint, 26 if (!$rc)
|
H A D | 006.phpt | 22 $rc = mysqli_query($link,"CREATE TABLE test_bind_fetch(c1 int unsigned, 29 if (!$rc)
|
H A D | 007.phpt | 22 $rc = mysqli_query($link, "CREATE TABLE test_bind_fetch(c1 smallint unsigned, 29 if (!$rc)
|
H A D | 008.phpt | 22 $rc = mysqli_query($link, "CREATE TABLE test_bind_fetch(c1 tinyint, 29 if (!$rc)
|
/PHP-8.1/ext/standard/tests/array/ |
H A D | array_merge_replace_recursive_refs.phpt | 2 array_merge/replace_recursive() should unwrap references with rc=1
|
H A D | bug79930.phpt | 11 // Create rc=1 reference.
|
/PHP-8.1/ext/standard/tests/general_functions/ |
H A D | debug_zval_dump_refs.phpt | 14 // rc=1 singleton ref remains
|
/PHP-8.1/Zend/tests/named_params/ |
H A D | call_user_func.phpt | 66 $rc = new ReflectionClass(Test::class); 67 $rc->newInstance('A', c: 'C'); 68 $rc->newInstanceArgs(['A', 'c' => 'C']);
|