Home
last modified time | relevance | path

Searched refs:start (Results 26 – 50 of 1772) sorted by relevance

12345678910>>...71

/plugin/booking/
H A Dhelper.php55 list($start, $end, $user) = explode("\t", $line, 3);
58 if ($start > $to) continue;
66 $bookings[$start] = [
67 'start' => $start,
121 $start = strtotime($begin);
122 $end = $start + $this->parseTime($length);
123 if ($start == $end) throw new \Exception('No valid length specified', self::E_NOLENGTH);
125 $conflicts = $this->getBookings($id, $start, $end);
128 $line = "$start\t$end\t$user\n";
156 list($start, ,$booker) = explode("\t", $line, 3);
[all …]
/plugin/jdraw/src/com/mxgraph/examples/swing/editor/
H A DSchemaGraphComponent.java38 mxCellState start, mxCellState end, boolean isSource) in SchemaGraphComponent()
44 double y = getColumnLocation(edge, start, col); in SchemaGraphComponent()
45 boolean left = start.getX() > end.getX(); in SchemaGraphComponent()
49 double diff = Math.abs(start.getCenterX() in SchemaGraphComponent()
51 - start.getWidth() / 2 - end.getWidth() / 2; in SchemaGraphComponent()
59 double x = (left) ? start.getX() : start.getX() in SchemaGraphComponent()
60 + start.getWidth(); in SchemaGraphComponent()
61 double x2 = (left) ? start.getX() - 20 : start.getX() in SchemaGraphComponent()
62 + start.getWidth() + 20; in SchemaGraphComponent()
74 super.updateFloatingTerminalPoint(edge, start, end, in SchemaGraphComponent()
/plugin/scrape/HTMLPurifier/Printer/
H A DHTMLDefinition.php
/plugin/webdav/vendor/sabre/vobject/lib/
H A DFreeBusyGenerator.php40 protected $start; variable in Sabre\\VObject\\FreeBusyGenerator
87 * @param DateTimeInterface $start
94 $this->setTimeRange($start, $end);
162 * @param DateTimeInterface $start
167 if (!$start) {
173 $this->start = $start;
196 $this->start->getTimeStamp(),
257 $compStart = $this->start;
448 if ($this->start && $time[1] < $this->start) {
482 if ($this->start && $this->start > $endTime) {
[all …]
/plugin/icalevents/vendor/sabre/vobject/lib/
H A DFreeBusyGenerator.php40 protected $start; variable in Sabre\\VObject\\FreeBusyGenerator
87 * @param DateTimeInterface $start
94 $this->setTimeRange($start, $end);
172 * @param DateTimeInterface $start
179 if (!$start) {
185 $this->start = $start;
212 $this->start->getTimeStamp(),
277 $compStart = $this->start;
485 if ($this->start && $time[1] < $this->start) break;
517 if ($this->start && $this->start > $endTime) continue;
[all …]
/plugin/statistics/
H A Dadmin.php25 protected $start = 0; variable in admin_plugin_statistics
114 $this->start = (int) $_REQUEST['s'];
201 if($this->start > 0) {
202 $go = max($this->start - $limit, 0);
207 $go = $this->start + $limit;
278 $result = $this->hlp->Query()->pages($this->tlimit, $this->start, 15);
286 $result = $this->hlp->Query()->newreferer($this->tlimit, $this->start, 15);
294 $result = $this->hlp->Query()->searchphrases(true, $this->tlimit, $this->start, 15);
311 $result = $this->hlp->Query()->countries($this->tlimit, $this->start, 150);
317 $result = $this->hlp->Query()->pages($this->tlimit, $this->start, 15
[all...]
/plugin/twofactor/
H A Dadmin.php17 protected $start = 0; variable in admin_plugin_twofactor
34 $this->start = $INPUT->int('start');
56 $this->start = 0;
70 $users = $this->applyPagination($users, $this->start, $this->pagesize);
75 $form->setHiddenField('start', $this->start);
88 $form = $this->addTablePagination($form, $usercount, $this->start, $this->pagesize);
178 * @param int $start
182 protected function addTablePagination(Form $form, $usercount, $start, argument
264 applyPagination($users, $start, $pagesize) global() argument
[all...]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/
H A DNonExecutableCodeSniff.php219 for ($start = ($stackPtr + 1); $start < $phpcsFile->numTokens; $start++) {
220 if ($start === $end) {
224 if ($tokens[$start]['code'] === T_OPEN_PARENTHESIS) {
225 $start = $tokens[$start]['parenthesis_closer'];
229 if ($tokens[$start]['code'] === T_OPEN_CURLY_BRACKET) {
230 $start = $tokens[$start]['bracket_closer'];
234 if ($tokens[$start]['code'] === T_SEMICOLON) {
239 $lastLine = $tokens[$start]['line'];
240 for ($i = ($start + 1); $i < $end; $i++) {
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/
H A DJumbledIncrementerSniff.php91 $start = ++$token['scope_opener'];
94 for (; $start <= $end; ++$start) {
95 if ($tokens[$start]['code'] !== T_FOR) {
99 $inner = $this->findIncrementers($tokens, $tokens[$start]);
127 $start = ++$token['parenthesis_opener'];
132 for ($next = $start; $next <= $end; ++$next) {
/plugin/icalevents/vendor/sabre/vobject/lib/Component/
H A DVEvent.php28 * @param DateTimeInterface $start
33 function isInTimeRange(DateTimeInterface $start, DateTimeInterface $end) { argument
39 $it = new EventIterator($this, null, $start->getTimezone());
49 $it->fastForward($start);
57 return ($it->getDTStart() < $end && $it->getDTEnd() > $start);
61 $effectiveStart = $this->DTSTART->getDateTime($start->getTimezone());
80 ($start < $effectiveEnd) && ($end > $effectiveStart)
/plugin/webdav/vendor/sabre/vobject/lib/Component/
H A DVEvent.php28 * @param DateTimeInterface $start
33 public function isInTimeRange(DateTimeInterface $start, DateTimeInterface $end) argument
37 $it = new EventIterator($this, null, $start->getTimezone());
44 $it->fastForward($start);
52 return $it->getDTStart() < $end && $it->getDTEnd() > $start;
55 $effectiveStart = $this->DTSTART->getDateTime($start->getTimezone());
73 ($start < $effectiveEnd) && ($end > $effectiveStart)
/plugin/findologicxmlexport/vendor/sebastian/diff/src/
H A DChunk.php18 private $start; variable in SebastianBergmann\\Diff\\Chunk
41 * @param int $start
47 …public function __construct($start = 0, $startRange = 1, $end = 0, $endRange = 1, array $lines = a… argument
49 $this->start = (int) $start;
61 return $this->start;
/plugin/bibtex/OSBib/format/bibtexParse/
H A DPARSEPAGE.php45 $start = $end = FALSE;
50 $start = trim($array[0]);
52 $start = strtolower(trim($array[0]));
57 if($end && !$start)
58 $this->return = array($end, $start);
60 $this->return = array($start, $end);
/plugin/issuetracker/
H A DxsEditor.js17 var start = textarea.selectionStart;
23 var sel = textarea.value.substring(start, end);
25 … textarea.value = textarea.value.substring(0,start) + rep + textarea.value.substring(end,len);
48 var start = textarea.selectionStart;
50 var sel = textarea.value.substring(start, end);
53 else { var sel = textarea.value.substring(start, end); }
73 var start = textarea.selectionStart;
79 var sel = textarea.value.substring(start, end);
81 … textarea.value = textarea.value.substring(0,start) + rep + textarea.value.substring(end,len);
107 var start = textarea.selectionStart;
[all …]
/plugin/tablelayout/action/
H A Daction.php114 list($start) = explode('-', $RANGE);
115 $start = (int)$start-1; // $RANGE is 1-based
117 if (!$this->isTableSave($event->data['newContent'], $start)) {
120 $pretext = explode("\n", rtrim(substr($event->data['newContent'], 0, $start)));
121 $tableAndSuffix = substr($event->data['newContent'],$start);
147 * @param int $start
150 private function isTableSave($text, $start) argument
152 $firstChar = $text[$start];
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Shaper/
H A DIndic.php232 } /* Apply only if it's a word start. */
233 // STANDALONE_CLUSTER Stand Alone syllable at start of word
418 public static function initial_reordering_syllable(&$info, $GSUBdata, $indic_config, $scriptblock, $is_old_spec, $start, $end) argument
424 $syllable_type = ($info[$start]['syllable'] & 0x0F);
454 $limit = $start;
460 if (count($GSUBdata['rphf']) /* ?? $indic_plan->mask_array[RPHF] */ && $start + 3 <= $end &&
462 ($indic_config[4] == self::REPH_MODE_IMPLICIT && !self::is_joiner($info[$start + 2])) ||
463 ($indic_config[4] == self::REPH_MODE_EXPLICIT && $info[$start + 2]['indic_category'] == self::OT_ZWJ)
466 //$glyphs = array($info[$start]['uni'], $info[$start
911 final_reordering_syllable(& $info, $GSUBdata, $indic_config, $scriptblock, $is_old_spec, $start, $end) global() argument
1928 bubble_sort(& $arr, $start, $len) global() argument
[all...]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DataLabeling/
H A DGoogleCloudDatalabelingV1beta1SequentialSegment.php29 public $start; variable in Google\\Service\\DataLabeling\\GoogleCloudDatalabelingV1beta1SequentialSegment
48 public function setStart($start) argument
50 $this->start = $start;
57 return $this->start;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/TrafficDirectorService/
H A DDoubleRange.php23 public $start; variable in Google\\Service\\TrafficDirectorService\\DoubleRange
33 public function setStart($start) argument
35 $this->start = $start;
39 return $this->start;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DLP/
H A DGooglePrivacyDlpV2Range.php29 public $start; variable in Google\\Service\\DLP\\GooglePrivacyDlpV2Range
48 public function setStart($start) argument
50 $this->start = $start;
57 return $this->start;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudSearch/
H A DMatchRange.php29 public $start; variable in Google\\Service\\CloudSearch\\MatchRange
48 public function setStart($start) argument
50 $this->start = $start;
57 return $this->start;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Apigee/
H A DGoogleCloudApigeeV1DateRange.php29 public $start; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1DateRange
48 public function setStart($start) argument
50 $this->start = $start;
57 return $this->start;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Calendar/
H A DTimePeriod.php29 public $start; variable in Google\\Service\\Calendar\\TimePeriod
48 public function setStart($start) argument
50 $this->start = $start;
57 return $this->start;
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/tests/
H A DTestCase.php102 $coverage->start(
112 $coverage->start(
121 $coverage->start(
130 $coverage->start(
166 $coverage->start(
176 $coverage->start(
206 $coverage->start(
215 $coverage->start(
277 $coverage->start('FileWithIgnoredLines', true);
313 $coverage->start('ClassWithAnonymousFunction', true);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ChromeUXReport/
H A DBin.php30 public $start; variable in Google\\Service\\ChromeUXReport\\Bin
57 public function setStart($start) argument
59 $this->start = $start;
66 return $this->start;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Bigquery/
H A DRangePartitioningRange.php33 public $start; variable in Google\\Service\\Bigquery\\RangePartitioningRange
66 public function setStart($start) argument
68 $this->start = $start;
75 return $this->start;

12345678910>>...71