| /template/strap/vendor/antlr/antlr4-php-runtime/src/Tree/ |
| H A D | SyntaxTree.php | 7 use Antlr\Antlr4\Runtime\Interval; alias 10 * A tree that knows about an interval in a token stream 17 * Return an {@see Interval} indicating the index in the 19 * subtree. If this node is a leaf, then the interval represents a single 20 * token and has interval i..i for token index i. 22 * An interval of i..i-1 indicates an empty interval at position 25 * in concept one could have an empty interval after EOF. 27 * If source interval is unknown, this returns {@see Interval::invalid()}. 29 * As a weird special case, the source interval for rules matched after 32 public function getSourceInterval() : Interval;
|
| H A D | TerminalNodeImpl.php | 7 use Antlr\Antlr4\Runtime\Interval; alias 52 public function getSourceInterval() : Interval 55 return new Interval(-1, -2); 60 return new Interval($tokenIndex, $tokenIndex);
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/ |
| H A D | Interval.php | 10 * An immutable inclusive interval start..stop (both start and stop included). 12 final class Interval implements Equatable class 30 return $invalid ?? $invalid = new Interval(-1, -2); 57 public function startsBeforeDisjoint(Interval $other) : bool 65 public function startsBeforeNonDisjoint(Interval $other) : bool 73 public function startsAfter(Interval $other) : bool 81 public function startsAfterDisjoint(Interval $other) : bool 89 public function startsAfterNonDisjoint(Interval $other) : bool 98 public function disjoint(Interval $other) : bool 106 public function adjacent(Interval $other) : bool [all …]
|
| H A D | TokenStream.php | 45 * Return the text of all tokens within the specified `interval`. 52 * for ($i = $interval->a; $i <= $interval->b; $i++) { 56 * @param Interval $interval The interval of tokens within this stream 59 * @return string The text of all tokens within the specified interval 62 public function getTextByInterval(Interval $interval) : string; argument 71 * $text = $stream->getText(new Interval(0, $stream->size())); 78 * Return the text of all tokens in the source interval of the specified context. 83 * If `ctx.getSourceInterval()` does not return a valid interval of tokens 89 * @param RuleContext $context The context providing the source interval 92 * @return string The text of all tokens within the source interval of `context`. [all …]
|
| H A D | IntervalSet.php | 24 /** @var array<Interval> */ 83 * Compute the set difference between two interval sets. The specific 122 $beforeCurrent = new Interval($resultInterval->start, $rightInterval->start - 1); 126 $afterCurrent = new Interval($rightInterval->stop + 1, $resultInterval->stop); 131 // split the current interval into two 140 // replace the current interval 147 // replace the current interval 154 // remove the current interval (thus no need to increment resultI) 187 $this->addInterval(new Interval($value, $value)); 192 $this->addInterval(new Interval($left, $right)); [all …]
|
| H A D | CharStream.php | 15 * specified `interval` lies entirely within a marked range. For more 18 * @return string The text of the specified interval.
|
| H A D | BufferedTokenStream.php | 453 public function getTextByInterval(Interval $interval) : string argument 458 if ($interval->start < 0 || $interval->stop < 0) { 462 $stop = $interval->stop; 469 for ($i = $interval->start; $i <= $stop; $i++) { 484 return $this->getTextByInterval(new Interval(0, \count($this->tokens) - 1)); 492 return $this->getTextByInterval(new Interval($startIndex, $stopIndex));
|
| H A D | LL1Analyzer.php | 57 $interval = new IntervalSet(); 65 $interval, 74 if ($interval->length() === 0 || $interval->contains(self::HIT_PRED)) { 77 $look[$alt] = $interval;
|
| H A D | ParserRuleContext.php | 255 public function getSourceInterval() : Interval 258 return Interval::invalid(); 261 return new Interval($this->start->getTokenIndex(), $this->stop->getTokenIndex());
|
| H A D | RuleContext.php | 112 public function getSourceInterval() : Interval 114 return Interval::invalid();
|
| /template/lcars/js/ |
| D | jquery.timers-1.1.2.js | 13 everyTime: function(interval, label, fn, times, belay) { argument 15 jQuery.timer.add(this, interval, label, fn, times, belay); 18 oneTime: function(interval, label, fn) { argument 20 jQuery.timer.add(this, interval, label, fn, 1); 60 add: function(element, interval, label, fn, times, belay) { argument 67 label = interval; 70 interval = jQuery.timer.timeParse(interval); 72 if (typeof interval != 'number' || isNaN(interval) || interval <= 0) 102 timers[label][fn.timerID] = window.setInterval(handler,interval);
|
| /template/strap/resources/snippet/js/ |
| H A D | combo-debounce.js | 7 * @param interval - in ms 8 * @param leadingExecution - if true, the execution happens before the interval 11 module.debounce = function (callBack, interval, leadingExecution = false) { argument 32 // trailing execution happens at the end of the interval 41 timerId = setTimeout(funcToSchedule, interval);
|
| /template/templar/js/ |
| D | bootstrap-carousel.js | 42 if (this.interval) clearInterval(this.interval); 43 this.options.interval 45 && (this.interval = setInterval($.proxy(this.next, this), this.options.interval)) 80 clearInterval(this.interval) 81 this.interval = null 98 , isCycling = this.interval 169 else if (options.interval) data.pause().cycle() 174 interval: 5000 property
|
| /template/strap/vendor/php-webdriver/webdriver/lib/ |
| H A D | WebDriverWait.php | 26 protected $interval; variable in Facebook\\WebDriver\\WebDriverWait 32 $this->interval = $interval_in_millisecond ?: 250; 64 usleep($this->interval * 1000);
|
| /template/strap/.github/ |
| H A D | dependabot.yml | 12 interval: "daily" 20 interval: "weekly"
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/Error/Listeners/ |
| H A D | DiagnosticErrorListener.php | 9 use Antlr\Antlr4\Runtime\Interval; alias 67 …$tokenStream === null ? '' : $tokenStream->getTextByInterval(new Interval($startIndex, $stopIndex)) 86 …$tokenStream === null ? '' : $tokenStream->getTextByInterval(new Interval($startIndex, $stopIndex)) 105 …$tokenStream === null ? '' : $tokenStream->getTextByInterval(new Interval($startIndex, $stopIndex))
|
| /template/dokubootstrapsimplified/js/ |
| D | bootstrap.min.js | 9 …interval=this.$active=this.$items=null,"hover"==this.options.pause&&this.$element.on("mouseenter",… property
|
| /template/dokutwitterbootstrap/js/ |
| D | bootstrap.min.js | 9 …interval=this.$active=this.$items=null,"hover"==this.options.pause&&this.$element.on("mouseenter",… property
|
| /template/starterbootstrap/js/ |
| D | bootstrap.min.js | 6 …interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$elemen… property
|
| /template/launch/js/ |
| D | bootstrap.min.js | 6 …interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$elemen… property
|
| /template/flat/assets/js/ |
| D | flat.min2.js | 1 …interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$elemen… property
|
| D | flat.min.js | 1 …interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$elemen… property
|
| /template/klean/bootstrap/js/ |
| D | bootstrap.min.js | 6 …interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$elemen… property
|
| /template/flat/ |
| D | flat.min.js | 1 …interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$elemen… property
|
| /template/kajukkk/bs/ |
| D | bootstrap.min.js | 11 …interval&&n.pause().cycle()})}var i=function(e,i){this.$element=t(e),this.$indicators=this.$elemen… property
|