Home
last modified time | relevance | path

Searched refs:method (Results 326 – 350 of 972) sorted by relevance

1...<<11121314151617181920>>...39

/plugin/remotescript/lib/JsHttpRequest/mini/
H A DJsHttpRequest-script.js50 _openArgs={method:(_2||"").toUpperCase(),url:_3,asyncFlag:_4,username:_5!=null?_5:"",password:_6!=n… property in t.open._openArgs
69 …nArgs.username+":"+this._openArgs.password+"@"+this._openArgs.url+"|"+_8+"#"+this._openArgs.method;
313 if(!this.method){
314 this.method="GET";
316 if(this.method!=="GET"){
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Asset/
H A DAssetReference.php134 private function callAsset($method, $arguments = array()) argument
138 return call_user_func_array(array($asset, $method), $arguments);
/plugin/directions/syntax/
H A Dlocaldirections.php198 * return value of the <tt>handle()</tt> method.
203 * method.
/plugin/davcal/vendor/sabre/event/
H A DCHANGELOG.md14 * Fixed: `$priority` was ignored in `EventEmitter::once` method.
22 triggered after each method handled. This is dubbed the 'continueCallback' and
/plugin/davcard/vendor/sabre/vobject/tests/VObject/ITip/
H A DBrokerTester.php56 $message->method = isset($vcal->METHOD)?$vcal->METHOD->getValue():null;
61 if ($message->method === 'REPLY') {
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Invocation/
H A DStatic.php189 $method = $object->getMethod('__clone');
190 $cloneable = $method->isPublic();
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/MockObject/Generator/
H A Dclass_with_method_with_variadic_arguments.phpt65 public function method()
69 return call_user_func_array(array($expects, 'method'), func_get_args());
H A Dinterface.phpt63 public function method()
67 return call_user_func_array(array($expects, 'method'), func_get_args());
H A Dscalar_type_declarations.phpt69 public function method()
73 return call_user_func_array(array($expects, 'method'), func_get_args());
H A Dclass_partial.phpt69 public function method()
73 return call_user_func_array(array($expects, 'method'), func_get_args());
H A Dnamespaced_class_partial.phpt71 public function method()
75 return call_user_func_array(array($expects, 'method'), func_get_args());
H A Dnamespaced_interface.phpt65 public function method()
69 return call_user_func_array(array($expects, 'method'), func_get_args());
H A Dnullable_types.phpt69 public function method()
73 return call_user_func_array(array($expects, 'method'), func_get_args());
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/ITip/
H A DBrokerTester.php58 $message->method = isset($vcal->METHOD) ? $vcal->METHOD->getValue() : null;
63 if ($message->method === 'REPLY') {
/plugin/quickstats/GEOIP/vendor/geoip2/geoip2/src/Database/
H A DReader.php236 $method = lcfirst($class);
238 "The $method method cannot be used to open a "
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/ITip/
H A DBrokerTester.php56 $message->method = isset($vcal->METHOD)?$vcal->METHOD->getValue():null;
61 if ($message->method === 'REPLY') {
/plugin/davcal/vendor/sabre/vobject/tests/VObject/ITip/
H A DBrokerTester.php56 $message->method = isset($vcal->METHOD)?$vcal->METHOD->getValue():null;
61 if ($message->method === 'REPLY') {
/plugin/authgooglesheets/vendor/google/auth/src/
H A DAccessToken.php449 * @param string $method
453 protected function callJwtStatic($method, array $args = []) argument
455 return call_user_func_array([JWT::class, $method], $args); // @phpstan-ignore-line
/plugin/bpmnioeditor/
H A Dscript.js47 method: 'POST',
74 method: 'POST',
95 method: 'POST',
235 method: 'POST',
/plugin/actionrenderer/
H A Drenderer.php29 * @param string $method
33 protected function trigger($method, $arguments) argument
36 'method' => $method,
43 $event->result = call_user_func_array([$this, 'parent::' . $method], $arguments);
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DSearch.php335 public function search($query = '', $options = null, string $method = Request::POST): ResultSet
352 $response = $this->getClient()->request($path, $method, $data, $params);
367 public function count($query = '', bool $fullResult = false, string $method = Request::POST)
380 $method,
331 search($query = '', $options = null, string $method = Request POST) global() argument
359 count($query = '', bool $fullResult = false, string $method = Request POST) global() argument
/plugin/jplayer/vendor/happyworm/jplayer/dist/add-on/
H A Djquery.jplayer.inspector.js328 $.fn.jPlayerInspector = function( method ) { argument
330 if ( methods[method] ) {
331 return methods[ method ].apply( this, Array.prototype.slice.call( arguments, 1 ));
332 } else if ( typeof method === 'object' || ! method ) {
335 $.error( 'Method ' + method + ' does not exist on jQuery.jPlayerInspector' );
/plugin/jplayer/vendor/happyworm/jplayer/src/javascript/add-on/
H A Djquery.jplayer.inspector.js328 $.fn.jPlayerInspector = function( method ) { argument
330 if ( methods[method] ) {
331 return methods[ method ].apply( this, Array.prototype.slice.call( arguments, 1 ));
332 } else if ( typeof method === 'object' || ! method ) {
335 $.error( 'Method ' + method + ' does not exist on jQuery.jPlayerInspector' );
/plugin/mantis/lib/
H A Dclass.soap_server.php496 $method = $this->methodname; //TODO FIXME HELP this is absolutely hardcoded!!!
512 $method = substr($this->methodname, strpos($this->methodname, $delim) + strlen($delim));
513 $this->debug("in invoke_method, class=$class method=$method delim=$delim");
525 $method_to_compare = (substr(phpversion(), 0, 2) == '4.') ? strtolower($method) : $method;
556 $funcCall = "\$this->methodreturn = ".$class."::".$method."(";
562 $funcCall .= "\$this->methodreturn = ".$instname."->".$method."(";
584 $call_arg = array ($class, $method);
588 $call_arg = array(&$instance, $method);
/plugin/findologicxmlexport/vendor/phpunit/php-token-stream/tests/_fixture/
H A Dsource2.php5 public static abstract function method(); function in A

1...<<11121314151617181920>>...39