Home
last modified time | relevance | path

Searched refs:method (Results 251 – 275 of 702) sorted by last modified time

1...<<11121314151617181920>>...29

/PHP-5.5/ext/spl/
H A Dspl_directory.c665 zend_function *spl_filesystem_object_get_method_check(zval **object_ptr, char *method, int method_l… in spl_filesystem_object_get_method_check() argument
670 method = "_bad_state_ex"; in spl_filesystem_object_get_method_check()
675 return zend_get_std_object_handlers()->get_method(object_ptr, method, method_len, key TSRMLS_CC); in spl_filesystem_object_get_method_check()
/PHP-5.5/ext/spl/internal/
H A Diteratoriterator.inc107 * @param func Name of method to invoke
108 * @param params Array of parameters to pass to method
H A Dlimititerator.inc125 * @param func Name of method to invoke
126 * @param params Array of parameters to pass to method
H A Dmultipleiterator.inc141 * their next() method regardless of their state.
H A Dcachingiterator.inc119 * @param func Name of method to invoke
120 * @param params Array of parameters to pass to method
H A Dfilteriterator.inc23 * method accept(). Typically this invloves reading the current element or
118 * @param func Name of method to invoke
119 * @param params Array of parameters to pass to method
H A Dseekableiterator.inc28 * The method should throw an exception if it is not possible to seek to
H A Dsplfileobject.inc142 * @param whence seek method (SEEK_SET, SEEK_CUR, SEEK_END)
/PHP-5.5/ext/spl/examples/
H A Dkeyfilter.inc30 * method is called.
/PHP-5.5/ext/soap/
H A Dsoap.c3758 xmlNodePtr method = NULL, param; local
3782 method = xmlNewChild(body, ns, BAD_CAST(function_name), NULL);
3803 rpc_result = xmlNewChild(method, rpc_ns, BAD_CAST("result"), NULL);
3853 if (use == SOAP_ENCODED && version == SOAP_1_2 && method != NULL) {
3857 *node = method;
4229 xmlNodePtr envelope = NULL, body, method = NULL, head = NULL; local
4270 method = xmlNewChild(body, ns, BAD_CAST(function->requestName), NULL);
4287 method = xmlNewChild(body, ns, BAD_CAST(function_name), NULL);
4293 method = body;
4296 method = body;
[all …]
H A DTODO57 - function/method overloading/redeclaration (test(int); test(string))
H A DTODO.old16 make $soap_object->data = 'text'; maybe invoke a set_*() and/or get_*() method
/PHP-5.5/ext/snmp/tests/
H A Dsnmp_get_valueretrieval.phpt45 Warning: snmp_set_valueretrieval(): Unknown SNMP value retrieval method '67' in %s on line %d
H A Dsnmp-object-error.phpt91 Warning: main(): Unknown SNMP value retrieval method '67' in %s on line %d
H A Dsnmp-object-properties.phpt191 Warning: main(): Unknown SNMP value retrieval method '67' in %s on line %d
/PHP-5.5/ext/soap/interop/
H A Dclient_round2.php38 $method = $x->test_name;
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) argument
58 methodList($test, $method);
H A Dclient_round2_interop.php693 foreach ($methods as $method) {
694 $r = $endpoint_info['methods'][$method]['result'];
708 foreach ($methods as $method) {
709 $info = split(':', $method);
730 foreach ($methods as $method) {
731 $id = $endpoint_info['methods'][$method]['id'];
732 $r = $endpoint_info['methods'][$method]['result'];
733 $e = $endpoint_info['methods'][$method]['error'];
/PHP-5.5/ext/snmp/
H A Dsnmp.c317 ZEND_ARG_INFO(0, method)
1760 long method; in PHP_FUNCTION() local
1762 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &method) == FAILURE) { in PHP_FUNCTION()
1766 if (method >= 0 && method <= (SNMP_VALUE_LIBRARY|SNMP_VALUE_PLAIN|SNMP_VALUE_OBJECT)) { in PHP_FUNCTION()
1767 SNMP_G(valueretrieval) = method; in PHP_FUNCTION()
1770 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unknown SNMP value retrieval method '%ld'", method); in PHP_FUNCTION()
/PHP-5.5/ext/simplexml/tests/
H A D031.phpt21 /* Try to add attribute again -> display warning as method is for new Attr only */
H A D036.phpt2 SimpleXML: overriden count() method
/PHP-5.5/ext/simplexml/
H A DREADME11 all nodes with that element name. Thus method children() must be
/PHP-5.5/ext/session/tests/
H A D001.phpt17 function method() { $this->yes = "done"; }
21 $baz->method();
24 $arr[3]->method();
H A D003.phpt17 function method() { $this->yes++; }
24 $_SESSION["baz"]->method();
25 $_SESSION["arr"][3]->method();
H A D024.phpt53 function method() { $this->yes++; }
63 $baz->method();
64 $arr[3]->method();
H A D004.phpt52 function method() { $this->yes++; }
59 $_SESSION["baz"]->method();
60 $_SESSION["arr"][3]->method();

Completed in 58 milliseconds

1...<<11121314151617181920>>...29