/plugin/combo/vendor/antlr/antlr4-php-runtime/src/ |
H A D | Interval.php | 15 public $start; variable in Antlr\\Antlr4\\Runtime\\Interval 22 $this->start = $start; 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; 92 return $this->start > $other->start && $this->start <= $other->stop; 108 return $this->start === $other->stop + 1 || $this->stop === $other->start - 1; 116 return new self(\min($this->start, $other->start), \max($this->stop, $other->stop)); 124 return new self(\max($this->start, $other->start), \min($this->stop, $other->stop)); [all …]
|
H A D | IntervalSet.php | 49 $set->addRange($start, $end); 121 if ($rightInterval->start > $resultInterval->start) { 122 $beforeCurrent = new Interval($resultInterval->start, $rightInterval->start - 1); 279 $start = $interval->start; 309 if ($v < $i->start) { 321 if ($v === $i->start) { 338 $i->start = $v + 1; 401 $start = $interval->start; 404 if ($start === $stop) { 452 $start = $interval->start; [all …]
|
/plugin/odt/ODT/ |
H A D | XMLUtil.php | 58 if ($start === false) { 85 return substr ($xmlCode, $start, $angle-$start+1); 100 return substr ($xmlCode, $start, $end-$start); 205 $read = $start+1; 225 $pos = $start+2; 294 $read = $start+1; 314 $pos = $start+2; 332 return substr ($xmlCode, $start, $angle-$start+1); 348 return substr ($xmlCode, $start, $end-$start); 362 if ($start === false) { [all …]
|
/plugin/statistics/inc/ |
H A D | StatisticsQuery.class.php | 212 $this->mklimit($start, $limit); 230 $this->mklimit($start, $limit); 250 $this->mklimit($start, $limit); 260 $this->mklimit($start, $limit); 271 $this->mklimit($start, $limit); 281 $this->mklimit($start, $limit); 292 $this->mklimit($start, $limit); 484 $start = (int) $start; 488 return " LIMIT $start,$limit"; 489 } elseif($start) { [all …]
|
/plugin/webdav/vendor/sabre/vobject/lib/ |
H A 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/icalevents/vendor/sabre/vobject/lib/ |
H A 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/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Tokenizers/ |
H A D | Comment.php | 196 $start += strlen($space['content']); 199 if (isset($string[$start]) === false) { 203 if ($string[$start] === '@') { 209 $start += strlen($tagName); 220 $start += strlen($space['content']); 226 $eol = strpos($string, $eolChar, $start); 231 if ($eol > $start) { 233 'content' => substr($string, $start, ($eol - $start)), 264 for ($start; $start < $end; $start++) { 265 if ($string[$start] !== ' ' && $string[$start] !== "\t") { [all …]
|
/plugin/virtualkeyboard/vk/extensions/ |
H A D | arrayextensions.js | 74 if (start < 0) start = this.length + start; 77 if (end < start) { 79 end = start; 80 start = temp; 86 newArray[i] = this[start + i]; 101 for (var i = start, aL = start + arguments.length - 2; i < aL; i++) { 102 this[i] = arguments[i - start + 2]; 111 return tempArray.slice(start, start + deleteCount); 219 if (!isNumber(start)) start = 0; 221 ,mn = Math.min(start, end) [all …]
|
H A D | documentselection.js | 50 this.setRange = function(el, start, end, related) { argument 57 start = st+start; 86 range.moveStart("character", start); 87 range.moveEnd("character", end - start); 90 self.setCursorPosition(el,start,end); 101 el[keys['selectionStart']] = parseInt(start); 142 var start; 148 if (start>0 || force) { 162 start -= sTest; 170 try { start = el.selectionStart } catch (e) { start = -1 } [all …]
|
/plugin/jquery-syntax/jquery-syntax/ |
H A 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/ |
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/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/ |
H A 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, selectio [all...] |
/plugin/structgantt/meta/ |
H A D | Gantt.php | 16 /** @var int column number containing the start date */ 75 * The first date column is the start, the second is the end 132 $start = $row[$this->colrefStart]->getCompareValue(); 133 $start = explode(' ', $start); // cut off time 134 $start = array_shift($start); 135 if ($start && $start < $min) $min = $start; 391 listDays($start, $end) global() argument 421 makeHeaders($start, $end) global() argument [all...] |
/plugin/numbering/scripts/ |
H A D | getnum.php | 21 $start = urldecode($helper->getConfValue('nstart')); 22 $number = getNumberingNextNumber($db, $start); 51 function getNumberingNextNumber($db, $start) { argument 56 $ar['saved'] = $start; 57 $ar['start'] = $start; 61 if($ar['start'] != $start) { 62 $ar['start'] = $start; 63 $number = $start; 67 if($number < $start) $number = $start-1;
|
/plugin/jplayer/vendor/happyworm/jplayer/lib/circle-player/js/ |
H A D | jquery.transform2d.js | 203 start = fx.start, 211 if ( !start || typeof start === "string" ) { 214 if ( !start ) { 228 start = fx.start; 232 i = start.length; 424 start: [], property in interpolationList.list 431 ( start == "none" || isAffine( start ) ) && ( start = "" ); 438 start = ""; 448 start && ( start = start.split(")") ) && ( l = start.length ); 452 start[i] && ( currStart = start[i].split("(") ); [all …]
|
/plugin/davcard/vendor/sabre/vobject/lib/Component/ |
H A D | VTodo.php | 25 * @param DateTime $start 29 public function isInTimeRange(\DateTime $start, \DateTime $end) { argument 41 return $start <= $effectiveEnd && $end > $dtstart; 44 ($start < $due || $start <= $dtstart) && 47 return $start <= $dtstart && $end > $dtstart; 51 return ($start < $due && $end >= $due); 55 ($start <= $created || $start <= $completed) && 59 return ($start <= $completed && $end >= $completed);
|
/plugin/webdavclient/vendor/sabre/vobject/lib/Component/ |
H A D | VTodo.php | 25 * @param DateTime $start 29 public function isInTimeRange(\DateTime $start, \DateTime $end) { argument 41 return $start <= $effectiveEnd && $end > $dtstart; 44 ($start < $due || $start <= $dtstart) && 47 return $start <= $dtstart && $end > $dtstart; 51 return ($start < $due && $end >= $due); 55 ($start <= $created || $start <= $completed) && 59 return ($start <= $completed && $end >= $completed);
|
/plugin/davcal/vendor/sabre/vobject/lib/Component/ |
H A D | VTodo.php | 25 * @param DateTime $start 29 public function isInTimeRange(\DateTime $start, \DateTime $end) { argument 41 return $start <= $effectiveEnd && $end > $dtstart; 44 ($start < $due || $start <= $dtstart) && 47 return $start <= $dtstart && $end > $dtstart; 51 return ($start < $due && $end >= $due); 55 ($start <= $created || $start <= $completed) && 59 return ($start <= $completed && $end >= $completed);
|
/plugin/davcard/vendor/sabre/vobject/lib/ |
H A D | FreeBusyGenerator.php | 38 protected $start; variable in Sabre\\VObject\\FreeBusyGenerator 75 * @param DateTime $start 83 if ($start && $end) { 84 $this->setTimeRange($start, $end); 150 * @param DateTime $start 156 $this->start = $start; 218 if ($this->start) { 267 if ($this->start && $time[1] < $this->start) break; 299 if($this->start && $this->start > $endTime) continue; 331 if ($this->start) { [all …]
|
/plugin/webdavclient/vendor/sabre/vobject/lib/ |
H A D | FreeBusyGenerator.php | 38 protected $start; variable in Sabre\\VObject\\FreeBusyGenerator 75 * @param DateTime $start 83 if ($start && $end) { 84 $this->setTimeRange($start, $end); 150 * @param DateTime $start 156 $this->start = $start; 218 if ($this->start) { 267 if ($this->start && $time[1] < $this->start) break; 299 if($this->start && $this->start > $endTime) continue; 331 if ($this->start) { [all …]
|
/plugin/davcal/vendor/sabre/vobject/lib/ |
H A D | FreeBusyGenerator.php | 38 protected $start; variable in Sabre\\VObject\\FreeBusyGenerator 75 * @param DateTime $start 83 if ($start && $end) { 84 $this->setTimeRange($start, $end); 150 * @param DateTime $start 156 $this->start = $start; 218 if ($this->start) { 267 if ($this->start && $time[1] < $this->start) break; 299 if($this->start && $this->start > $endTime) continue; 331 if ($this->start) { [all …]
|
/plugin/webdav/vendor/sabre/vobject/lib/Component/ |
H A D | VTodo.php | 26 * @param DateTimeInterface $start 31 public function isInTimeRange(DateTimeInterface $start, DateTimeInterface $end) argument 43 return $start <= $effectiveEnd && $end > $dtstart; 46 ($start < $due || $start <= $dtstart) && 49 return $start <= $dtstart && $end > $dtstart; 53 return $start < $due && $end >= $due; 57 ($start <= $created || $start <= $completed) && 61 return $start <= $completed && $end >= $completed;
|
/plugin/icalevents/vendor/sabre/vobject/lib/Component/ |
H A D | VTodo.php | 26 * @param DateTimeInterface $start 31 function isInTimeRange(DateTimeInterface $start, DateTimeInterface $end) { argument 42 return $start <= $effectiveEnd && $end > $dtstart; 45 ($start < $due || $start <= $dtstart) && 48 return $start <= $dtstart && $end > $dtstart; 52 return ($start < $due && $end >= $due); 56 ($start <= $created || $start <= $completed) && 60 return ($start <= $completed && $end >= $completed);
|