Home
last modified time | relevance | path

Searched refs:methods (Results 1 – 25 of 271) sorted by relevance

1234567891011

/PHP-8.0/ext/mysqlnd/
H A Dmysqlnd_ext_plugin.c197 MYSQLND_CLASS_METHOD_TABLE_NAME(mysqlnd_object_factory) = *methods; in _mysqlnd_object_factory_set_methods()
214 mysqlnd_conn_methods = methods; in _mysqlnd_conn_set_methods()
231 mysqlnd_conn_data_methods = methods; in _mysqlnd_conn_data_set_methods()
249 MYSQLND_CLASS_METHOD_TABLE_NAME(mysqlnd_res) = *methods; in _mysqlnd_result_set_methods()
267 MYSQLND_CLASS_METHOD_TABLE_NAME(mysqlnd_result_unbuffered) = *methods; in _mysqlnd_result_unbuffered_set_methods()
285 MYSQLND_CLASS_METHOD_TABLE_NAME(mysqlnd_result_buffered) = *methods; in _mysqlnd_result_buffered_set_methods()
303 mysqlnd_stmt_methods = methods; in _mysqlnd_stmt_set_methods()
355 _mysqlnd_vio_set_methods(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_vio) * methods) in _mysqlnd_vio_set_methods() argument
357 MYSQLND_CLASS_METHOD_TABLE_NAME(mysqlnd_vio) = *methods; in _mysqlnd_vio_set_methods()
375 MYSQLND_CLASS_METHOD_TABLE_NAME(mysqlnd_command) = *methods; in _mysqlnd_command_factory_set()
[all …]
H A Dmysqlnd_ext_plugin.h55 void (*set)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_object_factory) *methods);
61 void (*set)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_conn) *methods);
67 void (*set)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_conn_data) *methods);
73 void (*set)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_res) *methods);
79 void (*set)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_result_unbuffered) *methods);
85 void (*set)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_result_buffered) *methods);
91 void (*set)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_stmt) * methods);
103 void (*set)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_protocol_packet_frame_codec) * methods);
109 void (*set)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_vio) * methods);
115 void (*set)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_error_info) * methods);
[all …]
/PHP-8.0/ext/json/
H A Djson_parser.y91 if (parser->methods.object_start && FAILURE == parser->methods.object_start(parser)) {
99 if (parser->methods.object_end && FAILURE == parser->methods.object_end(parser, &$$)) {
120 parser->methods.object_create(parser, &$$);
129 parser->methods.object_create(parser, &$$);
147 if (parser->methods.array_start && FAILURE == parser->methods.array_start(parser)) {
155 if (parser->methods.array_end && FAILURE == parser->methods.array_end(parser, &$$)) {
173 if (parser->methods.array_create == php_json_parser_array_create) {
176 parser->methods.array_create(parser, &$$);
185 parser->methods.array_create(parser, &$$);
186 parser->methods.array_append(parser, &$$, &$1);
[all …]
/PHP-8.0/ext/pdo_mysql/tests/
H A Dpdo_mysql_interface.phpt36 $methods = get_class_methods($classname);
37 foreach ($methods as $k => $method) {
40 unset($methods[$k]);
44 unset($methods[$k]);
48 printf("Dumping missing class methods\n");
51 if (!empty($methods)) {
52 printf("Found more methods than expected, dumping list\n");
53 var_dump($methods);
/PHP-8.0/ext/reflection/tests/
H A DReflectionClass_getMethods_003.phpt24 echo "No methods:";
27 echo "Public methods:";
30 echo "Private methods:";
33 echo "Public or static methods:";
36 echo "Private or static methods:";
42 No methods:array(0) {
44 Public methods:array(4) {
74 Private methods:array(4) {
104 Public or static methods:array(6) {
148 Private or static methods:array(6) {
H A DReflectionClass_toString_003.phpt2 …verify 'inherits', 'overwrites' and 'prototype' parts of method representation with private methods
38 - Static methods [0] {
62 - Static methods [0] {
86 - Static methods [0] {
107 - Static methods [0] {
H A DReflectionClass_toString_002.phpt38 - Static methods [0] {
62 - Static methods [0] {
86 - Static methods [0] {
110 - Static methods [0] {
H A Dtraits002.phpt27 - Static methods [0] {
46 - Static methods [0] {
H A Dbug26695.phpt15 $methods = $class->getMethods();
16 $params = $methods[0]->getParameters();
H A Dbug45571.phpt2 Bug #45571 (ReflectionClass::__toString() shows superclasses' private static methods.)
32 - Static methods [0] {
H A Dbug37964.phpt2 Reflection Bug #37964 (Reflection shows private methods of parent class)
35 - Static methods [0] {
/PHP-8.0/ext/zip/tests/
H A Dcompression_methods.phpt2 Recognition of compression methods
4 This test is supposed to cover all compression methods that are recognized by
5 libzip, but for now only 6 methods are available in compression_methods.zip.
13 $methods = array(
23 foreach ($methods as $filename => $method) {
H A Doo_supported.phpt11 $methods = [
17 foreach($methods as $method => $name) {
23 $methods = [
30 foreach($methods as $method => $name) {
/PHP-8.0/ext/mysqli/tests/
H A Dmysqli_class_mysqli_driver_interface.phpt19 $methods = get_class_methods($driver);
22 foreach ($methods as $k => $method) {
25 unset($methods[$k]);
29 printf("Dumping list of missing methods.\n");
32 if (!empty($methods)) {
33 printf("Dumping list of unexpected methods.\n");
34 var_dump($methods);
36 if (empty($expected_methods) && empty($methods))
H A Dmysqli_class_mysqli_stmt_interface.phpt21 $methods = get_class_methods($stmt);
48 foreach ($methods as $k => $method) {
50 unset($methods[$k]);
56 unset($methods[$k]);
59 if (!empty($methods)) {
60 printf("More methods found than indicated. Dumping list of unexpected methods.\n");
61 var_dump($methods);
64 printf("Some methods are missing. Dumping list of missing methods.\n");
67 if (empty($methods) && empty($expected_methods))
H A Dmysqli_class_mysqli_result_interface.phpt25 $methods = get_class_methods($mysqli_result);
45 foreach ($methods as $k => $method) {
48 unset($methods[$k]);
53 unset($methods[$k]);
58 printf("Dumping list of missing methods.\n");
61 if (!empty($methods)) {
62 printf("Dumping list of unexpected methods.\n");
63 var_dump($methods);
65 if (empty($expected_methods) && empty($methods))
/PHP-8.0/Zend/tests/
H A Dbug44414.phpt2 Bug #44414 (incomplete reporting about abstract methods)
15 …error: Class C contains 2 abstract methods and must therefore be declared abstract or implement th…
/PHP-8.0/ext/intl/tests/
H A Dlocale_bug74439.phpt2 Bug #74439 Wrong reflection on the Locale methods
8 $methods = [
29 foreach ($methods as $method) {
/PHP-8.0/ext/standard/tests/directory/
H A DDirectoryClass_error_001.phpt6 echo "\n--> Try all methods with bad handle:\n";
25 echo "\n--> Try all methods with no handle:\n";
47 --> Try all methods with bad handle:
52 --> Try all methods with no handle:
H A DDirectoryClass_error_001-mb.phpt10 echo "\n--> Try all methods with bad handle:\n";
29 echo "\n--> Try all methods with no handle:\n";
57 --> Try all methods with bad handle:
62 --> Try all methods with no handle:
/PHP-8.0/scripts/dev/
H A Dsearch_underscores.php84 foreach($classes as $classname => &$methods) {
86 ksort($methods);
87 foreach($methods as $method) {
/PHP-8.0/ext/pdo/
H A Dpdo_dbh.c150 if (dbh->methods->fetch_err) { in pdo_handle_error()
327 if (pdbh->methods->check_liveness && FAILURE == (pdbh->methods->check_liveness)(pdbh)) { in PHP_METHOD()
605 if (!dbh->methods->begin) { in PHP_METHOD()
960 if (!dbh->methods->last_id) { in PHP_METHOD()
1027 if (dbh->methods->fetch_err) { in PHP_METHOD()
1148 if (!dbh->methods->quoter) { in PHP_METHOD()
1205 if (!dbh || !dbh->methods || !dbh->methods->get_driver_methods) { in pdo_hash_methods()
1431 if (dbh->methods) { in dbh_free()
1432 dbh->methods->closer(dbh); in dbh_free()
1467 dbh->methods->rollback(dbh); in pdo_dbh_free_storage()
[all …]
/PHP-8.0/Zend/tests/traits/bugs/
H A Dabstract-methods01.phpt2 Abstract Trait Methods should behave like common abstract methods.
19 …ethod and must therefore be declared abstract or implement the remaining methods (%s) in %s on lin…
/PHP-8.0/tests/classes/
H A Dinheritance_007.phpt2 Ensure private methods with the same name are not checked for inheritance rules - final
41 Warning: Private methods cannot be final as they are never overridden by other classes %s
43 Warning: Private methods cannot be final as they are never overridden by other classes %s
H A Dabstract_static.phpt2 ZE2 A static abstract methods
34 …ethod and must therefore be declared abstract or implement the remaining methods (fail::func) in %…

Completed in 48 milliseconds

1234567891011