Home
last modified time | relevance | path

Searched refs:symbol (Results 1 – 25 of 268) sorted by relevance

1234567891011

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Tree/
H A DTerminalNodeImpl.php14 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/
Dasciimathml148r.js467 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 DLexerNoViableAltException.php43 $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 DNotSetTransition.php9 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 DWildcardTransition.php9 public function matches(int $symbol, int $minVocabSymbol, int $maxVocabSymbol) : bool argument
11 return $symbol >= $minVocabSymbol && $symbol <= $maxVocabSymbol;
H A DRangeTransition.php32 public function matches(int $symbol, int $minVocabSymbol, int $maxVocabSymbol) : bool argument
34 return $symbol >= $this->from && $symbol <= $this->to;
H A DAtomTransition.php27 public function matches(int $symbol, int $minVocabSymbol, int $maxVocabSymbol) : bool argument
29 return $this->label === $symbol;
H A DSetTransition.php31 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/
DUserOrganization.php61 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/
DOrganization.php71 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/
Dscope.js304 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/
Dtransformer.js71 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/
Dparser.js227 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.js14 function cloneSymbol(symbol) { argument
15 return symbolValueOf ? Object(symbolValueOf.call(symbol)) : {};
D_getSymbols.js25 return arrayFilter(nativeGetSymbols(object), function(symbol) { argument
26 return propertyIsEnumerable.call(object, symbol);
/plugin/asciidocjs/node_modules/uglify-js/lib/
Dast.js335 …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/
Dfile_sync.svg1 …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.…
Dlive_collaboration.svg1 …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.…
Dnetworking.svg1 …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/
Dcobol.min.js1symbol:/[\w*+\-]/};function o(a,b){if(a==="0"&&b.eat(/x/i)){b.eatWhile(n.hex);return true}if((a=="… property
Dclojure.min.js.map1symbol","next","eatWhile","c","is","lastToken","inComment","charAt","escaped","parenthesisCount","…
/plugin/highlightjs/highlight/styles/
Dmagula.css28 .ruby .symbol,
54 .smalltalk .symbol,
Ddefault.css35 .ruby .symbol,
62 .smalltalk .symbol,
/plugin/sequencediagram/bower_components/js-sequence-diagrams/dist/
Dsequence-diagram-snap.js469 … 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 || …
475symbol] || 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]),
488symbol = null, preErrorSymbol ? (symbol = preErrorSymbol, preErrorSymbol = null) : (yyleng = lexer…
Dsequence-diagram-raphael.js469 … 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 || …
475symbol] || 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]),
488symbol = null, preErrorSymbol ? (symbol = preErrorSymbol, preErrorSymbol = null) : (yyleng = lexer…

1234567891011