| /PHP_5_5/ext/date/tests/ |
| H A D | DateTime_data-absolute.inc | 4 * Note: test names match method names in a set of PHPUnit tests
|
| H A D | DateTime_data-dates.inc | 4 * Note: test names match method names in a set of PHPUnit tests
|
| H A D | DateTime_data-fall-type2-type2.inc | 4 * Note: test names match method names in a set of PHPUnit tests
|
| H A D | DateTime_data-fall-type2-type3.inc | 4 * Note: test names match method names in a set of PHPUnit tests
|
| H A D | DateTime_data-fall-type3-type2.inc | 4 * Note: test names match method names in a set of PHPUnit tests
|
| H A D | DateTime_data-fall-type3-type3.inc | 4 * Note: test names match method names in a set of PHPUnit tests
|
| H A D | DateTime_data-february.inc | 4 * Note: test names match method names in a set of PHPUnit tests
|
| H A D | DateTime_data-massive.inc | 4 * Note: test names match method names in a set of PHPUnit tests
|
| H A D | DateTime_data-spring-type3-type3.inc | 4 * Note: test names match method names in a set of PHPUnit tests
|
| /PHP_5_5/ext/mysqli/tests/ |
| H A D | reflection_tools.inc | 18 if ($method = $class->getConstructor()) 19 inspectMethod($method); 23 foreach ($methods as $method) 24 $tmp[$method->getName()] = $method; 27 foreach ($tmp as $method) 28 inspectMethod($method); 74 function inspectMethod(&$method) { 76 printf("\nInspecting method '%s'\n", $method [all...] |
| /PHP_5_5/ext/soap/interop/ |
| H A D | client_round2.php | 34 echo "<select name='method'>\n"; 38 $method = $x->test_name; variable 39 if ($method != $prev_method) { 40 $prev_method = $method; 42 if ($sel_method == $method) $selected = ' SELECTED'; 43 echo "<option value='$method'$selected>$method</option>\n"; 49 function endpointTestForm($test, $endpoint, $method, $paramType, $useWSDL) 54 echo "Select endpoint and method to run:<br>\n"; 55 echo "<form action='$PHP_SELF' method [all...] |
| /PHP_5_5/ext/xmlrpc/libxmlrpc/ |
| H A D | xmlrpc_introspection.c | 100 dm->method(server, userData); 110 static inline void describe_method(XMLRPC_SERVER server, XMLRPC_VALUE vector, const char* method) { argument 111 if(method) { 112 server_method* sm = find_method(server, method); 191 const char* method = XMLRPC_GetValueString(XMLRPC_VectorRewind(XMLRPC_RequestGetData(input))); local 197 if(method) { 198 server_method* sm = find_method(server, method); 250 const char* method = XMLRPC_GetValueString(XMLRPC_VectorRewind(XMLRPC_RequestGetData(input))); local 256 if(method) { 257 server_method* sm = find_method(server, method); [all...] |
| H A D | xmlrpc_introspection_private.h | 84 XMLRPC_IntrospectionCallback method; member in struct:_doc_method
|
| H A D | xmlrpc_private.h | 115 simplestring methodName; /* name of method being called */ 152 XMLRPC_Callback method; member in struct:_server_method
|
| /PHP_5_5/sapi/cli/ |
| H A D | php_http_parser.c | 413 parser->method = PHP_HTTP_HEAD; 578 parser->method = (enum php_http_method) 0; 581 case 'C': parser->method = PHP_HTTP_CONNECT; /* or COPY, CHECKOUT */ break; 582 case 'D': parser->method = PHP_HTTP_DELETE; break; 583 case 'G': parser->method = PHP_HTTP_GET; break; 584 case 'H': parser->method = PHP_HTTP_HEAD; break; 585 case 'L': parser->method = PHP_HTTP_LOCK; break; 586 case 'M': parser->method = PHP_HTTP_MKCOL; /* or MOVE, MKACTIVITY, MERGE, M-SEARCH */ break; 587 case 'N': parser->method = PHP_HTTP_NOTIFY; break; 588 case 'O': parser->method [all...] |
| /PHP_5_5/scripts/dev/generate-phpt/src/ |
| H A D | generate-phpt.php | 47 $method = new gtMethod($options->getOption('c'), $options->getOption('m')); variable 49 $method->setArgumentNames(); 50 $method->setArgumentLists(); 51 $method->setInitialisationStatements(); 53 $method->setConstructorArgumentNames(); 54 $method->setConstructorInitStatements(); 55 $method->setConstructorArgumentList(); 69 $testCase = gtBasicTestCase::getInstance($optionalSections, 'method'); 70 $testCase->setMethod($method); 82 $testCase = gtErrorTestCase::getInstance($optionalSections, 'method'); [all...] |
| /PHP_5_5/scripts/dev/generate-phpt/src/setup/preconditions/ |
| H A D | gtIsValidMethod.php | 4 * Check that the method name is valid 14 foreach($methods as $method) { 15 if($clo->getOption('m') == $method->getName()) {
|
| /PHP_5_5/scripts/dev/generate-phpt/src/testcase/ |
| H A D | gtBasicTestCaseMethod.php | 13 * Set the method 15 * @param gtMethod $method 17 public function setMethod($method) { 18 $this->subject = $method; 37 $this->testCase[] = "Test class ".$this->subject->getClassName()." method ".$this->subject->getName()."() by calling it with its expected arguments";
|
| H A D | gtErrorTestCaseMethod.php | 4 * Error test case for a PHP method 12 private $method; variable 15 * Set the method name 17 * @param string $method 19 public function setMethod($method) { 20 $this->subject = $method; 43 $this->testCase[] = "Test class ".$this->subject->getClassName()." method ".$this->subject->getName()."() by calling it more than or less than its expected arguments"; 48 // Construct the argument list to pass to the method being tested
|
| H A D | gtVariationContainerMethod.php | 3 * Container for all possible variation test cases for a method 7 protected $method; variable 16 * Sets the method to be tested 18 * @param gtMethod $method 20 public function setMethod(gtMethod $method) { 21 $this->method = $method; variable 31 $numberOfArguments = count($this->method->getMandatoryArgumentNames()) + count($this->method->getOptionalArgumentNames()); 37 $testCase = gtVariationTestCase::getInstance($this->optionalSections, 'method'); [all...] |
| H A D | gtVariationTestCaseMethod.php | 4 * Class for variation tests for a PHP method 20 * @param gtMethod $method 24 public function setUp(gtMethod $method, $argumentNumber, $variationData) { 25 $this->subject = $method; 50 $this->testCase[] = "Test class ".$this->subject->getClassName()." method ".$this->subject->getName()."() by substituting argument ".$this->argumentNumber." with ".$this->variationData." values."; 55 // Construct the argument list to pass to the method being tested
|
| /PHP_5_5/scripts/dev/ |
| H A D | search_underscores.php | 22 /* This script lists extension-, class- and method names that contain any 57 foreach(get_class_methods($c) as $method) { 59 if (strpos(substr($method, substr($method, 0, 2) != "__" ? 0 : 2), "_") !== false) { 61 $extensions[$ext][$c][] = $method; 89 foreach($methods as $method) { 90 echo " Method: $method\n";
|
| /PHP_5_5/ext/calendar/ |
| H A D | easter.c | 34 long method = CAL_EASTER_DEFAULT; local 50 "|ll", &year, &method) == FAILURE) { 61 if ((year <= 1582 && method != CAL_EASTER_ALWAYS_GREGORIAN) || 62 (year >= 1583 && year <= 1752 && method != CAL_EASTER_ROMAN && method != CAL_EASTER_ALWAYS_GREGORIAN) || 63 method == CAL_EASTER_ALWAYS_JULIAN) { /* JULIAN CALENDAR */ 132 /* {{{ proto int easter_days([int year, [int method]])
|
| /PHP_5_5/sapi/apache_hooks/ |
| H A D | sapi_apache.c | 95 zval *method; local 99 ALLOC_ZVAL(method); 100 ZVAL_STRING(method, tmp +2, 1); 102 call_user_function_ex(EG(function_table), &class, method, ret, 0, NULL, 0, NULL TSRMLS_CC); local 104 zval_dtor(method); 108 /* not a class::method */
|
| /PHP_5_5/ext/openssl/ |
| H A D | xp_ssl.c | 57 php_stream_xport_crypt_method_t method; member in struct:_php_openssl_netstream_data_t 312 SSL_METHOD *method; local 324 /* need to do slightly different things, based on client/server method, 325 * so lets remember which method was selected */ 327 switch (cparam->inputs.method) { 330 method = SSLv23_client_method(); 338 method = SSLv2_client_method(); 343 method = SSLv3_client_method(); 347 method = TLSv1_client_method(); 351 method [all...] |