| /PHP_TRUNK/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_TRUNK/ext/xmlrpc/libxmlrpc/ |
| H A D | xml_to_dandarpc.c | 309 xml_element* method = xml_elem_new(); local 310 method->name = strdup(ELEM_METHODNAME); 311 simplestring_add(&method->text, pStr); 312 Q_PushTail(&wrapper->children, method);
|
| H A D | xml_to_xmlrpc.c | 395 xml_element* method = xml_elem_new(); local 396 method->name = strdup(ELEM_METHODNAME); 397 simplestring_add(&method->text, pStr); 398 Q_PushTail(&wrapper->children, method);
|
| 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_TRUNK/sapi/cli/ |
| H A D | php_http_parser.h | 129 unsigned char method; /* requests only */ member in struct:php_http_parser 174 /* Returns a string version of the HTTP method. */
|
| /PHP_TRUNK/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_TRUNK/scripts/dev/generate-phpt/src/testcase/ |
| 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...] |
| /PHP_TRUNK/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_TRUNK/ext/com_dotnet/ |
| H A D | com_handlers.c | 209 /* TODO: distinguish between property and method! */ 345 /* save this method in the cache */ 367 static int com_call_method(const char *method, INTERNAL_FUNCTION_PARAMETERS) argument 390 if (SUCCESS == php_com_do_invoke_byref(obj, (char*)method, -1, DISPATCH_METHOD|DISPATCH_PROPERTYGET, &v, nargs, args TSRMLS_CC)) {
|
| H A D | com_saproxy.c | 330 static int saproxy_call_method(const char *method, INTERNAL_FUNCTION_PARAMETERS) argument
|
| /PHP_TRUNK/ext/xml/ |
| H A D | xml.c | 487 /* IS_ARRAY might indicate that we're using array($obj, 'method') syntax */ 533 zval **method; local 539 zend_hash_index_find(Z_ARRVAL_P(handler), 1, (void **) &method) == SUCCESS && 541 Z_TYPE_PP(method) == IS_STRING) { 542 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to call handler %s::%s()", Z_OBJCE_PP(obj)->name, Z_STRVAL_PP(method));
|
| /PHP_TRUNK/main/streams/ |
| H A D | php_stream_transport.h | 191 php_stream_xport_crypt_method_t method; member in struct:_php_stream_xport_crypto_param::__anon300
|
| /PHP_TRUNK/sapi/apache_hooks/ |
| H A D | php_apache.c | 398 /* {{{ proto string ApacheRequest::method() 402 apache_request_read_string_slot(offsetof(request_rec, method), INTERNAL_FUNCTION_PARAM_PASSTHRU); 1203 /* {{{ proto object apache_request_sub_req_method_uri(string method, string uri) 1210 char *file, *method; local 1214 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &method, &method_len, &file, &file_len) == FAILURE) { 1220 sub_r = ap_sub_req_method_uri(method, file, r); 1302 PHP_FALIAS(method, apache_request_method, NULL) 1858 if (rr->method) { 1859 add_property_string(return_value,"method", (char *)rr->method, [all...] |
| 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_TRUNK/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...] |
| /PHP_TRUNK/ext/standard/ |
| H A D | incomplete_class.c | 26 "The script tried to execute a method or " \ 95 static union _zend_function *incomplete_class_get_method(zval **object, char *method, int method_len, const zend_literal *key TSRMLS_DC) /* {{{ */ argument
|
| /PHP_TRUNK/ext/intl/breakiterator/ |
| H A D | breakiterator_iterators.cpp | 254 char *method, int method_len, const zend_literal *key TSRMLS_DC) 264 method, method_len); local 279 method, method_len, key TSRMLS_CC); 285 method, method_len, key TSRMLS_CC); 253 IntlPartsIterator_get_method(zval **object_ptr, char *method, int method_len, const zend_literal *key TSRMLS_DC) argument
|
| /PHP_TRUNK/ext/pdo/ |
| H A D | pdo_stmt.c | 2288 /* not a pre-defined method, nor a user-defined method; check 2722 static int row_call_method(const char *method, INTERNAL_FUNCTION_PARAMETERS) argument
|
| /PHP_TRUNK/Zend/ |
| H A D | zend_language_parser.y | 656 ';' /* abstract method */ { Z_LVAL($$.u.constant) = ZEND_ACC_ABSTRACT; } 1039 | method '[' dim_offset ']' { $1.EA = ZEND_PARSED_METHOD_CALL; fetch_array_dim(&$$, &$1, &$3 TSRMLS_CC); } 1042 method: label 1048 method { $$ = $1; $$.EA = ZEND_PARSED_METHOD_CALL; zend_do_push_object(&$$ TSRMLS_CC); }
|
| H A D | zend_vm_def.h | 1928 zend_error_noreturn(E_ERROR, "Cannot call abstract method %s::%s()", fbc->common.scope->name, fbc->common.function_name); 1946 zend_error(E_STRICT, "Non-static method %s::%s() should not be called statically", fbc->common.scope->name, fbc->common.function_name); 1953 zend_error_noreturn(E_ERROR, "Non-static method %s::%s() cannot be called statically", fbc->common.scope->name, fbc->common.function_name); 2039 /* Not sure what should be done here if it's a static method */ 2459 zend_error_noreturn(E_ERROR, "Object does not support method calls"); 2465 zend_error_noreturn(E_ERROR, "Call to undefined method %s::%s()", Z_OBJ_CLASS_NAME_P(call->object), function_name_strval); 2515 /* no function found. try a static method in class */ 2574 zend_error_noreturn(E_ERROR, "Call to undefined method %s::%s()", ce->name, function_name_strval); 2605 /* We are calling method of the other (incompatible) class, 2608 zend_error(E_STRICT, "Non-static method 2698 zval **method = NULL; variable 2702 zend_hash_index_find(Z_ARRVAL_P(function_name), 1, (void **) &method); variable [all...] |
| /PHP_TRUNK/ext/fileinfo/libmagic/ |
| H A D | compress.c | 32 * uncompress(method, old, n, newch) - uncompress old into new, 33 * using method, return sizeof new 386 uncompressbuf(struct magic_set *ms, int fd, size_t method, argument 395 if (method == 2) 422 if (compr[method].silent) 426 (void)execvp(compr[method].argv[0], 427 (char *const *)(intptr_t)compr[method].argv); 430 compr[method].argv[0], strerror(errno));
|
| /PHP_TRUNK/ext/curl/ |
| H A D | php_curl.h | 125 int method; member in struct:__anon1 134 int method; member in struct:__anon2 141 int method; member in struct:__anon3
|