Home
last modified time | relevance | path

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

12345678910>>...13

/PHP-7.2/ext/mysqlnd/
H A Dmysqlnd_ext_plugin.c199 MYSQLND_CLASS_METHOD_TABLE_NAME(mysqlnd_object_factory) = *methods; in _mysqlnd_object_factory_set_methods()
214 _mysqlnd_conn_set_methods(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_conn) *methods) in _mysqlnd_conn_set_methods() argument
216 mysqlnd_conn_methods = methods; in _mysqlnd_conn_set_methods()
233 mysqlnd_conn_data_methods = methods; in _mysqlnd_conn_data_set_methods()
251 MYSQLND_CLASS_METHOD_TABLE_NAME(mysqlnd_res) = *methods; in _mysqlnd_result_set_methods()
269 MYSQLND_CLASS_METHOD_TABLE_NAME(mysqlnd_result_unbuffered) = *methods; in _mysqlnd_result_unbuffered_set_methods()
287 MYSQLND_CLASS_METHOD_TABLE_NAME(mysqlnd_result_buffered) = *methods; in _mysqlnd_result_buffered_set_methods()
305 mysqlnd_stmt_methods = methods; in _mysqlnd_stmt_set_methods()
357 _mysqlnd_vio_set_methods(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_vio) * methods) in _mysqlnd_vio_set_methods() argument
359 MYSQLND_CLASS_METHOD_TABLE_NAME(mysqlnd_vio) = *methods; in _mysqlnd_vio_set_methods()
[all …]
H A Dmysqlnd_ext_plugin.h57 void (*set)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_object_factory) *methods);
63 void (*set)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_conn) *methods);
69 void (*set)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_conn_data) *methods);
75 void (*set)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_res) *methods);
81 void (*set)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_result_unbuffered) *methods);
87 void (*set)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_result_buffered) *methods);
93 void (*set)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_stmt) * methods);
99 void (*set)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_protocol_payload_decoder_factory) *methods);
105 void (*set)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_protocol_packet_frame_codec) * methods);
111 void (*set)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_vio) * methods);
[all …]
/PHP-7.2/ext/pdo_mysql/tests/
H A Dpdo_mysql_interface.phpt38 $methods = get_class_methods($classname);
39 foreach ($methods as $k => $method) {
42 unset($methods[$k]);
46 unset($methods[$k]);
50 printf("Dumping missing class methods\n");
53 if (!empty($methods)) {
54 printf("Found more methods than expected, dumping list\n");
55 var_dump($methods);
/PHP-7.2/ext/json/
H A Djson_parser.y105 if (parser->methods.object_start && FAILURE == parser->methods.object_start(parser)) {
113 if (parser->methods.object_end && FAILURE == parser->methods.object_end(parser, &$$)) {
131 parser->methods.object_create(parser, &$$);
139 parser->methods.object_create(parser, &$$);
173 if (parser->methods.array_start && FAILURE == parser->methods.array_start(parser)) {
181 if (parser->methods.array_end && FAILURE == parser->methods.array_end(parser, &$$)) {
199 parser->methods.array_create(parser, &$$);
207 parser->methods.array_create(parser, &$$);
208 parser->methods.array_append(parser, &$$, &$1);
212 parser->methods.array_append(parser, &$1, &$3);
[all …]
/PHP-7.2/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 Dbug26695.phpt15 $methods = $class->getMethods();
16 $params = $methods[0]->getParameters();
H A Dtraits002.phpt27 - Static methods [0] {
46 - Static methods [0] {
H A Dbug45571.phpt2 Bug #45571 (ReflectionClass::export() shows superclasses' private static methods.)
32 - Static methods [0] {
/PHP-7.2/ext/mysqli/tests/
H A Dmysqli_class_mysqli_driver_interface.phpt20 $methods = get_class_methods($driver);
23 if (!$IS_MYSQLND && (isset($methods['embedded_server_start']))) {
32 foreach ($methods as $k => $method) {
35 unset($methods[$k]);
39 printf("Dumping list of missing methods.\n");
42 if (!empty($methods)) {
43 printf("Dumping list of unexpected methods.\n");
44 var_dump($methods);
46 if (empty($expected_methods) && empty($methods))
H A Dmysqli_class_mysqli_stmt_interface.phpt22 $methods = get_class_methods($stmt);
49 foreach ($methods as $k => $method) {
51 unset($methods[$k]);
57 unset($methods[$k]);
60 if (!empty($methods)) {
61 printf("More methods found than indicated. Dumping list of unexpected methods.\n");
62 var_dump($methods);
65 printf("Some methods are missing. Dumping list of missing methods.\n");
68 if (empty($methods) && empty($expected_methods))
H A Dmysqli_class_mysqli_warning.phpt43 $methods = get_class_methods($warning);
48 foreach ($methods as $k => $method) {
50 unset($methods[$k]);
54 if (!empty($methods)) {
55 printf("Dumping list of unexpected methods.\n");
56 var_dump($methods);
59 printf("Dumping list of missing methods.\n");
62 if (empty($methods) && empty($expected_methods))
H A Dmysqli_class_mysqli_result_interface.phpt26 $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-7.2/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) {
/PHP-7.2/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-7.2/ext/standard/tests/directory/
H A DDirectoryClass_error_001.phpt6 echo "\n--> Try all methods with bad handle:\n";
13 echo "\n--> Try all methods with no handle:\n";
20 echo "\n--> Try all methods with wrong number of args:\n";
28 --> Try all methods with bad handle:
39 --> Try all methods with no handle:
50 --> Try all methods with wrong number of args:
H A DDirectoryClass_error_001-mb.phpt10 echo "\n--> Try all methods with bad handle:\n";
17 echo "\n--> Try all methods with no handle:\n";
24 echo "\n--> Try all methods with wrong number of args:\n";
38 --> Try all methods with bad handle:
49 --> Try all methods with no handle:
60 --> Try all methods with wrong number of args:
/PHP-7.2/ext/intl/tests/
H A Dlocale_bug74439.phpt2 Bug #74439 Wrong reflection on the Locale methods
8 $methods = [
29 foreach ($methods as $method) {
/PHP-7.2/scripts/dev/generate-phpt/src/setup/preconditions/
H A DgtIsValidMethod.php13 $methods = $class->getMethods();
14 foreach($methods as $method) {
/PHP-7.2/scripts/dev/
H A Dsearch_underscores.php86 foreach($classes as $classname => &$methods) {
88 ksort($methods);
89 foreach($methods as $method) {
/PHP-7.2/ext/pdo/
H A Dpdo_dbh.c125 if (dbh->methods->fetch_err) { in pdo_handle_error()
300 if (pdbh->methods->check_liveness && FAILURE == (pdbh->methods->check_liveness)(pdbh)) { in PHP_METHOD()
584 if (!dbh->methods->begin) { in PHP_METHOD()
958 if (!dbh->methods->last_id) { in PHP_METHOD()
1153 if (!dbh->methods->quoter) { in PHP_METHOD()
1290 if (!dbh || !dbh->methods || !dbh->methods->get_driver_methods) { in pdo_hash_methods()
1515 if (dbh->methods) { in dbh_free()
1516 dbh->methods->closer(dbh); in dbh_free()
1550 if (dbh->in_txn && dbh->methods && dbh->methods->rollback) { in pdo_dbh_free_storage()
1551 dbh->methods->rollback(dbh); in pdo_dbh_free_storage()
[all …]
/PHP-7.2/ext/date/tests/
H A DDateTimeZone_verify.phpt12 echo "..and get names of all its methods\n";
13 $methods = $class->getMethods();
14 var_dump($methods);
28 ..and get names of all its methods
/PHP-7.2/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-7.2/Zend/tests/traits/
H A Dmethods_002.phpt2 Testing collision with magic methods
28 …lone has not been applied, because there are collisions with other trait methods on bar in %s on l…

Completed in 49 milliseconds

12345678910>>...13