Home
last modified time | relevance | path

Searched refs:rc (Results 76 – 100 of 170) sorted by relevance

1234567

/PHP-8.2/ext/reflection/tests/internal_parameter_default_value/
H A Dcheck_all.phpt24 $rc = new ReflectionClass($class);
25 foreach ($rc->getMethods() as $method) {
/PHP-8.2/ext/mysqli/tests/
H A D002.phpt20 $rc = mysqli_query($link,"CREATE TABLE test_fetch_null(col1 tinyint, col2 smallint,
28 if (!$rc)
31 …$rc = mysqli_query($link, "INSERT INTO test_fetch_null(col1,col10, col11) VALUES(1,'foo1', 1000),(…
32 if (!$rc)
H A D020.phpt21 $rc = @mysqli_query($link,"CREATE TABLE test_bind_result(
30 if (!$rc)
31 $rc = mysqli_query($link,"CREATE TABLE test_bind_result(
/PHP-8.2/ext/intl/tests/
H A Dcollator_get_error_code.phpt16 function check_rc( $rc, $expected )
18 return ( $rc === $expected ? "ok" : "failed" ) . "\n";
H A Dcollator_get_locale2.phpt30 $rc = ut_coll_get_locale( $coll, $locale );
35 dump( $rc ) );
H A Dbug62915-2.phpt26 $rc = new ReflectionClass($subclass);
27 $obj = $rc->newInstanceArgs($subclass::$ARGS);
/PHP-8.2/ext/reflection/tests/
H A DReflectionClass_newInstanceArgs_002.phpt13 $rc = new ReflectionClass('A');
14 $a = $rc->newInstanceArgs('x');
H A DReflectionClass_getInterfaces_002.phpt16 $rc = new ReflectionClass('I7');
17 $interfaces = $rc->getInterfaces();
H A DReflectionFunction_isGenerator_basic.phpt41 $rc = new ReflectionClass('Foo');
42 foreach($rc->getMethods() as $m) {
H A DReflectionClass_getConstants_basic.phpt21 $rc = new ReflectionClass($class);
22 var_dump($rc->getConstants());
H A DReflectionClass_isSubclassOf_error2.phpt23 $rc = new ReflectionClass($class);
24 var_export($rc->isSubclassOf($base));
H A DReflectionClass_getMethod_001.phpt33 $rc = new ReflectionClass($class);
35 var_dump($rc->getMethod("f"));
37 var_dump($rc->getMethod("s"));
39 var_dump($rc->getMethod("F"));
42 var_dump($rc->getMethod("doesNotExist"));
H A DReflectionClass_getProperty_001.phpt33 $rc = new ReflectionClass($class);
36 var_dump($rc->getProperty("s"));
42 var_dump($rc->getProperty("a"));
48 var_dump($rc->getProperty("A"));
54 var_dump($rc->getProperty("doesNotExist"));
H A DReflectionObject_getConstants_basic.phpt21 $rc = new ReflectionObject(new $class);
22 var_dump($rc->getConstants());
H A DReflectionObject_getConstructor_basic.phpt38 $rc = new ReflectionObject(new $class);
39 $rm = $rc->getConstructor();
/PHP-8.2/Zend/tests/type_declarations/
H A Dcallable_002.phpt19 $rc = new ReflectionFunction($closure);
20 var_dump($rc->getParameters()[0]->isCallable());
/PHP-8.2/ext/reflection/tests/types/
H A Dintersection_types.phpt24 $rc = new ReflectionClass(Test::class);
25 $rp = $rc->getProperty('prop');
37 $rp = $rc->getProperty('prop');
H A Ddnf_types_with_null.phpt28 $rc = new ReflectionClass(Test::class);
29 $rp = $rc->getProperty('prop');
41 $rp = $rc->getProperty('prop');
H A Ddnf_types.phpt28 $rc = new ReflectionClass(Test::class);
29 $rp = $rc->getProperty('prop');
41 $rp = $rc->getProperty('prop');
/PHP-8.2/ext/date/lib/
H A Dastro.c225 int rc = 0; /* Return cde from function - usually 0 */ in timelib_astro_rise_set_altitude() local
270 rc = -1; in timelib_astro_rise_set_altitude()
275 rc = +1; in timelib_astro_rise_set_altitude()
296 return rc; in timelib_astro_rise_set_altitude()
/PHP-8.2/ext/standard/tests/strings/
H A Dbug72434.phpt12 // Increment the reference counter by 1 -> rc is 0
14 // Increment the reference counter by 1 again -> rc is 1
/PHP-8.2/sapi/cli/tests/
H A D005.phpt12 var_dump(`"$php" -n --rc unknown`);
13 var_dump(`"$php" -n --rc stdclass`);
14 var_dump(`"$php" -n --rc exception`);
/PHP-8.2/ext/mysqli/
H A Dmysqli_api.c41 my_ulonglong rc; in PHP_FUNCTION() local
186 zend_ulong rc; in PHP_FUNCTION() local
202 RETURN_BOOL(!rc); in PHP_FUNCTION()
213 zend_ulong rc; in PHP_FUNCTION() local
223 if (rc) { in PHP_FUNCTION()
1028 my_ulonglong rc; in PHP_FUNCTION() local
1282 zend_long rc; in PHP_FUNCTION() local
1464 my_ulonglong rc; in PHP_FUNCTION() local
1555 my_ulonglong rc; in PHP_FUNCTION() local
1606 my_ulonglong rc; in PHP_FUNCTION() local
[all …]
/PHP-8.2/Zend/tests/
H A Dassign_dim_ref_free.phpt2 Assigning rc=1 reference to next dim
/PHP-8.2/sapi/cli/
H A Dps_title.h32 extern const char* ps_title_errno(int rc);

Completed in 43 milliseconds

1234567