Home
last modified time | relevance | path

Searched refs:decl (Results 1 – 23 of 23) sorted by relevance

/plugin/html2pdf/html2pdf/html2ps/
Dcss.colors.inc.php150 function &parse_color_declaration($decl) { argument
151 $color = _parse_color_declaration($decl, $success);
157 function _parse_color_declaration($decl, &$success) { argument
161 if (isset($g_colors[strtolower($decl)])) { return $g_colors[strtolower($decl)]; };
164 switch (strtolower($decl)) {
170 if (preg_match("/rgb\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\)/",$decl,$matches)) {
178 if (preg_match("/rgb\(\s*(\d+)%\s*,\s*(\d+)%\s*,\s*(\d+)%\s*\)/",$decl,$matches)) {
189 if (strlen($decl) > 0) {
190 if ($decl{0} !== "#") { $decl = "#" . $decl; };
194 if (preg_match("/^#([[:xdigit:]]{2})([[:xdigit:]]{2})([[:xdigit:]]{2})$/",$decl,$matches)) {
[all …]
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/
Dstatement.js403 let decl = this.startNode()
404 this.parseVarId(decl)
406 decl.init = this.parseMaybeAssign(isFor)
409 …} else if (decl.id.type != "Identifier" && !(isFor && (this.type === tt._in || this.isContextual("…
412 decl.init = null
414 node.declarations.push(this.finishNode(decl, "VariableDeclarator"))
420 pp.parseVarId = function(decl) { argument
421 decl.id = this.parseBindingAtom()
422 this.checkLVal(decl.id, true)
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/loose/
Dstatement.js232 let decl = this.startNode()
233decl.id = this.options.ecmaVersion >= 6 ? this.toAssignable(this.parseExprAtom(), true) : this.par…
234 decl.init = this.eat(tt.eq) ? this.parseMaybeAssign(noIn) : null
235 node.declarations.push(this.finishNode(decl, "VariableDeclarator"))
238 let decl = this.startNode()
239 decl.id = this.dummyIdent()
240 node.declarations.push(this.finishNode(decl, "VariableDeclarator"))
/plugin/asciidocjs/node_modules/acorn/src/loose/
Dstatement.js237 let decl = this.startNode()
238decl.id = this.options.ecmaVersion >= 6 ? this.toAssignable(this.parseExprAtom(), true) : this.par…
239 decl.init = this.eat(tt.eq) ? this.parseMaybeAssign(noIn) : null
240 node.declarations.push(this.finishNode(decl, "VariableDeclarator"))
243 let decl = this.startNode()
244 decl.id = this.dummyIdent()
245 node.declarations.push(this.finishNode(decl, "VariableDeclarator"))
/plugin/asciidocjs/node_modules/uglify-js/lib/
Dmozilla-ast.js338 var decl = from_moz(M.declaration);
339 if (!decl.name) switch (decl.CTOR) {
341 decl = new AST_AsyncFunction(decl);
344 decl = new AST_AsyncGeneratorFunction(decl);
347 decl = new AST_ClassExpression(decl);
350 decl = new AST_Function(decl);
353 decl = new AST_GeneratorFunction(decl);
359 body: decl,
Dscope.js320 var decl = sym.orig[0];
321 if (decl instanceof AST_SymbolCatch
322 || decl instanceof AST_SymbolFunarg
323 || decl instanceof AST_SymbolLambda) {
Dcompress.js8515 var decl = make_sym(AST_SymbolVar, node.left, prop.key);
8517 name: decl,
8521 name: decl.name,
8523 thedef: decl.definition(),
8550 var decl = node.clone();
8551decl.value = node.name instanceof AST_SymbolConst ? make_node(AST_Number, node, { value: 0 }) : nu…
8552 var_defs.push(decl);
9884 var decl = [];
9970 decl.push(make_node(AST_SimpleStatement, self.expression, { body: self.expression }));
9971 if (side_effects.length) decl.push(make_node(AST_SimpleStatement, self, {
[all …]
/plugin/asciidocjs/node_modules/acorn/src/
Dstatement.js422 let decl = this.startNode()
423 this.parseVarId(decl)
425 decl.init = this.parseMaybeAssign(isFor)
428 …} else if (decl.id.type != "Identifier" && !(isFor && (this.type === tt._in || this.isContextual("…
431 decl.init = null
433 node.declarations.push(this.finishNode(decl, "VariableDeclarator"))
439 pp.parseVarId = function(decl) { argument
440 decl.id = this.parseBindingAtom()
441 this.checkLVal(decl.id, true)
/plugin/dirtylittlehelper/mermaid/editor/docs/
D52.52.js.map1decl> where decl is the current opening declaration (like 'class')\n root: [\n /…
D57.57.js.map1decl', '@declarationbody']\n ],\n urldeclaration: [\n { include: '@string…
D2.2.js24856 var decl = node.findParent(NodeType.Declaration);
24857 var value = decl && decl.getValue();
24859 return decl;
27038 var decl = parseDeclaration();
27039 while (node.addChild(decl)) {
27043 …if (this._needsSemicolonAfter(decl) && !this.accept(_cssScanner_js__WEBPACK_IMPORTED_MODULE_0__["T…
27047 …if (decl && this.prevToken && this.prevToken.type === _cssScanner_js__WEBPACK_IMPORTED_MODULE_0__[…
27048 decl.semicolonPosition = this.prevToken.offset;
27053 decl = parseDeclaration();
29005 var decl = _cssNodes_js__WEBPACK_IMPORTED_MODULE_0__["getParentDeclaration"](node);
[all …]
D2.2.js.map1decl = node.findParent(NodeType.Declaration);\n var value = decl && decl.getValue();\n if (v…
Dbundle.js.map1decl.title', 'Declarations'));\n });\n }\n _getNoResultFoundMessage(info) {\n …
/plugin/asciidocjs/node_modules/with/node_modules/acorn/dist/
Dacorn.es.js1025 var decl = this$1.startNode()
1026 this$1.parseVarId(decl)
1028 decl.init = this$1.parseMaybeAssign(isFor)
1031 …} else if (decl.id.type != "Identifier" && !(isFor && (this$1.type === tt._in || this$1.isContextu…
1034 decl.init = null
1036 node.declarations.push(this$1.finishNode(decl, "VariableDeclarator"))
1042 pp$1.parseVarId = function(decl) { argument
1043 decl.id = this.parseBindingAtom()
1044 this.checkLVal(decl.id, true)
Dacorn.js1031 var decl = this$1.startNode()
1032 this$1.parseVarId(decl)
1034 decl.init = this$1.parseMaybeAssign(isFor)
1037 …} else if (decl.id.type != "Identifier" && !(isFor && (this$1.type === tt._in || this$1.isContextu…
1040 decl.init = null
1042 node.declarations.push(this$1.finishNode(decl, "VariableDeclarator"))
1048 pp$1.parseVarId = function(decl) { argument
1049 decl.id = this.parseBindingAtom()
1050 this.checkLVal(decl.id, true)
/plugin/asciidocjs/node_modules/acorn/dist/
Dacorn.es.js1078 var decl = this$1.startNode()
1079 this$1.parseVarId(decl)
1081 decl.init = this$1.parseMaybeAssign(isFor)
1084 …} else if (decl.id.type != "Identifier" && !(isFor && (this$1.type === tt._in || this$1.isContextu…
1087 decl.init = null
1089 node.declarations.push(this$1.finishNode(decl, "VariableDeclarator"))
1095 pp$1.parseVarId = function(decl) { argument
1096 decl.id = this.parseBindingAtom()
1097 this.checkLVal(decl.id, true)
Dacorn.js1084 var decl = this$1.startNode()
1085 this$1.parseVarId(decl)
1087 decl.init = this$1.parseMaybeAssign(isFor)
1090 …} else if (decl.id.type != "Identifier" && !(isFor && (this$1.type === tt._in || this$1.isContextu…
1093 decl.init = null
1095 node.declarations.push(this$1.finishNode(decl, "VariableDeclarator"))
1101 pp$1.parseVarId = function(decl) { argument
1102 decl.id = this.parseBindingAtom()
1103 this.checkLVal(decl.id, true)
/plugin/asciidocjs/node_modules/babylon/lib/
Dindex.js2337 var decl = this.startNode();
2338 this.parseVarHead(decl);
2340 decl.init = this.parseMaybeAssign(isFor);
2343 …} else if (decl.id.type !== "Identifier" && !(isFor && (this.match(types._in) || this.isContextual…
2346 decl.init = null;
2348 node.declarations.push(this.finishNode(decl, "VariableDeclarator"));
2354 pp$1.parseVarHead = function (decl) { argument
2355 decl.id = this.parseBindingAtom();
2356 this.checkLVal(decl.id, true, undefined, "variable declaration");
6382 return function (decl) { argument
[all …]
/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/
Dcompress.js1989 in_use[i].orig.forEach(function(decl){ argument
1991 var init = initializations.get(decl.name);
2697 var decl = [];
2735 body[0].body = decl.concat(body[0].body);
2748 body: decl.concat(make_node(AST_SimpleStatement, self.expression, {
2779 extract_declarations_from_unreachable_code(compressor, branch, decl);
/plugin/amcharts/assets/amcharts/plugins/export/libs/fabric.js/
Dfabric.js21028 var decl, charWidth, charHeight,
21031 if (this.styles && this.styles[lineIndex] && (decl = this.styles[lineIndex][i])) {
21033 var shouldStroke = decl.stroke || this.stroke,
21034 shouldFill = decl.fill || this.fill;
21037 charWidth = this._applyCharStylesGetWidth(ctx, _char, lineIndex, i, decl);
21047 this._renderCharDecoration(ctx, decl, left, top, offset, charWidth, charHeight);
21229 _applyCharStylesGetWidth: function(ctx, _char, lineIndex, charIndex, decl) { argument
21230 var styleDeclaration = decl ||
Dfabric.min.js13decl,charWidth,charHeight,offset=this._fontSizeFraction*lineHeight/this.lineHeight;if(this.styles&… argument
/plugin/aichat/vendor/mehrab-wj/tiktoken-php/data/
Dvocab.bpe6621 Ġdecl ared
7138 Ġdecl ined
7540 Ġdecl ine
13373 Ġdecl are
14051 Ġdecl aration
17826 Ġdecl ining
18430 Ġdecl aring
23929 Ġdecl ares
24205 Ġdecl ines
31459 Ġdecl arations
[all …]
/plugin/xlsx2dw/packages/xlsx/
Dxlsx.mjs22564 case 'dde-connection-decl': // 14.6.3 <text: