| /plugin/combo/vendor/antlr/antlr4-php-runtime/src/ |
| H A D | Interval.php | 15 public $start; variable in Antlr\\Antlr4\\Runtime\\Interval 20 public function __construct(int $start, int $stop) argument 22 $this->start = $start; 35 return $item >= $this->start && $item <= $this->stop; 40 return $this->stop - $this->start + 1; 50 && $this->start === $other->start 59 return $this->start < $other->start && $this->stop < $other->start; 67 return $this->start <= $other->start && $this->stop >= $other->start; 75 return $this->start > $other->start; 83 return $this->start > $other->stop; [all …]
|
| H A D | IntervalSet.php | 45 public static function fromRange(int $start, int $end) : self argument 49 $set->addRange($start, $end); 107 if ($rightInterval->stop < $resultInterval->start) { 113 if ($rightInterval->start > $resultInterval->stop) { 121 if ($rightInterval->start > $resultInterval->start) { 122 $beforeCurrent = new Interval($resultInterval->start, $rightInterval->start - 1); 182 return $this->intervals[0]->start; 201 if ($addition->stop < $addition->start) { 261 $this->addInterval(new Interval($i->start, $i->stop)); 279 $start = $interval->start; [all …]
|
| /plugin/asciidocjs/node_modules/resolve/test/ |
| D | node-modules-paths.js | 8 var verifyDirs = function verifyDirs(t, start, dirs, moduleDirectories, paths) { argument 26 …t.equal(keys(parsedDirs).length >= start.split(path.sep).length, true, 'there are >= dirs than "st… 40 var start = path.join(__dirname, 'resolver'); 41 var dirs = nodeModulesPaths(start); 43 verifyDirs(t, start, dirs); 49 var start = path.join(__dirname, 'resolver'); 50 var dirs = nodeModulesPaths(start, {}); 52 verifyDirs(t, start, dirs); 58 var start = path.join(__dirname, 'resolver'); 60 var dirs = nodeModulesPaths(start, { paths: paths }); [all …]
|
| /plugin/odt/ODT/ |
| D | XMLUtil.php | 57 $start = strpos ($xmlCode, '<'.$element, $pos); 58 if ($start === false) { 63 $next = $xmlCode [$start+$elementLength+1]; 69 $pos = $start+$elementLength; 71 $pos = $start+$elementLength; 85 return substr ($xmlCode, $start, $angle-$start+1); 100 return substr ($xmlCode, $start, $end-$start); 125 $start = strpos ($xmlCode, '<'.$element, $pos); 126 if ($start === false) { 131 $next = $xmlCode [$start+$elementLength+1]; [all …]
|
| /plugin/statistics/inc/ |
| D | StatisticsQuery.class.php | 206 public function searchengines($tlimit, $start = 0, $limit = 20) { argument 212 $this->mklimit($start, $limit); 216 public function searchphrases($extern, $tlimit, $start = 0, $limit = 20) { argument 230 $this->mklimit($start, $limit); 234 public function searchwords($extern, $tlimit, $start = 0, $limit = 20) { argument 250 $this->mklimit($start, $limit); 254 public function outlinks($tlimit, $start = 0, $limit = 20) { argument 260 $this->mklimit($start, $limit); 264 public function pages($tlimit, $start = 0, $limit = 20) { argument 271 $this->mklimit($start, $limit); [all …]
|
| /plugin/asciidocjs/node_modules/pug-filters/node_modules/wordwrap/ |
| D | index.js | 1 var wordwrap = module.exports = function (start, stop, params) { 2 if (typeof start === 'object') { 3 params = start; 4 start = params.start; 10 start = start || params.start; 15 stop = start; 16 start = 0; 28 for (var i = 0; i < x.length; i += stop - start) { 29 acc.push(x.slice(i, i + stop - start)); 48 new Array(start + 1).join(' ') [all …]
|
| /plugin/asciidocjs/node_modules/wordwrap/ |
| D | index.js | 1 var wordwrap = module.exports = function (start, stop, params) { 2 if (typeof start === 'object') { 3 params = start; 4 start = params.start; 10 start = start || params.start; 15 stop = start; 16 start = 0; 28 for (var i = 0; i < x.length; i += stop - start) { 29 acc.push(x.slice(i, i + stop - start)); 48 new Array(start + 1).join(' ') [all …]
|
| /plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Tokenizers/ |
| D | Comment.php | 183 * @param int $start The position in the string to start processing. 188 private function _processLine($string, $eolChar, $start, $end) argument 193 $space = $this->_collectWhitespace($string, $start, $end); 196 $start += strlen($space['content']); 199 if (isset($string[$start]) === false) { 203 if ($string[$start] === '@') { 206 preg_match('/@[^\s]+/', $string, $matches, 0, $start); 209 $start += strlen($tagName); 217 $space = $this->_collectWhitespace($string, $start, $end); 220 $start += strlen($space['content']); [all …]
|
| /plugin/icalevents/vendor/sabre/vobject/lib/ |
| D | FreeBusyData.php | 19 protected $start; variable in Sabre\\VObject\\FreeBusyData 35 function __construct($start, $end) { argument 37 $this->start = $start; 42 'start' => $this->start, 52 * @param int $start 57 function add($start, $end, $type) { argument 59 if ($start > $this->end || $end < $this->start) { 66 if ($start < $this->start) { 68 $start = $this->start; 77 while ($start > $this->data[$currentIndex]['end']) { [all …]
|
| /plugin/webdav/vendor/sabre/vobject/lib/ |
| D | FreeBusyData.php | 19 protected $start; variable in Sabre\\VObject\\FreeBusyData 35 public function __construct($start, $end) argument 37 $this->start = $start; 42 'start' => $this->start, 51 * @param int $start 55 public function add($start, $end, $type) argument 57 if ($start > $this->end || $end < $this->start) { 62 if ($start < $this->start) { 64 $start = $this->start; 73 while ($start > $this->data[$currentIndex]['end']) { [all …]
|
| /plugin/asciidocjs/node_modules/pug-parser/ |
| D | index.js | 54 line: token.loc.start.line, 55 column: token.loc.start.column, 232 return this.initBlock(this.peek().loc.start.line, this.parseTextHtml()); 253 if (!this.peek().loc.start) debugger; 279 var lineno = this.peek().loc.start.line; 289 line: tok.loc.start.line, 290 column: tok.loc.start.column, 302 line: tok.loc.start.line, 303 column: tok.loc.start.column, 315 line: tok.loc.start.line, [all …]
|
| /plugin/indexmenu/scripts/fancytree/modules/ |
| D | jquery.fancytree.grid.js | 90 start, argument 96 start = start == null ? vp.start : start; 98 var orgStart = start; 101 start = Math.min(start, this.visibleNodeList.length - vp.count); 102 start = Math.max(start, 0, start); 103 if (start !== orgStart) { 104 this.debug("Adjust start " + orgStart + " => " + start); 106 vp.start = start; 110 return start; 128 start: this.viewport.start + (ofs > 0 ? 1 : -1), property [all …]
|
| /plugin/asciidocjs/node_modules/uglify-js/lib/ |
| D | parse.js | 794 var start = S.token; 797 expr.start = start; 818 var value = body.start.raw.slice(1, -1); 878 start : S.token, property 1024 …token_error(ref.label.start, "Continue label `" + label.name + "` must refer to IterationStatement… 1046 if (!ldef) token_error(label.start, "Undefined label " + label.name); 1089 var start = S.token; 1098 gen.start = gen_start; 1101 start: start, property 1112 start: start, property [all …]
|
| D | mozilla-ast.js | 50 start: my_start_token(M), property 65 start: my_start_token(M), property 96 start: my_start_token(M), property 120 start: my_start_token(M), property 130 start: my_start_token(M), property 139 start: my_start_token(M), property 168 start: my_start_token(M), property 187 start: my_start_token(M), property 196 var start = my_start_token(M); 199 start: start, property [all …]
|
| /plugin/asciidocjs/node_modules/lodash/ |
| D | _baseFill.js | 14 function baseFill(array, value, start, end) { argument 17 start = toInteger(start); 18 if (start < 0) { 19 start = -start > length ? 0 : (length + start); 25 end = start > end ? 0 : toLength(end); 26 while (start < end) { 27 array[start++] = value;
|
| D | _baseSlice.js | 10 function baseSlice(array, start, end) { argument 14 if (start < 0) { 15 start = -start > length ? 0 : (length + start); 21 length = start > end ? 0 : ((end - start) >>> 0); 22 start >>>= 0; 26 result[index] = array[index + start];
|
| D | _overRest.js | 15 function overRest(func, start, transform) { argument 16 start = nativeMax(start === undefined ? (func.length - 1) : start, 0); 20 length = nativeMax(args.length - start, 0), 24 array[index] = args[start + index]; 27 var otherArgs = Array(start + 1); 28 while (++index < start) { 31 otherArgs[start] = transform(array);
|
| D | _createRange.js | 13 return function(start, end, step) { argument 14 if (step && typeof step != 'number' && isIterateeCall(start, end, step)) { 18 start = toFinite(start); 20 end = start; 21 start = 0; 25 step = step === undefined ? (start < end ? 1 : -1) : toFinite(step); 26 return baseRange(start, end, step, fromRight);
|
| /plugin/virtualkeyboard/vk/extensions/ |
| D | arrayextensions.js | 67 Array.prototype.slice = function(start, end) { argument 74 if (start < 0) start = this.length + start; 77 if (end < start) { 79 end = start; 80 start = temp; 85 for (var i = 0; i < end - start; i++) { 86 newArray[i] = this[start + i]; 94 Array.prototype.splice = function(start, deleteCount) { argument 95 if (deleteCount == null || deleteCount == '') deleteCount = this.length - start; 101 for (var i = start, aL = start + arguments.length - 2; i < aL; i++) { [all …]
|
| /plugin/jquery-syntax/jquery-syntax/ |
| D | jquery.syntax.layout.editor.js | 12 result.start=j;i=this.current.lines.length,j=updated.lines.length;while(i>result.start&&j>result.st… 13 …h-this.current.lines.length;while(result.start>0){if(updated.offsets[result.start]==updated.offset… 14 break;result.start-=1;} 18 Syntax.Editor.prototype.textForLines=function(start,end){return this.current.lines.slice(start,end)… argument 19 …start!=changed.end){var start=changed.start,end=changed.end;start+=this.current.offsets[start];end… 20 …ner).prepend(newLines);else{var start=changed.start;start+=this.current.offsets[start];$(this.cont… 26 ….getClientState();var changed=editor.updateChangedLines();if(changed.difference<0&&changed.start>0) 27 changed.start-=1;var text=editor.textForLines(changed.start,changed.end);if(changed.start==changed.…
|
| /plugin/webdav/vendor/sabre/dav/lib/CalDAV/Xml/Request/ |
| D | FreeBusyQueryReport.php | 29 public $start; variable in Sabre\\CalDAV\\Xml\\Request\\FreeBusyQueryReport 63 $start = null; 70 $start = empty($elem['attributes']['start']) ?: $elem['attributes']['start']; 74 if (!$start && !$end) { 77 if ($start) { 78 $start = DateTimeParser::parseDateTime($start); 84 $result->start = $start;
|
| /plugin/davcal/vendor/sabre/dav/lib/CalDAV/Xml/Request/ |
| H A D | FreeBusyQueryReport.php | 29 public $start; variable in Sabre\\CalDAV\\Xml\\Request\\FreeBusyQueryReport 63 $start = null; 70 $start = empty($elem['attributes']['start']) ?: $elem['attributes']['start']; 74 if (!$start && !$end) { 77 if ($start) { 78 $start = DateTimeParser::parseDateTime($start); 84 $result->start = $start;
|
| /plugin/findologicxmlexport/ |
| D | OutputXMLHelper.php | 65 public function paramsValid($start, $count, $type) argument 67 $start = filter_var($start, $type); 69 return (is_int($count) && is_int($start) && $start >= 0 && $count > 0); 96 public function getXml($start, $count) argument 100 return $dokuwikiXmlExport->generateXMLExport($start, $count); 118 public function printXml($start, $count) { argument 120 echo $this->getXml($start, $count);
|
| /plugin/diagrams/script/ |
| H A D | embed-toolbar.js | 21 selection.end = selection.start; 24 const start = area.value.lastIndexOf(open, selection.start); 28 const prev = area.value.lastIndexOf(close, selection.start - close.length); 29 const next = area.value.indexOf(open, selection.start + open.length); 32 if (start < min) return selection; 33 if (prev > -1 && prev > min && start < prev) return selection; 38 selection.start = area.value.indexOf('>', start) + 1; 52 const origSvg = area.value.substring(selection.start, selection.end); 59 area.value = area.value.substring(0, selection.start) +
|
| /plugin/structgantt/meta/ |
| D | Gantt.php | 124 $start = $row[$this->colrefStart]->getCompareValue(); 125 $start = explode(' ', $start); // cut off time 126 $start = array_shift($start); 127 if ($start && $start < $min) $min = $start; 128 if ($start && $start > $max) $max = $start; 290 $start = $row[$this->colrefStart]->getCompareValue(); 293 if ($start && $end) { 294 $r1 = $this->listDays($this->minDate, $start); 295 $r2 = $this->listDays($start, $end); 351 * @param string $start as YYYY-MM-DD [all …]
|