Home
last modified time | relevance | path

Searched refs:ctx (Results 1 – 20 of 20) sorted by relevance

/template/strap/vendor/antlr/antlr4-php-runtime/src/PredictionContexts/
H A DPredictionContextCache.php29 public function add(PredictionContext $ctx) : PredictionContext argument
31 if ($ctx === PredictionContext::empty()) {
32 return $ctx;
35 $existing = $this->cache->get($ctx);
41 $this->cache->put($ctx, $ctx);
43 return $ctx;
46 public function get(PredictionContext $ctx) : ?PredictionContext argument
48 return $this->cache->get($ctx);
H A DArrayPredictionContext.php42 public static function fromOne(SingletonPredictionContext $ctx) : self argument
44 return new ArrayPredictionContext([$ctx->parent], [$ctx->returnState]);
/template/strap/vendor/antlr/antlr4-php-runtime/src/Error/Exceptions/
H A DRecognitionException.php31 private $ctx; variable in Antlr\\Antlr4\\Runtime\\Error\\Exceptions\\RecognitionException
51 ?ParserRuleContext $ctx, argument
58 $this->ctx = $ctx;
103 if ($this->ctx === null) {
107 return $this->recognizer->getATN()->getExpectedTokens($this->offendingState, $this->ctx);
121 return $this->ctx;
H A DNoViableAltException.php45 ?ParserRuleContext $ctx = null argument
47 if ($ctx === null) {
48 $ctx = $recognizer->getContext();
63 parent::__construct($recognizer, $input, $ctx);
H A DInputMismatchException.php16 …public function __construct(Parser $recognizer, ?int $state = null, ?ParserRuleContext $ctx = null) argument
21 $ctx ?? $recognizer->getContext()
/template/strap/vendor/antlr/antlr4-php-runtime/src/Tree/
H A DParseTreeWalker.php60 $ctx = $ruleNode->getRuleContext();
62 $listener->enterEveryRule($ctx);
64 $ctx->enterRule($listener);
70 $ctx = $ruleNode->getRuleContext();
72 $ctx->exitRule($listener);
74 $listener->exitEveryRule($ctx);
H A DParseTreeListener.php15 public function enterEveryRule(ParserRuleContext $ctx) : void; argument
17 public function exitEveryRule(ParserRuleContext $ctx) : void; argument
/template/strap/vendor/antlr/antlr4-php-runtime/src/
H A DParser.php70 protected $ctx; variable in Antlr\\Antlr4\\Runtime\\Parser
136 $this->ctx = null;
588 $this->ctx = $localctx;
615 $this->ctx = $parent;
625 if ($this->buildParseTree && $this->ctx !== $localctx) {
635 $this->ctx = $localctx;
653 $this->ctx = $localctx;
671 $this->ctx = $localctx;
691 while ($this->ctx !== $parentctx) {
699 $this->ctx = $parent;
[all …]
H A DParserRuleContext.php77 public function copyFrom(ParserRuleContext $ctx) : void argument
80 $this->parentCtx = $ctx->parentCtx;
81 $this->invokingState = $ctx->invokingState;
83 $this->start = $ctx->start;
84 $this->stop = $ctx->stop;
87 if ($ctx->children) {
91 foreach ($ctx->children as $child) {
H A DRuleContext.php185 public function setParent(?RuleContext $ctx) : void argument
187 $this->parentCtx = $ctx;
/template/strap/ComboStrap/
H A DPageSqlTreeListener.php324 * @param ParserRuleContext $ctx
327 function enterEveryRule(ParserRuleContext $ctx): void argument
330 $ruleIndex = $ctx->getRuleIndex();
360 $this->physicalSql .= $ctx->getText();
364 $tableName = strtolower($ctx->getText());
427 * @param ParserRuleContext $ctx
430 function exitEveryRule(ParserRuleContext $ctx): void argument
432 $ruleIndex = $ctx->getRuleIndex();
466 * @param ParserRuleContext $ctx
470 function getRuleName(ParserRuleContext $ctx): string argument
[all …]
/template/bootstrap3/compat/inc/Menu/Item/
DAdmin.php20 public function visibleInContext($ctx) argument
25 return parent::visibleInContext($ctx);
DAbstractItem.php192 * @param int $ctx the current context
195 public function visibleInContext($ctx) { argument
196 return (bool) ($ctx & $this->context);
/template/strap/vendor/antlr/antlr4-php-runtime/src/Error/
H A DDefaultErrorStrategy.php864 $ctx = $recognizer->getContext();
867 while ($ctx !== null && $ctx->invokingState >= 0) {
870 $invokingState = $atn->states[$ctx->invokingState];
875 $ctx = $ctx->getParent();
/template/strap/ComboStrap/PageSqlParser/
H A DPageSqlParser.php297 $localContext = new Context\FunctionNamesContext($this->ctx, $this->getState());
333 $localContext = new Context\ConstantNamesContext($this->ctx, $this->getState());
357 $localContext = new Context\TableNamesContext($this->ctx, $this->getState());
393 $localContext = new Context\SqlNamesContext($this->ctx, $this->getState());
429 $localContext = new Context\ColumnContext($this->ctx, $this->getState());
489 $localContext = new Context\PatternContext($this->ctx, $this->getState());
525 $localContext = new Context\ExpressionContext($this->ctx, $this->getState());
625 $localContext = new Context\PredicateContext($this->ctx, $this->getState());
636 switch ($this->getInterpreter()->adaptivePredict($this->input, 14, $this->ctx)) {
773 $localContext = new Context\ColumnsContext($this->ctx, $this->getState());
[all …]
/template/strap/vendor/antlr/antlr4-php-runtime/
H A DREADME.md78 public function exitEveryRule(ParserRuleContext $ctx) : void {}
80 public function enterEveryRule(ParserRuleContext $ctx) : void {
81 echo $ctx->getText();
/template/mikio/assets/
H A Dmikio.js792 let ctx = canvas.getContext('2d');
795 ctx.fillStyle = color;
796 ctx.fillRect(0, 0, 1, 1);
799 let data = ctx.getImageData(0, 0, 1, 1).data;
/template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DParserATNSimulator.php1093 … protected function computeStartState(ATNState $p, RuleContext $ctx, bool $fullCtx) : ATNConfigSet argument
1096 $initialContext = PredictionContext::fromRuleContext($this->atn, $ctx);
/template/scanlines/htc/PIE-1.0beta5/
DPIE_uncompressed.js162 withImageSize: function( src, func, ctx ) { argument
167 size.push( [ func, ctx ] );
171 func.call( ctx, size );
174 queue = imageSizes[ src ] = [ [ func, ctx ] ]; //create queue
/template/strap/resources/library/rrdiagram/0.9.4.1/
H A Drrdiagram.js.map1ctx","$export","type","source","key","own","out","exp","IS_FORCED","F","IS_GLOBAL","G","IS_STATIC"…