Home
last modified time | relevance | path

Searched refs:end (Results 176 – 200 of 1305) sorted by relevance

12345678910>>...53

/plugin/favoris/
H A Dfavoris.js38 var end = document.cookie.indexOf(";", begin);
39 if (end == -1) end = dc.length;
40 return unescape(dc.substring(begin + prefix.length, end));
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Objects/
H A DCreateWidgetTypeCallbackSniff.php81 $end = ($tokens[$function]['scope_closer'] - 1);
102 for ($i = $start; $i <= $end; $i++) {
154 $endBracket = end($tokens[$i]['nested_parenthesis']);
190 for ($next = $endBracket; $next <= $end; $next++) {
/plugin/davcard/vendor/sabre/vobject/lib/Component/
H A DVAlarm.php82 public function isInTimeRange(\DateTime $start, \DateTime $end) { argument
97 if ($start <= $occurrence && $end > $occurrence) {
103 return ($start <= $effectiveTrigger && $end > $effectiveTrigger);
H A DVCalendar.php248 * @param DateTime $end
253 function expand(DateTime $start, DateTime $end, DateTimeZone $timeZone = null) { argument
282 if ($vevent->isInTimeRange($start, $end)) {
303 while($it->valid() && $it->getDTStart() < $end) {
/plugin/webdavclient/vendor/sabre/vobject/lib/Component/
H A DVAlarm.php82 public function isInTimeRange(\DateTime $start, \DateTime $end) { argument
97 if ($start <= $occurrence && $end > $occurrence) {
103 return ($start <= $effectiveTrigger && $end > $effectiveTrigger);
H A DVCalendar.php248 * @param DateTime $end
253 function expand(DateTime $start, DateTime $end, DateTimeZone $timeZone = null) { argument
282 if ($vevent->isInTimeRange($start, $end)) {
303 while($it->valid() && $it->getDTStart() < $end) {
/plugin/davcal/vendor/sabre/vobject/lib/Component/
H A DVAlarm.php82 public function isInTimeRange(\DateTime $start, \DateTime $end) { argument
97 if ($start <= $occurrence && $end > $occurrence) {
103 return ($start <= $effectiveTrigger && $end > $effectiveTrigger);
H A DVCalendar.php248 * @param DateTime $end
253 function expand(DateTime $start, DateTime $end, DateTimeZone $timeZone = null) { argument
282 if ($vevent->isInTimeRange($start, $end)) {
303 while($it->valid() && $it->getDTStart() < $end) {
/plugin/authucenter/lib/uc_client/control/
H A Dfeed.php59 $end = $start + $limit;
60 $this->db->query("DELETE FROM ".UC_DBTABLEPRE."feeds WHERE feedid>'$start' AND feedid<'$end'");
84 function _delete($start, $end) { argument
85 $this->db->query("DELETE FROM ".UC_DBTABLEPRE."feeds WHERE feedid>='$start' AND feedid<='$end'");
/plugin/prolog/
H A Dattribute_include.php127 if(preg_match('/[\w]+/', end($IDparts)))
129 elseif(preg_match('/\*\*/', end($IDparts)))
131 elseif(preg_match('/\*/', end($IDparts)))
257 $extension = end(explode('.',end($subdirectories)));
/plugin/refnotes/
H A Dnamespace.php388 $this->getCurrentScope()->getLimits()->end = $callIndex;
393 * Find last scope end within specified range
395 private function findScopeEnd($start, $end) { argument
397 $scopeEnd = $this->scope[$i]->getLimits()->end;
399 if (($scopeEnd > $start) && ($scopeEnd < $end)) {
411 $previousEnd = $this->getPreviousScope()->getLimits()->end;
422 return $this->getPreviousScope()->getLimits()->end + 1;
/plugin/bpmnio/vendor/bpmn-js/dist/assets/bpmn-font/css/
H A Dbpmn-codes.css15 .bpmn-icon-end-event-cancel:before { content: '\e811'; } /* '' */
28 .bpmn-icon-end-event-compensation:before { content: '\e81e'; } /* '' */
32 .bpmn-icon-end-event-error:before { content: '\e822'; } /* '' */
45 .bpmn-icon-end-event-escalation:before { content: '\e82f'; } /* '' */
51 .bpmn-icon-end-event-terminate:before { content: '\e836'; } /* '' */
52 .bpmn-icon-end-event-signal:before { content: '\e837'; } /* '' */
53 .bpmn-icon-end-event-none:before { content: '\e838'; } /* '' */
54 .bpmn-icon-end-event-multiple:before { content: '\e839'; } /* '' */
55 .bpmn-icon-end-event-message:before { content: '\e83a'; } /* '' */
56 .bpmn-icon-end-event-link:before { content: '\e83b'; } /* '' */
/plugin/register/
H A Dregister.php47 var $start, $end, $name, $desc, $flags;
52 $this->end = $data[1];
66 if ($bit_high != -1 && $this->start != $this->end)
69 return array($this->start, $this->end);
74 if ($this->start != $this->end) {
76 $bit_start = $range[0] - $this->end;
77 $bit_end = $range[1] - $this->end;
222 if ($bit <= $b->start && $bit >= $b->end)
378 $b += ($bit->start - $bit->end) * $b_inc;
400 if ($bit->start != $bit->end) {
[all …]
/plugin/codeprettify/code-prettify/src/
H A Dnode_prettify.js358 var end;
360 end = decodeEscape(charsetParts[i + 2]);
363 end = start;
365 ranges.push([start, end]);
370 if (!(end < 65 || start > 122)) {
371 if (!(end < 65 || start > 90)) {
372 ranges.push([Math.max(65, start) | 32, Math.min(end, 90) | 32]);
374 if (!(end < 97 || start > 122)) {
375 ranges.push([Math.max(97, start) & ~32, Math.min(end, 122) & ~32]);
H A Dprettify.js406 var end;
408 end = decodeEscape(charsetParts[i + 2]);
411 end = start;
413 ranges.push([start, end]);
418 if (!(end < 65 || start > 122)) {
419 if (!(end < 65 || start > 90)) {
420 ranges.push([Math.max(65, start) | 32, Math.min(end, 90) | 32]);
422 if (!(end < 97 || start > 122)) {
423 ranges.push([Math.max(97, start) & ~32, Math.min(end, 122) & ~32]);
/plugin/latexit/tests/my/
H A Dtest12.latex13 \end{center}
19 \end{document}
/plugin/davcal/vendor/sabre/dav/bin/
H A Dmigrateto17.php264 $end = $it->getDtEnd();
265 while($it->valid() && $end < $maxDate) {
266 $end = $it->getDtEnd();
270 $lastOccurence = $end->getTimeStamp();
/plugin/diagramsnet/lib/math/extensions/
H A Dtex2jax.js19end:b.inlineMath[c][1],pattern:this.endPattern(b.inlineMath[c][1])}}for(c=0,a=b.displayMath.length… property in search
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/
H A DUnnecessaryFinalModifierSniff.php84 $end = --$token['scope_closer'];
86 for (; $next <= $end; ++$next) {
H A DUselessOverridingMethodSniff.php84 $end = --$token['scope_closer'];
86 for (; $next <= $end; ++$next) {
154 for (++$next; $next <= $end; ++$next) {
H A DForLoopShouldBeWhileLoopSniff.php76 $end = --$token['parenthesis_closer'];
85 for (; $next <= $end; ++$next) {
H A DUnconditionalIfStatementSniff.php83 $end = --$token['parenthesis_closer'];
86 for (; $next <= $end; ++$next) {
H A DForLoopWithTestFunctionCallSniff.php79 $end = --$token['parenthesis_closer'];
83 for (; $next <= $end; ++$next) {
/plugin/combo/action/
H A Dstaticresource.php129 ->end();
252 ->end();
272 ->end();
290 ->end();
346 ->end();
/plugin/s5reloaded/ui/effects_support/
H A Dslider.js42 this.maximum = this.options.maximum || this.range.end;
121 if (value > this.range.end) return this.range.end;
154 ((this.trackLength-this.handleLength)/(this.range.end-this.range.start)) *
159 (this.range.end-this.range.start)) + this.range.start);
193 span.style.height = this.translateToPx(range.end - range.start + this.range.start);
196 span.style.width = this.translateToPx(range.end - range.start + this.range.start);

12345678910>>...53