| /plugin/combo/vendor/antlr/antlr4-php-runtime/src/Tree/ |
| H A D | TerminalNodeImpl.php | 14 public $symbol; variable in Antlr\\Antlr4\\Runtime\\Tree\\TerminalNodeImpl 19 public function __construct(Token $symbol) argument 21 $this->symbol = $symbol; 31 return $this->symbol; 49 return $this->symbol; 54 if ($this->symbol === null) { 58 $tokenIndex = $this->symbol->getTokenIndex(); 75 return $this->symbol->getText(); 88 if ($this->symbol->getType() === Token::EOF) { 92 return $this->symbol->getText() ?? '';
|
| /plugin/asciimath/ |
| D | asciimathml148r.js | 467 var symbol, node, result, i, st,// rightvert = false, 470 symbol = AMgetSymbol(str); //either a token or a bracket or empty 471 if (symbol == null || symbol.ttype == RIGHTBRACKET && AMnestingDepth > 0) { 474 if (symbol.ttype == DEFINITION) { 475 str = symbol.output+AMremoveCharsAndBlanks(str,symbol.input.length); 476 symbol = AMgetSymbol(str); 478 switch (symbol.ttype) { 481 str = AMremoveCharsAndBlanks(str,symbol.input.length); 482 return [AMcreateMmlNode(symbol.tag, //its a constant 483 document.createTextNode(symbol.output)),str]; [all …]
|
| /plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/Exceptions/ |
| H A D | LexerNoViableAltException.php | 43 $symbol = ''; 51 $symbol = $input->getText($this->startIndex, $this->startIndex); 52 $symbol = StringUtils::escapeWhitespace($symbol, false); 55 return \sprintf('%s(\'%s\')', self::class, $symbol);
|
| /plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Transitions/ |
| H A D | NotSetTransition.php | 9 public function matches(int $symbol, int $minVocabSymbol, int $maxVocabSymbol) : bool argument 11 return $symbol >= $minVocabSymbol && $symbol <= $maxVocabSymbol 12 && !parent::matches($symbol, $minVocabSymbol, $maxVocabSymbol);
|
| H A D | WildcardTransition.php | 9 public function matches(int $symbol, int $minVocabSymbol, int $maxVocabSymbol) : bool argument 11 return $symbol >= $minVocabSymbol && $symbol <= $maxVocabSymbol;
|
| H A D | RangeTransition.php | 32 public function matches(int $symbol, int $minVocabSymbol, int $maxVocabSymbol) : bool argument 34 return $symbol >= $this->from && $symbol <= $this->to;
|
| H A D | AtomTransition.php | 27 public function matches(int $symbol, int $minVocabSymbol, int $maxVocabSymbol) : bool argument 29 return $this->label === $symbol;
|
| H A D | SetTransition.php | 31 public function matches(int $symbol, int $minVocabSymbol, int $maxVocabSymbol) : bool argument 33 return $this->set->contains($symbol);
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Directory/ |
| D | UserOrganization.php | 61 public $symbol; variable in Google\\Service\\Directory\\UserOrganization 200 public function setSymbol($symbol) argument 202 $this->symbol = $symbol; 209 return $this->symbol;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/PeopleService/ |
| D | Organization.php | 71 public $symbol; variable in Google\\Service\\PeopleService\\Organization 266 public function setSymbol($symbol) argument 268 $this->symbol = $symbol; 275 return $this->symbol;
|
| /plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/ |
| D | scope.js | 304 AST_Scope.DEFMETHOD("def_function", function(symbol){ argument 305 this.functions.set(symbol.name, this.def_variable(symbol)); 308 AST_Scope.DEFMETHOD("def_variable", function(symbol){ argument 310 if (!this.variables.has(symbol.name)) { 311 def = new SymbolDef(this, this.variables.size(), symbol); 312 this.variables.set(symbol.name, def); 315 def = this.variables.get(symbol.name); 316 def.orig.push(symbol); 318 return symbol.thedef = def; 419 this.globals.each(function(symbol){ argument [all …]
|
| /plugin/asciidocjs/node_modules/nunjucks/src/ |
| D | transformer.js | 71 var symbol; 75 symbol = new nodes.Symbol(descNode.lineno, descNode.colno, gensym()); 76 …push(new nodes.FilterAsync(descNode.lineno, descNode.colno, descNode.name, descNode.args, symbol)); 78 return symbol; 115 var symbol = gensym(); 120 return new nodes.Symbol(node.lineno, node.colno, symbol); 124 …kNode.body.children.unshift(new nodes.Super(0, 0, blockNode.name, new nodes.Symbol(0, 0, symbol)));
|
| /plugin/asciidocjs/node_modules/handlebars/lib/handlebars/compiler/ |
| D | parser.js | 227 var symbol, preErrorSymbol, state, action, a, r, yyval = {}, p, len, newState, expected; 233 if (symbol === null || typeof symbol == "undefined") { 234 symbol = lex(); 236 action = table[state] && table[state][symbol]; 247 …n() + "\nExpecting " + expected.join(", ") + ", got '" + (this.terminals_[symbol] || symbol) + "'"; 249 …ne " + (yylineno + 1) + ": Unexpected " + (symbol == 1?"end of input":"'" + (this.terminals_[symbo… 251 ….parseError(errStr, {text: this.lexer.match, token: this.terminals_[symbol] || symbol, line: this.… 255 …hrow new Error("Parse Error: multiple actions possible at state: " + state + ", token: " + symbol); 259 stack.push(symbol); 263 symbol = null; [all …]
|
| /plugin/asciidocjs/node_modules/lodash/ |
| D | _cloneSymbol.js | 14 function cloneSymbol(symbol) { argument 15 return symbolValueOf ? Object(symbolValueOf.call(symbol)) : {};
|
| D | _getSymbols.js | 25 return arrayFilter(nativeGetSymbols(object), function(symbol) { argument 26 return propertyIsEnumerable.call(object, symbol);
|
| /plugin/asciidocjs/node_modules/uglify-js/lib/ |
| D | ast.js | 335 …enclosed: "[SymbolDef*/S] a list of all symbol definitions that are accessed from this scope or an… 1972 name: "[string] name of this symbol", 1974 thedef: "[SymbolDef/S] the definition of this symbol" 1986 …$documentation: "A declaration symbol (symbol in var, function name or argument, symbol in catch)", 2051 $documentation: "Reference to some symbol (not definition/declaration)", 2069 $documentation: "Reference to a label symbol", 2081 $documentation: "The `super` symbol", 2088 $documentation: "The `this` symbol", 2095 $documentation: "The `new.target` symbol",
|
| /plugin/diagramsnet/lib/img/lib/ibm/social/ |
| D | file_sync.svg | 1 …k" viewBox="0 0 60.4 60.4"><symbol id="A" viewBox="-26.5 -26.5 53 53"><circle cx="0" cy="0" r="26.…
|
| D | live_collaboration.svg | 1 …k" viewBox="0 0 59.3 59.3"><symbol id="A" viewBox="-26.5 -26.5 53 53"><circle cx="0" cy="0" r="26.…
|
| D | networking.svg | 1 …k" viewBox="0 0 59.3 59.3"><symbol id="A" viewBox="-26.5 -26.5 53 53"><circle cx="0" cy="0" r="26.…
|
| /plugin/codemirror/dist/modes/ |
| D | cobol.min.js | 1 …symbol:/[\w*+\-]/};function o(a,b){if(a==="0"&&b.eat(/x/i)){b.eatWhile(n.hex);return true}if((a=="… property
|
| D | clojure.min.js.map | 1 …symbol","next","eatWhile","c","is","lastToken","inComment","charAt","escaped","parenthesisCount","…
|
| /plugin/highlightjs/highlight/styles/ |
| D | magula.css | 28 .ruby .symbol, 54 .smalltalk .symbol,
|
| D | default.css | 35 .ruby .symbol, 62 .smalltalk .symbol,
|
| /plugin/sequencediagram/bower_components/js-sequence-diagrams/dist/ |
| D | sequence-diagram-snap.js | 469 … for (var symbol, preErrorSymbol, state, action, r, p, len, newState, expected, yyval = {}; ;) { 470 …] ? action = this.defaultActions[state] : (null !== symbol && "undefined" != typeof symbol || (sym… 471 …action = table[state] && table[state][symbol]), "undefined" == typeof action || !action.length || … 475 …symbol] || symbol) + "'" : "Parse error on line " + (yylineno + 1) + ": Unexpected " + (symbol == … 478 token: this.terminals_[symbol] || symbol, 484 …hrow new Error("Parse Error: multiple actions possible at state: " + state + ", token: " + symbol); 487 … stack.push(symbol), vstack.push(lexer.yytext), lstack.push(lexer.yylloc), stack.push(action[1]), 488 …symbol = null, preErrorSymbol ? (symbol = preErrorSymbol, preErrorSymbol = null) : (yyleng = lexer…
|
| D | sequence-diagram-raphael.js | 469 … for (var symbol, preErrorSymbol, state, action, r, p, len, newState, expected, yyval = {}; ;) { 470 …] ? action = this.defaultActions[state] : (null !== symbol && "undefined" != typeof symbol || (sym… 471 …action = table[state] && table[state][symbol]), "undefined" == typeof action || !action.length || … 475 …symbol] || symbol) + "'" : "Parse error on line " + (yylineno + 1) + ": Unexpected " + (symbol == … 478 token: this.terminals_[symbol] || symbol, 484 …hrow new Error("Parse Error: multiple actions possible at state: " + state + ", token: " + symbol); 487 … stack.push(symbol), vstack.push(lexer.yytext), lstack.push(lexer.yylloc), stack.push(action[1]), 488 …symbol = null, preErrorSymbol ? (symbol = preErrorSymbol, preErrorSymbol = null) : (yyleng = lexer…
|