Home
last modified time | relevance | path

Searched refs:fn (Results 1 – 25 of 907) sorted by relevance

12345678910>>...37

/plugin/chordsheets/js/
H A Djtab.js533 Raphael.fn.tabtype = 0; // 0 = none, 1 = tab & chord, 2 = chord, 3 = tab
534 Raphael.fn.has_chord = false;
535 Raphael.fn.has_tab = false;
537 Raphael.fn.debug = false;
538 Raphael.fn.scale = 1;
539 Raphael.fn.margin_top = 36;
540 Raphael.fn.margin_bottom = 10;
541 Raphael.fn.margin_left = 16;
542 Raphael.fn.margin_right = 10;
544 Raphael.fn.current_offset = Raphael.fn.margin_left;
[all …]
H A Djtab.min.js1fn.tabtype=0,Raphael.fn.has_chord=!1,Raphael.fn.has_tab=!1,Raphael.fn.debug=!1,Raphael.fn.scale=1,…
/plugin/farmsync/_test/
DaddRemoteChangelogRevision.test.php23 $fn = DOKU_TMP_DATA . 'meta/test.changes';
24 io_saveFile($fn, $changelog_text);
31 $fn = DOKU_TMP_DATA . 'meta/test.changes';
33 $original_file = io_readFile($fn);
37 $result = $farm_util->addRemoteChangelogRevision($fn, $testline, false);
38 $actual_file = io_readFile($fn);
49 $fn = DOKU_TMP_DATA . 'meta/test.changes';
54 $result = $farm_util->addRemoteChangelogRevision($fn, $testline, false);
55 $actual_file = io_readFile($fn);
73 $fn = DOKU_TMP_DATA . 'meta/test.changes';
[all …]
/plugin/asciidocjs/node_modules/core-js/modules/
D_invoke.js2 module.exports = function (fn, args, that) { argument
5 case 0: return un ? fn()
6 : fn.call(that);
7 case 1: return un ? fn(args[0])
8 : fn.call(that, args[0]);
9 case 2: return un ? fn(args[0], args[1])
10 : fn.call(that, args[0], args[1]);
11 case 3: return un ? fn(args[0], args[1], args[2])
12 : fn.call(that, args[0], args[1], args[2]);
13 case 4: return un ? fn(args[0], args[1], args[2], args[3])
[all …]
D_ctx.js3 module.exports = function (fn, that, length) { argument
4 aFunction(fn);
5 if (that === undefined) return fn;
8 return fn.call(that, a);
11 return fn.call(that, a, b);
14 return fn.call(that, a, b, c);
18 return fn.apply(that, arguments);
D_to-primitive.js7 var fn, val;
8 if (S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;
9 if (typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it))) return val;
10 if (!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;
/plugin/asciidocjs/node_modules/core-js/library/modules/
D_invoke.js2 module.exports = function (fn, args, that) { argument
5 case 0: return un ? fn()
6 : fn.call(that);
7 case 1: return un ? fn(args[0])
8 : fn.call(that, args[0]);
9 case 2: return un ? fn(args[0], args[1])
10 : fn.call(that, args[0], args[1]);
11 case 3: return un ? fn(args[0], args[1], args[2])
12 : fn.call(that, args[0], args[1], args[2]);
13 case 4: return un ? fn(args[0], args[1], args[2], args[3])
[all …]
D_ctx.js3 module.exports = function (fn, that, length) { argument
4 aFunction(fn);
5 if (that === undefined) return fn;
8 return fn.call(that, a);
11 return fn.call(that, a, b);
14 return fn.call(that, a, b, c);
18 return fn.apply(that, arguments);
D_to-primitive.js7 var fn, val;
8 if (S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;
9 if (typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it))) return val;
10 if (!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;
/plugin/aimg/
Dstyle.css20 .fn-canvas {
30 The overall container: always has class="fn-container", and also one of:
34 .fn-container {
38 .fn-container img {
42 .fn-view-image-link {
48 #fn-modaldialog {
62 .fn-area {
69 #fn-area-new{
73 .fn-container-active .fn-area {
77 .fn-container-inactive .fn-area {
[all …]
/plugin/asciidocjs/node_modules/color-convert/
Dindex.js8 function wrapRaw(fn) { argument
19 return fn(args);
23 if ('conversion' in fn) {
24 wrappedFn.conversion = fn.conversion;
30 function wrapRounded(fn) { argument
42 const result = fn(args);
57 if ('conversion' in fn) {
58 wrappedFn.conversion = fn.conversion;
74 const fn = routes[toModel]; constant
76 convert[fromModel][toModel] = wrapRounded(fn);
[all …]
/plugin/asciidocjs/node_modules/promise/src/
Dnode-extensions.js13 Promise.denodeify = function (fn, argumentCount) { argument
17 return denodeifyWithCount(fn, argumentCount);
19 return denodeifyWithoutCount(fn);
28 function denodeifyWithCount(fn, argumentCount) { argument
47 return Function(['Promise', 'fn'], body)(Promise, fn);
49 function denodeifyWithoutCount(fn) { argument
50 var fnLength = Math.max(fn.length - 1, 3);
93 )(Promise, fn);
96 Promise.nodeify = function (fn) { argument
103 return fn.apply(this, arguments).nodeify(callback, ctx);
/plugin/asciidocjs/node_modules/promise/setimmediate/
Dnode-extensions.js13 Promise.denodeify = function (fn, argumentCount) { argument
17 return denodeifyWithCount(fn, argumentCount);
19 return denodeifyWithoutCount(fn);
28 function denodeifyWithCount(fn, argumentCount) { argument
47 return Function(['Promise', 'fn'], body)(Promise, fn);
49 function denodeifyWithoutCount(fn) { argument
50 var fnLength = Math.max(fn.length - 1, 3);
93 )(Promise, fn);
96 Promise.nodeify = function (fn) { argument
103 return fn.apply(this, arguments).nodeify(callback, ctx);
/plugin/asciidocjs/node_modules/promise/domains/
Dnode-extensions.js13 Promise.denodeify = function (fn, argumentCount) { argument
17 return denodeifyWithCount(fn, argumentCount);
19 return denodeifyWithoutCount(fn);
28 function denodeifyWithCount(fn, argumentCount) { argument
47 return Function(['Promise', 'fn'], body)(Promise, fn);
49 function denodeifyWithoutCount(fn) { argument
50 var fnLength = Math.max(fn.length - 1, 3);
93 )(Promise, fn);
96 Promise.nodeify = function (fn) { argument
103 return fn.apply(this, arguments).nodeify(callback, ctx);
/plugin/asciidocjs/node_modules/promise/lib/
Dnode-extensions.js13 Promise.denodeify = function (fn, argumentCount) { argument
17 return denodeifyWithCount(fn, argumentCount);
19 return denodeifyWithoutCount(fn);
28 function denodeifyWithCount(fn, argumentCount) { argument
47 return Function(['Promise', 'fn'], body)(Promise, fn);
49 function denodeifyWithoutCount(fn) { argument
50 var fnLength = Math.max(fn.length - 1, 3);
93 )(Promise, fn);
96 Promise.nodeify = function (fn) { argument
103 return fn.apply(this, arguments).nodeify(callback, ctx);
/plugin/codeprettify/code-prettify/src/
Dlang-xq.js64fn:zero-or-one|fn:years-from-duration|fn:year-from-dateTime|fn:year-from-date|fn:upper-case|fn:uno…
/plugin/jquerymigrate/
Djquery-migrate-3.1.0.js48 return compareVersions( jQuery.fn.jquery, version ) >= 0;
136 var oldInit = jQuery.fn.init,
142 jQuery.fn.init = function( arg1 ) {
154 jQuery.fn.init.prototype = jQuery.fn;
198 jQuery.fn.size = function() {
273 var oldRemoveAttr = jQuery.fn.removeAttr,
274 oldToggleClass = jQuery.fn.toggleClass,
277 jQuery.fn.removeAttr = function( name ) {
290 jQuery.fn.toggleClass = function( state ) {
444 var oldLoad = jQuery.fn.load,
[all …]
/plugin/asciidocjs/node_modules/wrappy/
Dwrappy.js7 function wrappy (fn, cb) { argument
8 if (fn && cb) return wrappy(fn)(cb)
10 if (typeof fn !== 'function')
13 Object.keys(fn).forEach(function (k) {
14 wrapper[k] = fn[k]
24 var ret = fn.apply(this, args)
/plugin/xcom/scripts/
Dxml.php21 $fn = $params[0] ; variable
26 if($fn =='wiki.putPage' || $fn=='dokuwiki.appendPage') {
37 if($fn == 'plugin.xcom.listNamespaces') {
45 if($fn == 'dokuwiki.getPagelist') {
72 if($fn =='wiki.putPage' || $fn=='dokuwiki.appendPage') {
77 if($fn =='wiki.putPage' || $fn=='dokuwiki.appendPage') {
85 if(in_array($fn,$array_types) && !$retv['faultCode'] && !$retv['faultString']) {
86 if($fn == 'wiki.getAttachmentInfo' && isset($params[1])) {
/plugin/matrixnotifierwas/vendor/guzzlehttp/guzzle/src/
DHandlerStack.php209 foreach (\array_reverse($this->stack) as $fn) {
211 $prev = $fn[0]($prev);
258 * @param callable|string $fn Function to write as a string.
260 private function debugCallable($fn): string argument
262 if (\is_string($fn)) {
263 return "callable({$fn})";
266 if (\is_array($fn)) {
267 return \is_string($fn[0])
268 ? "callable({$fn[0]}::{$fn[1]})"
269 : "callable(['".\get_class($fn[0])."', '{$fn[1]}'])";
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
DHandlerStack.php202 foreach (array_reverse($this->stack) as $fn) {
203 $prev = $fn[0]($prev);
259 * @param array|callable $fn Function to write as a string.
263 private function debugCallable($fn) argument
265 if (is_string($fn)) {
266 return "callable({$fn})";
269 if (is_array($fn)) {
270 return is_string($fn[0])
271 ? "callable({$fn[0]}::{$fn[1]})"
272 : "callable(['" . get_class($fn[0]) . "', '{$fn[1]}'])";
[all …]
/plugin/asciidocjs/node_modules/core-js/
DREADME.md114 require('core-js/fn/set');
115 require('core-js/fn/array/from');
116 require('core-js/fn/array/find-index');
122 var Set = require('core-js/library/fn/set');
123 var from = require('core-js/library/fn/array/from');
124 var findIndex = require('core-js/library/fn/array/find-index');
138 import fill from 'core-js/library/fn/array/virtual/fill';
139 import findIndex from 'core-js/library/fn/array/virtual/find-index';
145 import {fill, findIndex} from 'core-js/library/fn/array/virtual';
220 #every(fn(val, index, @), that) -> bool
[all …]
/plugin/asciidocjs/node_modules/a-sync-waterfall/
Dindex.js12 var executeAsync = function(fn){ argument
14 setImmediate(fn);
16 process.nextTick(fn);
18 setTimeout(fn, 0);
24 var fn = function () { function
28 return fn.next();
30 fn.next = function () {
33 return fn;
/plugin/abc2/abc-libraries/abc2svg/
Dabcweb-1.js19 user={read_file:function(fn){return a_inc[fn]},errmsg:function(msg,l,c){errtxt+=clean_txt(msg)+'\n'… argument
55 abc2svg.loadjs=function(fn,relay,onerror){var s=document.createElement('script');if(/:\/\//.test(fn
56 s.src=fn
58 s.src=jsdir+fn;if(relay)
59 s.onload=relay;s.onerror=onerror||function(){alert('error loading '+fn)}
122 function include(){var i,j,fn,r,k=0
128 fn=page.slice(i,j).trim()
129 if(!a_inc[fn])
133 r.open('GET',fn,true)
134 r.onload=function(){if(r.status===200){a_inc[fn]=r.responseText
[all …]
/plugin/dlcount/
Daction.php58 $fn = false;
61 $fn = '/' . substr($href, strpos($href, '?media=')+strlen('?media='));
62 $fn = str_replace(':', '/', $fn);
66 $fn = '/' . substr($href, strpos($href, 'fetch.php/')+strlen('fetch.php/'));
67 $fn = str_replace(':', '/', $fn);
70 $fn = substr($href, strpos($href, '/_media/')+strlen('/_media/')-1);
72 $metafn = $conf['metadir'] . '/' . self::DATADIR . $fn . self::SUFFIX;
76 …show_filesize')) $txt['filesize'] = $this->size_translate(filesize($conf['mediadir'] . '/' . $fn));
78 $fmod = filemtime($conf['mediadir'] . '/' . $fn);
138 $fn = str_replace($mediadir, '', $fullpath);
[all …]

12345678910>>...37