Home
last modified time | relevance | path

Searched refs:method (Results 701 – 725 of 972) sorted by path

1...<<21222324252627282930>>...39

/plugin/jplayer/vendor/happyworm/jplayer/lib/aurora/
H A Dopus.js2 …));return outputParts.join("/")})};var Browser={mainLoop:{scheduler:null,method:"",shouldPause:fal…
H A Dvorbis.js2 …));return outputParts.join("/")})};var Browser={mainLoop:{scheduler:null,method:"",shouldPause:fal…
/plugin/jplayer/vendor/happyworm/jplayer/lib/
H A Djquery.min.js4 …||k.url||zc)+"").replace(Ac,"").replace(Fc,yc[1]+"//"),k.type=b.method||b.type||k.method||k.type,k…
H A Dpopcorn.js650 Popcorn.forEach( "enable disable".split(" "), function( method ) { argument
651 Popcorn.p[ method ] = function( plugin ) {
652 return Popcorn[ method ]( this, plugin );
1813 methods.forEach(function( method ) { argument
1814 definition[ method ] = safeTry( definition[ method ] || Popcorn.nop, name );
1919 methods.forEach(function( method ) { argument
1920 natives[ method ] = combineFn( natives[ method ], compose[ method ] );
/plugin/jplayer/vendor/happyworm/jplayer/src/actionscript/happyworm/jPlayer/
H A DJplayerRtmp.as236 // connectStream(); // This method did not do anything sensible anyway.
/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/jplayer/vendor/james-heinrich/getid3/
H A DREADME.md49 **A:** The preferred method of support requests and/or bug reports is the forum at <http://support.…
486 NOTE: getID3() will calculate md5_data in a method similar to
490 v0.4.0 - getID3() will calculate md5_data in a method similar to
H A Dchangelog.txt132 * bugfix (G:93): all errors or warnings should pass through class method
578 ¤ added alternate method to get [video][frame_rate] from QuickTime
1289 ¤ Combined GetTagOnly() and GetAllFileInfo() in method analyze
1312 with a TrimConvert() method. This uses iconv() for conversion.
H A Dreadme.txt49 A: The preferred method of support requests and/or bug reports is the
505 NOTE: getID3() will calculate md5_data in a method similar to
509 v0.4.0 - getID3() will calculate md5_data in a method similar to
/plugin/jplayer/vendor/james-heinrich/getid3/demos/
H A Ddemo.audioinfo.class.php114 $method = (isset($this->info['fileformat']) ? $this->info['fileformat'] : '').'Info';
115 if ($method && method_exists($this, $method)) {
116 $this->$method();
/plugin/jplayer/vendor/james-heinrich/getid3/licenses/
H A Dlicense.mpl-20.txt60 means any patent claim(s), including without limitation, method,
/plugin/jplayer/vendor/kriswallsmith/assetic/
H A DCHANGELOG-1.2.md28 * A new `getSourceDirectory()` method was added on the AssetInterface
H A DREADME.md200 by it will be passed to the worker's `process()` method before being returned. See _Cache Busting_ …
/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/jplayer/vendor/mustache/mustache/src/Mustache/
H A DCompiler.php391 $method = $this->getFindMethod($id);
395 … return sprintf($this->prepare(self::SECTION_CALL, $level), $id, $method, $id, $filters, $key);
418 $method = $this->getFindMethod($id);
422 …return sprintf($this->prepare(self::INVERTED_SECTION, $level), $id, $method, $id, $filters, $this-…
525 $method = $this->getFindMethod($id);
526 $id = ($method !== 'last') ? var_export($id, true) : '';
530 …return sprintf($this->prepare(self::VARIABLE, $level), $method, $id, $filters, $this->flushIndent(…
556 $method = $this->getFindMethod($name);
557 $filter = ($method !== 'last') ? var_export($name, true) : '';
561 …return sprintf($this->prepare(self::FILTER, $level), $method, $filter, $callable, $msg, $this->get…
/plugin/jplayer/vendor/symfony/process/
H A DCHANGELOG.md15 * deprecated the `ProcessUtils::escapeArgument()` method
25 * added the convenience method "mustRun"
/plugin/jplayer/vendor/symfony/process/Tests/
H A DProcessFailedExceptionTest.php29 ->method('isSuccessful')
53 ->method('isSuccessful')
57 ->method('getOutput')
61 ->method('getErrorOutput')
65 ->method('getExitCode')
69 ->method('getExitCodeText')
73 ->method('isOutputDisabled')
101 ->method('isSuccessful')
105 ->method('getOutput');
108 ->method('getErrorOutput');
[all …]
H A DProcessTest.php934 public function testMethodsThatNeedARunningProcess($method) argument
939 … $this->expectExceptionMessage(sprintf('Process must be started before calling "%s()".', $method));
941 $process->{$method}();
958 public function testMethodsThatNeedATerminatedProcess($method) argument
965 $process->{$method}();
1173 public function testIncrementalOutputDoesNotRequireAnotherCall($stream, $method) argument
1182 $result .= $process->$method();
/plugin/jquery/
H A Djquery-1.4.2.js6137 var method = "scroll" + name;
6139 jQuery.fn[ method ] = function(val) {
6158 this[ method ] = val;
6166 jQuery.support.boxModel && win.document.documentElement[ method ] ||
6167 win.document.body[ method ] :
6168 elem[ method ];
/plugin/jsonrpc/
H A DIJR_IntrospectionServer.php28 $this->addCallback($key['method'], $key['callback'], $key['args'], $key['help']);
45 … return new IJR_Error(-32601, 'server error. requested method "'.$methodname.'" not specified.');
54 return new IJR_Error(-32602, 'server error. missing method parameters');
97 return new IJR_Error(-32602, 'server error. invalid method parameters');
105 … return new IJR_Error(-32601, 'server error. requested method "'.$method.'" not specified.');
H A DIJR_Server.php14 var $method; variable in IJR_Server
80 private function callClassMethod($method, $args) argument
82 $method = substr($method, 5);
83 if (!method_exists($this, $method)) {
106 private function callFunction($method, $args) argument
108 if (!function_exists($method))
112 return call_user_func_array($method,$args);
122 $method = $this->callbacks[$methodname];
127 if (substr($method, 0, 5) == 'this:')
131 elseif (substr($method, 0, 7) == 'plugin:')
[all …]
H A Djsonrpc.php69 function addCallback($method, $callback, $args, $help, $public=false){ argument
70 if($public) $this->public_methods[] = $method;
71 return parent::addCallback($method, $callback, $args, $help);
/plugin/judge/
H A Dsyntax.php124 $method = $parameter;
127 $method = $parameter;
130 $method = $parameter;
193 $method = $value;
196 $method = $value;
199 $method = $value;
256 if ($method === null) {
257 $method = "diff";
264 … => $type, 'runtime' => $runtime, 'language' => $language, 'judge' => $judge, 'method' => $method);
/plugin/letsencrypt/
H A DLescript.php454 protected function curl($method, $url, $data = null) argument
467 switch ($method) {
/plugin/linkback/
H A Dhttp.php54 function sendRequest($url, $data = array (), $method = 'GET') { argument
96 if ($method == 'POST') {
122 $request = "$method $request_url HTTP/" . $this->http . HTTP_NL;

1...<<21222324252627282930>>...39