Home
last modified time | relevance | path

Searched refs:start (Results 1 – 25 of 1772) sorted by relevance

12345678910>>...71

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DInterval.php10 * An immutable inclusive interval start..stop (both start and stop included).
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
[all...]
H A DIntervalSet.php43 * Create a set with all ints within range [start..end] (inclusive).
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;
[all...]
/plugin/odt/ODT/
H A DXMLUtil.php58 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 DStatisticsQuery.class.php206 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,
275 edits($tlimit, $start = 0, $limit = 20) global() argument
285 images($tlimit, $start = 0, $limit = 20) global() argument
304 downloads($tlimit, $start = 0, $limit = 20) global() argument
323 referer($tlimit, $start = 0, $limit = 20) global() argument
335 newreferer($tlimit, $start = 0, $limit = 20) global() argument
349 countries($tlimit, $start = 0, $limit = 20) global() argument
361 browsers($tlimit, $start = 0, $limit = 20, $ext = true) global() argument
380 os($tlimit, $start = 0, $limit = 20) global() argument
391 topuser($tlimit, $start = 0, $limit = 20) global() argument
403 topeditor($tlimit, $start = 0, $limit = 20) global() argument
414 topgroup($tlimit, $start = 0, $limit = 20) global() argument
425 topgroupedit($tlimit, $start = 0, $limit = 20) global() argument
437 resolution($tlimit, $start = 0, $limit = 20) global() argument
453 viewport($tlimit, $start = 0, $limit = 20) global() argument
470 seenusers($tlimit, $start = 0, $limit = 20) global() argument
483 mklimit($start, $limit) global() argument
[all...]
/plugin/webdav/vendor/sabre/vobject/lib/
H A DFreeBusyData.php19 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 DFreeBusyData.php19 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 DComment.php196 $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 Darrayextensions.js74 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 Ddocumentselection.js50 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 Djquery.syntax.layout.editor.js12 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
19start!=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 DFreeBusyQueryReport.php29 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 DFreeBusyQueryReport.php29 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 DOutputXMLHelper.php65 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 Dembed-toolbar.js21 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 DGantt.php16 /** @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 Dgetnum.php21 $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 Djquery.transform2d.js203 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 DVTodo.php25 * @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 DVTodo.php25 * @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 DVTodo.php25 * @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 DFreeBusyGenerator.php38 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 DFreeBusyGenerator.php38 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 DFreeBusyGenerator.php38 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 DVTodo.php26 * @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 DVTodo.php26 * @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);

12345678910>>...71