Home
last modified time | relevance | path

Searched refs:endRange (Results 1 – 6 of 6) sorted by relevance

/plugin/findologicxmlexport/vendor/sebastian/diff/src/
H A DChunk.php33 private $endRange; variable in SebastianBergmann\\Diff\\Chunk
44 * @param int $endRange
47 …public function __construct($start = 0, $startRange = 1, $end = 0, $endRange = 1, array $lines = a… argument
52 $this->endRange = (int) $endRange;
85 return $this->endRange;
/plugin/behave/
H A Dbehave.js212 endRange; variable
228 endRange = textAreaElement.createTextRange();
229 endRange.collapse(false);
231 if (textInputRange.compareEndPoints("StartToEnd", endRange) > -1) {
237 if (textInputRange.compareEndPoints("EndToEnd", endRange) > -1) {
/plugin/findologicxmlexport/vendor/sebastian/diff/
H A DREADME.md67 [endRange:SebastianBergmann\Diff\Chunk:private] => 7
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Schedule/
H A DPlugin.php691 $endRange = $vFreeBusy->DTEND->getDateTime();
695 $results[] = $this->getFreeBusyForEmail($attendee, $startRange, $endRange, $vObject);
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Schedule/
H A DPlugin.php832 $endRange = $vFreeBusy->DTEND->getDateTime();
836 $results[] = $this->getFreeBusyForEmail($attendee, $startRange, $endRange, $vObject);
/plugin/edittable/lib/
H A Dhandsontable.full.js50139 endRange: null,
50833 this._o.endRange = defaults.endRange;
50846 this._o.endRange = value;
50994 isEndRange = opts.endRange && compareDates(opts.endRange, day),
50995 … isInRange = opts.startRange && opts.endRange && opts.startRange < day && day < opts.endRange,