Home
last modified time | relevance | path

Searched refs:st (Results 1 – 25 of 282) sorted by relevance

12345678910>>...12

/plugin/asciidocjs/node_modules/with/node_modules/acorn/dist/
Dwalk.js27 ;(function c(node, st, override) { argument
29 base[type](node, st, c)
30 if (found) found(node, st)
40 ;(function c(node, st, override) { argument
44 base[type](node, st, c)
45 if (found) found(node, st || ancestors, ancestors)
57 ;(function c(node, st, override) { argument
58 visitor[override || node.type](node, st, c)
80 ;(function c(node, st, override) { argument
84 base[type](node, st, c)
[all …]
Dwalk.es.js21 ;(function c(node, st, override) { argument
23 base[type](node, st, c)
24 if (found) found(node, st)
34 ;(function c(node, st, override) { argument
38 base[type](node, st, c)
39 if (found) found(node, st || ancestors, ancestors)
51 ;(function c(node, st, override) { argument
52 visitor[override || node.type](node, st, c)
74 ;(function c(node, st, override) { argument
78 base[type](node, st, c)
[all …]
/plugin/asciidocjs/node_modules/acorn/dist/
Dwalk.es.js21 ;(function c(node, st, override) { argument
23 base[type](node, st, c)
24 if (found) found(node, st)
34 ;(function c(node, st, override) { argument
38 base[type](node, st, c)
39 if (found) found(node, st || ancestors, ancestors)
51 ;(function c(node, st, override) { argument
52 visitor[override || node.type](node, st, c)
74 ;(function c(node, st, override) { argument
78 base[type](node, st, c)
[all …]
Dwalk.js27 ;(function c(node, st, override) { argument
29 base[type](node, st, c)
30 if (found) found(node, st)
40 ;(function c(node, st, override) { argument
44 base[type](node, st, c)
45 if (found) found(node, st || ancestors, ancestors)
57 ;(function c(node, st, override) { argument
58 visitor[override || node.type](node, st, c)
80 ;(function c(node, st, override) { argument
84 base[type](node, st, c)
[all …]
/plugin/asciidocjs/node_modules/acorn/src/walk/
Dindex.js21 ;(function c(node, st, override) { argument
23 base[type](node, st, c)
24 if (found) found(node, st)
34 ;(function c(node, st, override) { argument
38 base[type](node, st, c)
39 if (found) found(node, st || ancestors, ancestors)
51 ;(function c(node, st, override) { argument
52 visitor[override || node.type](node, st, c)
76 ;(function c(node, st, override) { argument
80 base[type](node, st, c)
[all …]
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/walk/
Dindex.js21 ;(function c(node, st, override) { argument
23 base[type](node, st, c)
24 if (found) found(node, st)
34 ;(function c(node, st, override) { argument
38 base[type](node, st, c)
39 if (found) found(node, st || ancestors, ancestors)
51 ;(function c(node, st, override) { argument
52 visitor[override || node.type](node, st, c)
76 ;(function c(node, st, override) { argument
80 base[type](node, st, c)
[all …]
/plugin/sha3sum/
DSha3.php33 private static function keccakf64(&$st, $rounds) argument
50 … $st[$i][0] ^ $st[$i + 5][0] ^ $st[$i + 10][0] ^ $st[$i + 15][0] ^ $st[$i + 20][0],
51 … $st[$i][1] ^ $st[$i + 5][1] ^ $st[$i + 10][1] ^ $st[$i + 15][1] ^ $st[$i + 20][1]
62 $st[$j + $i] = [
63 $st[$j + $i][0] ^ $t[0],
64 $st[$j + $i][1] ^ $t[1]
70 $t = $st[1];
74 $bc[0] = $st[$j];
85 $st[$j] =[
96 $bc[$i] = $st[$j + $i];
[all …]
/plugin/asciidocjs/node_modules/function-bind/test/
Dindex.js25 t.test('binds properly', function (st) { argument
34 st.deepEqual(args, [1, 2, 3]);
35 st.equal(context, getCurrentContext.call());
36 st.end();
39 t.test('binds properly, and still supplies bound arguments', function (st) { argument
48 st.deepEqual(args, [1, 2, 3, 4, 5, 6]);
49 st.equal(context, getCurrentContext.call());
50 st.end();
53 t.test('returns properly', function (st) { argument
62 st.equal(context, getCurrentContext.call(), 'returned context is namespaced context');
[all …]
/plugin/asciidocjs/node_modules/is-core-module/test/
Dindex.js14 t.test('isCore()', function (st) { argument
15 st.ok(isCore('fs'));
16 st.ok(isCore('net'));
17 st.ok(isCore('http'));
19 st.ok(!isCore('seq'));
20 st.ok(!isCore('../'));
22 st.ok(!isCore('toString'));
24 st.end();
27 t.test('core list', function (st) { argument
29 st.plan(cores.length);
[all …]
/plugin/asciidocjs/node_modules/resolve/test/
Dcore.js10 t.test('isCore()', function (st) { argument
11 st.ok(resolve.isCore('fs'));
12 st.ok(resolve.isCore('net'));
13 st.ok(resolve.isCore('http'));
15 st.ok(!resolve.isCore('seq'));
16 st.ok(!resolve.isCore('../'));
18 st.ok(!resolve.isCore('toString'));
20 st.end();
23 t.test('core list', function (st) { argument
25 st.plan(cores.length);
[all …]
Dpathfilter.js17 t.test('deep/ref.js', function (st) { argument
18 st.plan(3);
21 if (err) st.fail(err);
23 st.equal(pkg.version, '1.2.3');
24 st.equal(res, path.join(resolverDir, 'node_modules/deep/ref.js'));
28 st.equal(res, path.join(resolverDir, 'node_modules/deep/ref.js'));
31 t.test('deep/deeper/ref', function (st) { argument
32 st.plan(4);
39 st.notEqual(pkg, undefined);
40 st.equal(pkg.version, '1.2.3');
[all …]
Dmock_sync.js173 t.test('with readFile', function (st) { argument
174 st.plan(1);
176 st.equal(
189 t.test('with readPackage', function (st) { argument
190 st.plan(1);
196 st.equal(
202 t.test('with readFile and readPackage', function (st) { argument
203 st.plan(1);
207 st.throws(
Dmock.js274 t.test('with readFile', function (st) { argument
275 st.plan(3);
278 st.error(err);
279 st.equal(res, path.resolve('/foo/node_modules/bar/baz.js'));
280 st.equal(pkg && pkg.main, './baz.js');
293 t.test('with readPackage', function (st) { argument
294 st.plan(3);
300 st.error(err);
301 st.equal(res, path.resolve('/foo/node_modules/bar/something-else.js'));
302 st.equal(pkg && pkg.main, './something-else.js');
[all …]
/plugin/asciidocjs/node_modules/is-regex/test/
Dindex.js39 t.test('lastIndex is a marker object', function (st) { argument
43 st.equal(regex.lastIndex, marker, 'lastIndex is the marker object');
44 st.ok(isRegex(regex), 'is regex');
45 st.equal(regex.lastIndex, marker, 'lastIndex is the marker object after isRegex');
46 st.end();
49 t.test('lastIndex is nonzero', function (st) { argument
52 st.equal(regex.lastIndex, 3, 'lastIndex is 3');
53 st.ok(isRegex(regex), 'is regex');
54 st.equal(regex.lastIndex, 3, 'lastIndex is 3 after isRegex');
55 st.end();
[all …]
/plugin/asciidocjs/node_modules/call-bind/test/
Dindex.js46 t.test('callBind.apply', function (st) { argument
48 st.deepEqual(aBound(sentinel), [sentinel, undefined, undefined], 'apply-bound func with no args');
49st.deepEqual(aBound(sentinel, [1], 4), [sentinel, 1, undefined], 'apply-bound func with too few ar…
50 st.deepEqual(aBound(sentinel, [1, 2], 4), [sentinel, 1, 2], 'apply-bound func with right args');
53st.deepEqual(aBoundArg(sentinel, [1, 2, 3], 4), [sentinel, 1, 2], 'apply-bound func with too many …
54st.deepEqual(aBoundArg(sentinel, [1, 2], 4), [sentinel, 1, 2], 'apply-bound func with right args');
55st.deepEqual(aBoundArg(sentinel, [1], 4), [sentinel, 1, undefined], 'apply-bound func with too few…
58st.deepEqual(aBoundR([1, 2, 3], 4), [sentinel, 1, 2], 'apply-bound func with receiver and too many…
59st.deepEqual(aBoundR([1, 2], 4), [sentinel, 1, 2], 'apply-bound func with receiver and right args'…
60st.deepEqual(aBoundR([1], 4), [sentinel, 1, undefined], 'apply-bound func with receiver and too fe…
[all …]
DcallBound.js44 t.test('real but absent intrinsic', { skip: typeof WeakRef !== 'undefined' }, function (st) { argument
45 st['throws'](
50 st.equal(callBound('WeakRef', true), undefined, 'allowMissing arg avoids exception');
51 st.end();
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
DHash.php1101 $st = $s;
1106 … $st[(2 * $i + 3 * $j) % 5][$j] = static::rotateLeft32($s[$j][$i], $rotationOffsets[$j][$i]);
1113 $st[$i][0][0] ^ (~$st[$i][1][0] & $st[$i][2][0]),
1114 $st[$i][0][1] ^ (~$st[$i][1][1] & $st[$i][2][1])
1117 $st[$i][1][0] ^ (~$st[$i][2][0] & $st[$i][3][0]),
1118 $st[$i][1][1] ^ (~$st[$i][2][1] & $st[$i][3][1])
1121 $st[$i][2][0] ^ (~$st[$i][3][0] & $st[$i][4][0]),
1122 $st[$i][2][1] ^ (~$st[$i][3][1] & $st[$i][4][1])
1125 $st[$i][3][0] ^ (~$st[$i][4][0] & $st[$i][0][0]),
1126 $st[$i][3][1] ^ (~$st[$i][4][1] & $st[$i][0][1])
[all …]
/plugin/timer/
Dsyntax.php71 global $st;
100 $st = $sts;
106 if (($st<$now) && ($et>$now)) {
108 $renderer->doc .= " From:" . date($conf['dformat'],$st);
115 if ($now<$st) {
117 $renderer->doc .= " From:" . date($conf['dformat'],$st);
120 $renderer->doc .= " From:" . date($conf['dformat'],$st);
128 … if (($now>$st-$conf['cachetime'] && $now<$st) || ($now>$et-$conf['cachetime'] && $now<$et)) {
/plugin/abc2/abc-libraries/abc2svg/
Dabc2svg-1.js103 function y_get(st,up,x,w){var y,p_staff=staff_tb[st],i=(x/realwidth*YSTEP)|0,j=((x+w)/realwidth*YST… argument
115 function y_set(st,up,x,w,y){var p_staff=staff_tb[st],i=(x/realwidth*YSTEP)|0,j=((x+w)/realwidth*YST… argument
146 de2_prev=a_de[i-1];de.st=s2.st;de.lden=false;de.has_val=true;up=up_p(s2,s2.pos.dyn)
160 de.val=dx;de.x=x;de.y=y_get(de.st,up,x,dx)
195 de.x=x;de.y=y_get(s.st,up,x,de.val)
209 var up,y,w,tmp,dd=de.dd,de2=de.prev,s2=de.s,st=s2.st,s=de.start.s,x=s.x
214 de.st=st
225 dd=de.dd;y=y_get(st,up,x-dd.wl-5,w)
226 if(up){tmp=staff_tb[s.st].topbar+2
228 y=tmp}else{tmp=staff_tb[s.st].botbar-2
[all …]
/plugin/asciimath/
Dasciimathml148r.js357 var st;
359 st = str.slice(n+1);
360 else st = str.slice(n);
361 for (var i=0; i<st.length && st.charCodeAt(i)<=32; i=i+1);
362 return st.slice(i);
388 var st;
393 st = str.slice(0,i); //initial substring of length i
395 k = AMposition(AMnames, st, j);
411 st = str.slice(0,1);
413 while ("0"<=st && st<="9" && k<=str.length) {
[all …]
/plugin/asciidocjs/node_modules/get-intrinsic/test/
DGetIntrinsic.js128 …for dotted paths', { skip: !Object.isFrozen || Object.isFrozen(Object.prototype) }, function (st) { argument
144 st.equal(GetIntrinsic(name), original, name + ' yields original Object.prototype.toString');
148 st.end();
151 …tted paths cache', { skip: !Object.isFrozen || Object.isFrozen(Object.prototype) }, function (st) { argument
165st.equal(GetIntrinsic(name), original, name + ' yields cached Object.prototype.propertyIsEnumerabl…
170 st.end();
173 test('dotted path reports correct error', function (st) { argument
174 st['throws'](function () {
178 st['throws'](function () {
182 st.end();
/plugin/farm/
Dinfos.animal.class.php98 $st = $m[1];
101 while(strlen($st.$end) + 3 <= $maxlen) {
102 $st .= substr($mid, 0, 1);
106 $ns = $st.'...'.$end;
328 $st = $this->smallest($fi);
330 …$info['smallest'] = $this->elhtmlurl($st).' ('.$this->animal->manager->nicesize($fi[$st]['size']).…
333 'size' => $fi[$st]['size'],
334 'url' => $this->elurl($st),
335 'namespace' => $st
422 $st = $this->smallest($fi);
[all …]
/plugin/tablecalc/
Dscript.js7 function tablecalcXY(st) { argument
8 var r=st.match(/r\d+/);
10 var c=st.match(/c\d+/);
108 function label(st) { argument
109 if (typeof tablecalc_labels[st] == 'undefined') {
110 tablecalc_labels[st]=tablecalc_table;
241 function tablecalc_log(st) { argument
244 alert(st);
246 console.log(st);
469 function findParentNodeByName(pNode,st) { argument
[all …]
/plugin/database2/
Dmedia.php178 $st = $this->getLink()->prepare( 'SELECT ' . $column .
181 if ( !$st )
184 if ( !$st->execute( array( $rowid ) ) )
188 $media = $st->fetch( PDO::FETCH_NUM );
192 $st->closeCursor();
282 …$st = $db->getLink()->prepare( 'SELECT rowid,action,username,ctime FROM __log WHERE tablename=? OR… variable
283 if ( !$st )
286 if ( !$st->execute( array( $table ) ) )
291 $rows = $st->fetchAll( PDO::FETCH_ASSOC );
/plugin/elasticsearch/vendor/patrickschur/language-detection/resources/fy/
Dfy.txt22st 1
25st 2
30st 3
33st 4
36st 5
39st 6
42st 7
45st 8
48st 9
51st 10
[all …]

12345678910>>...12