Home
last modified time | relevance | path

Searched refs:sym (Results 1 – 25 of 79) sorted by relevance

1234

/plugin/masciimath/
Dsyntax.php305 $sym = null;
311 $sym = $s;
316 if ((! isset($sym)) and (preg_match ('/^[0-9.]+/', $this->parsestr, $m))) {
318 $sym = compact('ml', 'ml_nobr');
322 if ((! isset($sym)) and (preg_match ('/^"(.*?)"/', $this->parsestr, $m))) {
324 $sym = compact('ml', 'ml_nobr');
328 if (! isset($sym)) {
330 $sym = compact('ml', 'ml_nobr');
335 $sym = compact('ml', 'ml_nobr');
350 …if (($situation['master']) or ($sym['type'] == 'leftbracket') or (($sym['ascii'] == '|') and (! $s…
[all …]
/plugin/asciidocjs/node_modules/has-symbols/
Dshams.js9 var sym = Symbol('test');
10 var symObj = Object(sym);
11 if (typeof sym === 'string') { return false; }
13 if (Object.prototype.toString.call(sym) !== '[object Symbol]') { return false; }
25 obj[sym] = symVal;
26 for (sym in obj) { return false; } // eslint-disable-line no-restricted-syntax, no-unreachable-loop
32 if (syms.length !== 1 || syms[0] !== sym) { return false; }
34 if (!Object.prototype.propertyIsEnumerable.call(obj, sym)) { return false; }
37 var descriptor = Object.getOwnPropertyDescriptor(obj, sym);
/plugin/asciidocjs/node_modules/has-symbols/test/
Dtests.js35 var sym = Symbol('test');
36 var symObj = Object(sym);
37 t.notEqual(typeof sym, 'string', 'Symbol is not a string');
38 …t.equal(Object.prototype.toString.call(sym), '[object Symbol]', 'symbol primitive Object#toStrings…
42 obj[sym] = symVal;
44 for (sym in obj) { t.fail('symbol property key was found in for..in of object'); }
48 t.deepEqual(Object.getOwnPropertySymbols(obj), [sym], 'one own symbol on symbol-valued object');
49 t.equal(Object.prototype.propertyIsEnumerable.call(obj, sym), true, 'symbol is enumerable');
50 t.deepEqual(Object.getOwnPropertyDescriptor(obj, sym), {
/plugin/asciidocjs/node_modules/uglify-js/lib/
Dscope.js101 var sym = this.orig[0];
102 if (sym instanceof AST_SymbolClass) return true;
103 if (sym instanceof AST_SymbolDefClass) return true;
104 if (sym instanceof AST_SymbolDefun) return true;
105 if (sym instanceof AST_SymbolLambda) return true;
310 var sym = node.scope.resolve().find_variable("arguments");
311 if (sym && is_arguments(sym)) sym.scope.uses_arguments = 3;
316 var sym = node.scope.find_variable(name);
317 for (var i = in_arg.length; i > 0 && sym;) {
318 i = in_arg.lastIndexOf(sym.scope, i - 1);
[all …]
Dcompress.js229 return !all(def.orig, function(sym) { argument
230 return toplevel[sym instanceof AST_SymbolDefun ? "funcs" : "vars"];
298 function export_symbol(sym) { argument
299 if (!(sym instanceof AST_SymbolDeclaration)) return;
300 var node = make_node(AST_SymbolExport, sym);
477 function cross_scope(def, sym) { argument
479 if (def === sym) return false;
480 if (sym instanceof AST_Scope) return true;
481 } while (sym = sym.parent_scope);
487 return all(def.orig, function(sym) { argument
[all …]
Dparse.js1501 var sym = _make_symbol(AST_SymbolExport, token);
1502 sym.alias = make_string(aliases[index]);
1503 return sym;
1916 var sym = _make_symbol(AST_SymbolRef, start);
1918 if (sym.name == "async") {
1934 sym = _make_symbol(AST_SymbolRef, start);
1936 return arrow([ sym ], start, true);
1939 var call = subscripts(sym, allow_calls);
1948 return is("punc", "=>") ? arrow([ sym ], start) : subscripts(sym, allow_calls);
2165 function strict_verify_symbol(sym) { argument
[all …]
Dmozilla-ast.js386 var sym = new AST_SymbolExport(from_moz(prop.local));
387 sym.alias = from_moz_alias(prop.exported);
388 return sym;
397 var sym = new AST_SymbolImport(from_moz(prop.local));
400 def = sym;
408 all = sym;
416 sym.key = from_moz_alias(prop.imported);
418 props.push(sym);
/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/
Dscope.js78 var sym = this.orig[0];
79 if (!options.screw_ie8 && sym instanceof AST_SymbolLambda)
175 var sym = labels.get(node.name);
176 if (!sym) throw new Error(string_template("Undefined label {name} [{line},{col}]", {
181 node.thedef = sym;
208 var sym = node.scope.find_variable(name);
212 if (!sym) {
213 sym = self.def_global(node);
215 node.thedef = sym;
335 var sym = ext[i];
[all …]
Dcompress.js795 return func.argnames.map(function(sym){ argument
796 return make_node(AST_String, sym, { value: sym.name });
2022 var sym = a[i];
2023 if (!(sym.definition().id in in_use_ids)) {
2024 sym.__unused = true;
2027 …compressor[sym.unreferenced() ? "warn" : "info"]("Dropping unused function argument {name} [{file}…
2028 name : sym.name,
2029 file : sym.start.file,
2030 line : sym.start.line,
2031 col : sym.start.col
[all …]
/plugin/asciidocjs/node_modules/core-js/modules/
Des6.symbol.js62 var sym = AllSymbols[tag] = _create($Symbol[PROTOTYPE]);
63 sym._k = tag;
64 return sym;
182 keyFor: function keyFor(sym) {
183 if (!isSymbol(sym)) throw TypeError(sym + ' is not a symbol!');
184 for (var key in SymbolRegistry) if (SymbolRegistry[key] === sym) return key;
/plugin/asciidocjs/node_modules/core-js/library/modules/
Des6.symbol.js62 var sym = AllSymbols[tag] = _create($Symbol[PROTOTYPE]);
63 sym._k = tag;
64 return sym;
182 keyFor: function keyFor(sym) {
183 if (!isSymbol(sym)) throw TypeError(sym + ' is not a symbol!');
184 for (var key in SymbolRegistry) if (SymbolRegistry[key] === sym) return key;
/plugin/jsoncode/
DjsonTree.js443 template = function(label, sym) {
448 <b>' + sym[0] + '</b>\
451 <b>' + sym[1] + '</b>' +
477 el.innerHTML = template(label, self.sym);
650 this.sym = ['{', '}'];
671 this.sym = ['[', ']'];
/plugin/abc2/abc-libraries/abc2svg/
Dambitus-1.js9 for(s=p_v.sym;s;s=s.next){if(s.type!=C.NOTE)
17 …pit:max,shhd:0}]}},draw_symbols:function(of,p_voice){var staff_tb=this.get_staff_tb(),s=p_voice.sym
Djianpu-1.js12 abc2svg.jianpu.cde2fcg[sk.k_mode]])},s2=voice_tb[0].sym
17 voice_tb[0].sym=s
51 for(s=p_v.sym;s;s=s.next){s.st=p_v.st
127 for(s=p_voice.sym;s;s=s.next){if(s.invis)
Dchord-1.js58 vch={v:voice_tb.length,id:"_chord",time:0,sym:{type:C.REST,time:0},instr:cfmt.chord.prog||0,vol:cfm… property
59 vch.last_sym=vch.sym
Dclip-1.js65 p_voice.sym=s2}
78 p_voice.sym=null}
Dclair-1.js118 p_v.scale=1.3;for(s=p_v.sym;s;s=s.next){if(!s.dur)
133 for(s=p_v.sym;s;s=s.next){if(s.clef_type)
Dbreak-1.js19 v=this.get_cur_sy().top_voice,s1=voice_tb[v].sym,cfmt=this.cfmt()
Dgrid-1.js183 s2.seqst=false}}else{s.next=p_v.sym
187 p_v.sym.prev=s
188 p_v.sym=s}}
Dgrid2-1.js10 for(s=p_v.sym;s;s=s.next){delete s.a_dd
Ddiag-1.js365 for(s=voice_tb[0].sym;s;s=s.next){if(!s.a_gch)
/plugin/asciidocjs/node_modules/nunjucks/src/
Dtransformer.js5 var sym = 0; variable
7 return 'hole_' + sym++;
/plugin/yearbox/
Dsyntax.php430 $sym = ($userewrite) ? '?' : '&amp;';
431 return preg_replace('/\" class/', $sym . 'do=edit" class', $link, 1);
/plugin/amcharts/assets/amcharts/plugins/export/libs/jszip/
Djszip.js6354 var sym;
6360 sym = 0;
6361 while (sym < 144) { state.lens[sym++] = 8; }
6362 while (sym < 256) { state.lens[sym++] = 9; }
6363 while (sym < 280) { state.lens[sym++] = 7; }
6364 while (sym < 288) { state.lens[sym++] = 8; }
6369 sym = 0;
6370 while (sym < 32) { state.lens[sym++] = 5; }
7625 var sym = 0; /* index of code symbols */
7684 for (sym = 0; sym < codes; sym++) {
[all …]
/plugin/xlsx2dw/packages/jszip/
Djszip.js8472 var sym;
8478 sym = 0;
8479 while (sym < 144) { state.lens[sym++] = 8; }
8480 while (sym < 256) { state.lens[sym++] = 9; }
8481 while (sym < 280) { state.lens[sym++] = 7; }
8482 while (sym < 288) { state.lens[sym++] = 8; }
8487 sym = 0;
8488 while (sym < 32) { state.lens[sym++] = 5; }
9797 var sym = 0; /* index of code symbols */
9856 for (sym = 0; sym < codes; sym++) {
[all …]

1234