/PHP-5.5/ext/mysqlnd/ |
H A D | mysqlnd_ext_plugin.c | 123 PHPAPI void mysqlnd_conn_set_methods(struct st_mysqlnd_conn_methods *methods) in mysqlnd_conn_set_methods() argument 125 mysqlnd_conn_methods = methods; in mysqlnd_conn_set_methods() 141 mysqlnd_conn_data_methods = methods; in mysqlnd_conn_data_set_methods() 157 mysqlnd_result_set_methods(struct st_mysqlnd_res_methods * methods) in mysqlnd_result_set_methods() argument 159 MYSQLND_CLASS_METHOD_TABLE_NAME(mysqlnd_res) = *methods; in mysqlnd_result_set_methods() 175 mysqlnd_stmt_set_methods(struct st_mysqlnd_stmt_methods *methods) in mysqlnd_stmt_set_methods() argument 177 mysqlnd_stmt_methods = methods; in mysqlnd_stmt_set_methods() 193 mysqlnd_protocol_set_methods(struct st_mysqlnd_protocol_methods * methods) in mysqlnd_protocol_set_methods() argument 195 MYSQLND_CLASS_METHOD_TABLE_NAME(mysqlnd_protocol) = *methods; in mysqlnd_protocol_set_methods() 211 mysqlnd_net_set_methods(struct st_mysqlnd_net_methods * methods) in mysqlnd_net_set_methods() argument [all …]
|
H A D | mysqlnd_ext_plugin.h | 45 PHPAPI void mysqlnd_conn_set_methods(struct st_mysqlnd_conn_methods * methods); 48 PHPAPI void mysqlnd_conn_data_set_methods(struct st_mysqlnd_conn_data_methods * methods); 51 PHPAPI void mysqlnd_result_set_methods(struct st_mysqlnd_res_methods * methods); 54 PHPAPI void mysqlnd_stmt_set_methods(struct st_mysqlnd_stmt_methods * methods); 57 PHPAPI void mysqlnd_protocol_set_methods(struct st_mysqlnd_protocol_methods * methods); 60 PHPAPI void mysqlnd_net_set_methods(struct st_mysqlnd_net_methods * methods);
|
/PHP-5.5/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_interface.phpt | 38 $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-5.5/ext/reflection/tests/ |
H A D | ReflectionClass_getMethods_003.phpt | 24 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 D | ReflectionClass_toString_003.phpt | 2 …verify 'inherits', 'overwrites' and 'prototype' parts of method representation with private methods 40 - Static methods [0] { 64 - Static methods [0] { 88 - Static methods [0] { 109 - Static methods [0] {
|
H A D | ReflectionClass_toString_002.phpt | 40 - Static methods [0] { 64 - Static methods [0] { 88 - Static methods [0] { 112 - Static methods [0] {
|
H A D | traits002.phpt | 27 - Static methods [0] { 46 - Static methods [0] {
|
H A D | bug26695.phpt | 15 $methods = $class->getMethods(); 16 $params = $methods[0]->getParameters();
|
H A D | bug45571.phpt | 2 Bug #45571 (ReflectionClass::export() shows superclasses' private static methods.) 32 - Static methods [0] {
|
H A D | ReflectionClass_export_basic2.phpt | 26 - Static methods [0] { 46 - Static methods [0] {
|
H A D | bug37964.phpt | 2 Reflection Bug #37964 (Reflection shows private methods of parent class) 35 - Static methods [0] {
|
/PHP-5.5/ext/mysqli/tests/ |
H A D | mysqli_class_mysqli_driver_interface.phpt | 20 $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 D | mysqli_class_mysqli_stmt_interface.phpt | 22 $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 D | mysqli_class_mysqli_warning.phpt | 43 $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 D | mysqli_class_mysqli_result_interface.phpt | 26 $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-5.5/Zend/tests/ |
H A D | bug44414.phpt | 2 Bug #44414 (incomplete reporting about abstract methods) 15 …error: Class C contains 2 abstract methods and must therefore be declared abstract or implement th…
|
H A D | bug43323.phpt | 2 Bug #43323 (Wrong count abstract methods) 12 …ethod and must therefore be declared abstract or implement the remaining methods (bar::bar) in %sb…
|
/PHP-5.5/ext/standard/tests/directory/ |
H A D | DirectoryClass_error_001.phpt | 6 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:
|
/PHP-5.5/scripts/dev/generate-phpt/src/setup/preconditions/ |
H A D | gtIsValidMethod.php | 13 $methods = $class->getMethods(); 14 foreach($methods as $method) {
|
/PHP-5.5/scripts/dev/ |
H A D | search_underscores.php | 86 foreach($classes as $classname => &$methods) { 88 ksort($methods); 89 foreach($methods as $method) {
|
/PHP-5.5/ext/date/tests/ |
H A D | DateTimeZone_verify.phpt | 12 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-5.5/ext/pdo/ |
H A D | pdo_dbh.c | 127 if (dbh->methods->fetch_err) { in pdo_handle_error() 307 … if (pdbh->methods->check_liveness && FAILURE == (pdbh->methods->check_liveness)(pdbh TSRMLS_CC)) { in PHP_METHOD() 622 if (!dbh->methods->begin) { in PHP_METHOD() 845 if (!dbh->methods->set_attribute) { in pdo_dbh_attribute_set() 996 if (!dbh->methods->last_id) { in PHP_METHOD() 1062 if (dbh->methods->fetch_err) { in PHP_METHOD() 1178 if (!dbh->methods->quoter) { in PHP_METHOD() 1297 if (!dbh || !dbh->methods || !dbh->methods->get_driver_methods) { in pdo_hash_methods() 1527 if (dbh->methods) { in dbh_free() 1571 if (dbh->in_txn && dbh->methods && dbh->methods->rollback) { in pdo_dbh_free_storage() [all …]
|
/PHP-5.5/Zend/tests/traits/bugs/ |
H A D | abstract-methods01.phpt | 2 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-5.5/Zend/tests/traits/ |
H A D | methods_002.phpt | 2 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…
|
H A D | conflict003.phpt | 2 Two methods resulting in a conflict, should be reported both. 31 …Talk has not been applied, because there are collisions with other trait methods on Talker in %s o…
|