Home
last modified time | relevance | path

Searched refs:method (Results 151 – 175 of 972) sorted by relevance

12345678910>>...39

/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/tests/
H A DTestCase.php89 ->method('stop')
155 ->method('stop')
195 ->method('stop')
288 ->method('stop')
324 ->method('stop')
/plugin/autotweet/
H A Dtwitteroauth.php178 function oAuthRequest($url, $method, $parameters) { argument
182 …$request = OAuthRequest::from_consumer_and_token($this->consumer, $this->token, $method, $url, $pa…
184 switch ($method) {
188 return $this->http($request->get_normalized_http_url(), $method, $request->to_postdata());
197 function http($url, $method, $postfields = NULL) { argument
210 switch ($method) {
/plugin/sequencediagram/bower_components/lodash/vendor/backbone/test/setup/
H A Denvironment.js25 Backbone.sync = function(method, model, options) { argument
27 method: method, property in env.syncArgs
/plugin/findologicxmlexport/vendor/twig/twig/doc/tests/
H A Dempty.rst6 Support for the ``__toString()`` magic method has been added in Twig 1.33.
12 return value of the ``count()`` method.
14 For objects that implement the ``__toString()`` magic method (and not ``Countable``),
/plugin/combo/vendor/php-webdriver/webdriver/lib/Remote/
H A DCustomWebDriverCommand.php20 * @param string $method
23 public function __construct($session_id, $url, $method, array $parameters) argument
25 $this->setCustomRequestParameters($url, $method);
67 'Invalid custom method "%s", must be one of [%s]',
/plugin/s5reloaded/ui/effects_support/
H A Dunittest.js384 assertRespondsTo: function(method, obj) { argument
387 (obj[method] && typeof obj[method] == 'function') ? this.pass() :
388 this.fail(message + ": object doesn't respond to [" + method + "]"); }
391 assertReturnsTrue: function(method, obj) { argument
394 var m = obj[method];
395 if(!m) m = obj['is'+method.charAt(0).toUpperCase()+method.slice(1)];
400 assertReturnsFalse: function(method, obj) { argument
403 var m = obj[method];
404 if(!m) m = obj['is'+method.charAt(0).toUpperCase()+method.slice(1)];
409 assertRaise: function(exceptionName, method) { argument
[all …]
/plugin/phpipam/
H A Dphpipam-api.php507 * @param string $method (default: "GET")
510 public function set_api_method ($method = "GET") { argument
512 $this->set_api_method_validate ($method);
514 $this->api_server_method = strtoupper($method);
521 * @param mixed $method
524 private function set_api_method_validate ($method) { argument
525 if(!in_array(strtoupper($method), $this->api_server_valid_methods)) {
526 $this->exception("Invalid method $method");
581 * @param bool|string $method (default: false)
588 …public function execute ($method = false, $controller = false, $identifiers = array(), $params = a… argument
[all …]
/plugin/authgoogle/google/io/
H A DGoogle_HttpRequest.php47 public function __construct($url, $method = 'GET', $headers = array(), $postBody = null) { argument
49 $this->setRequestMethod($method);
205 * @param string $method Set he HTTP Method and normalize
209 public function setRequestMethod($method) { argument
210 $this->requestMethod = strtoupper($method);
/plugin/findologicxmlexport/vendor/twig/twig/doc/functions/
H A Dattribute.rst12 {{ attribute(object, method) }}
13 {{ attribute(object, method, arguments) }}
21 {{ attribute(object, method) is defined ? 'Method exists' : 'Method does not exist' }}
/plugin/webdav/vendor/sabre/http/lib/
H A DRequestDecorator.php44 * @param string $method
47 function setMethod($method) { argument
49 $this->inner->setMethod($method);
/plugin/davcal/vendor/sabre/http/lib/
H A DRequestDecorator.php44 * @param string $method
47 function setMethod($method) { argument
49 $this->inner->setMethod($method);
/plugin/sequencediagram/bower_components/lodash/lib/fp/template/doc/
H A Dwiki.jst33 // Load a method category.
36 // Load a single method for smaller builds with browserify/rollup/webpack.
43 does that really mean for each method? Below is a breakdown of the mapping used
44 to convert each method.
142 Not all variadic methods have corresponding new method variants. Feel free to
151 There are <%= _.size(mapping.aliasToReal) %> method aliases:<br>
159 The placeholder argument, which defaults to `_`, may be used to fill in method
176 on using functional composition as an alternative to method chaining.
180 Although `lodash/fp` & its method modules come pre-converted, there are times
181 when you may want to customize the conversion. That’s when the `convert` method
[all …]
/plugin/findologicxmlexport/vendor/phpspec/prophecy/
H A DCHANGES.md5 * Clearer error message for unexpected method calls (@meridius)
12 * [fixed] Check method predictions only once (@dontub)
39 * Reverted "check method predictions only once" due to it breaking Spies
46 * Check method predictions only once (thanks @dontub)
62 * Added support for detecting @method on interfaces that the class itself implements, or when the s…
70 * Ignored empty method names in invalid `@method` phpdoc
109 * Improved clarity of method call expectation exception (thanks @dantleech)
138 * Added support for internal classes using keywords as method names (thanks @milan)
145 * Spy automatically promotes spied method call to an expected one
162 …* Added an exception when trying to prophesize on a final method instead of ignoring silently (tha…
[all …]
/plugin/html2pdf/html2pdf/html2ps/
H A Derror.php4 function error_no_method($method, $class) { argument
5 die(sprintf("Error: unoverridden '%s' method called in '%s'", $method, $class));
/plugin/darcs/
H A Dadmin.php109 $my_page.='| <html><form action="'.wl($ID).'" method="get">'.
126 $my_page.='<html><form action="'.wl($ID).'" method="post">'.
173 $my_page.='| **darcs get** <html><form action="'.wl($ID).'" method="post">'.
233 '<html><form action="'.wl($ID).'" method="get">'.
269 $retval='<html><form action="'.wl($ID).'" method="get">'.
/plugin/combo/vendor/symfony/process/
H A DCHANGELOG.md28 * added `Process::getLastOutputTime()` method
36 * added the `Process::waitUntil()` method to wait for the process only for a
42 * added the `Process::isTtySupported()` method that allows to check for TTY support
52 * added a second `array $env = []` argument to the `start()` method of the
54 * the `ProcessUtils::escapeArgument()` method has been removed
74 * deprecated the `ProcessUtils::escapeArgument()` method
84 * added the convenience method "mustRun"
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Dround.rst18 precision (default is ``0``) and the second the rounding method (default is
37 * ``method``: The rounding method
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Exclusion/
H A DExpressionLanguageExclusionStrategyTest.php28 $this->context->method('getObject')->willReturn($this->visitedObject);
43 ->method('evaluate')
58 $this->expressionEvaluator->expects($this->never())->method('evaluate');
/plugin/freechat/phpfreechat/lib/pear/PHPUnit/
H A DSkeleton.php205 foreach ($classMethods as $method) {
207 if (strcasecmp($this->className, $method) !== 0) {
209 if (!$this->includePrivate && strpos($method, '_') === 0) {
212 $this->_createMethod($method);
/plugin/findologicxmlexport/vendor/twig/twig/src/Sandbox/
H A DSecurityPolicyInterface.php23 public function checkMethodAllowed($obj, $method); argument
25 public function checkPropertyAllowed($obj, $method); argument
/plugin/authfacebook/lib/HttpClients/
H A DFacebookHttpClientInterface.php37 * @param string $method The request method.
46 public function send($url, $method, $body, array $headers, $timeOut); argument
/plugin/etherpadlite/externals/etherpad-lite-client/
H A Detherpad-lite-client.php33 protected function call($function, array $arguments = array(), $method = 'GET'){ argument
37 if ($method !== 'POST'){
45 if ($method === 'POST'){
53 …$params = array('http' => array('method' => $method, 'ignore_errors' => true, 'header' => 'Content…
54 if ($method === 'POST'){
/plugin/diagrams/script/
H A DDiagramsEditor.js30 /** @type {saveCallback} the method to call for saving the diagram */
60 method: 'GET',
88 method: 'GET',
127 method: 'POST',
157 method: 'POST',
181 method: 'POST',
/plugin/authgoogle/google/service/
H A DGoogle_Model.php107 * @param string $method Method expecting an array as an argument.
109 public function assertIsArray($obj, $type, $method) { argument
111 throw new Google_Exception("Incorrect parameter type passed to $method(), expected an"
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Generator/
H A Dmocked_class_method.tpl.dist2 public function method()
6 return call_user_func_array(array($expects, 'method'), func_get_args());

12345678910>>...39