Home
last modified time | relevance | path

Searched refs:end (Results 226 – 250 of 1305) sorted by relevance

12345678910>>...53

/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Metrics/
H A DCyclomaticComplexitySniff.php84 $end = $tokens[$stackPtr]['scope_closer'];
102 for ($i = ($start + 1); $i < $end; $i++) {
/plugin/sketchcanvas/script/
H A Dnewfigure.js31 addField('text', ed.value.substr(sel.start, sel.end - sel.start));
32 addField('suf', ed.value.substr(sel.end));
/plugin/commentsyntax/
H A Dscript.js16 nextchar = selection.obj.value.substring(selection.end,selection.end+1);
/plugin/edittable/script/
H A Dnewtable.js41 addField('text', ed.value.substr(sel.start, sel.end - sel.start));
42 addField('suf', ed.value.substr(sel.end));
H A Dcontextmenu.js16 … for (var currentRow = selection.start.row; currentRow <= selection.end.row; currentRow += 1) {
17 … for (var currentCol = selection.start.col; currentCol <= selection.end.col; currentCol += 1) {
124 var amount = selection.end.row - selection.start.row + 1;
160 var amount = selection.end.col - selection.start.col + 1;
/plugin/ffindr/
H A Dffindr.php94 $end = max(0, $start - $max);
98 $end = min($max, $feed->get_item_quantity() - 1);
106 foreach (range($start, $end, $step) as $i) {
/plugin/noticeboard/classes/
H A DNoticeList.php26 public $end; variable in helper_plugin_noticeboard_NoticeList
199 public function getNoticeList($start,$end){ argument
201 $this->end = $end;
218 for($i = $start;$i<$end && $i<count($array);$i++){
229 if($end < count($array)){
/plugin/noticeboard/noticeboard/classes/
H A DNoticeList.php26 public $end; variable in helper_plugin_noticeboard_NoticeList
199 public function getNoticeList($start,$end){ argument
201 $this->end = $end;
218 for($i = $start;$i<$end && $i<count($array);$i++){
229 if($end < count($array)){
/plugin/codeprettify/code-prettify/src/
H A Drun_prettify.js635 var end;
637 end = decodeEscape(charsetParts[i + 2]);
640 end = start;
642 ranges.push([start, end]);
647 if (!(end < 65 || start > 122)) {
648 if (!(end < 65 || start > 90)) {
649 ranges.push([Math.max(65, start) | 32, Math.min(end, 90) | 32]);
651 if (!(end < 97 || start > 122)) {
652 ranges.push([Math.max(97, start) & ~32, Math.min(end, 122) & ~32]);
/plugin/mdpage/vendor/cebe/markdown/tests/markdown-data/
H A Dendless_loop_bug.md8 > Info: [Actions](structure-controllers.md#creating-actions) are the objects that end users can dir…
10 an action is the response that an end user will receive.
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/PHP/
H A DAjaxNullComparisonSniff.php82 $end = $tokens[$stackPtr]['scope_closer'];
83 for ($i = ($start + 1); $i < $end; $i++) {
/plugin/commonmark/vendor/league/commonmark/src/Extension/TableOfContents/Normalizer/
H A DRelativeNormalizerStrategy.php47 $lastListItem = \end($this->listItemStack);
/plugin/bibtex/OSBib/format/
H A DBIBFORMAT.php436 list($start, $end) = $parsePages->init($row['pages']);
437 $this->formatPages(trim($start), trim($end));
1050 function formatPages($start, $end = FALSE, $citation = FALSE) argument
1061 if(!$end)
1071 $this->item[$this->styleMap->{$type}['pages']] = $start . '-' . $end;
1081 if(($end <= $start) || (strlen($end) < strlen($start)))
1083 $this->item[$this->styleMap->{$type}['pages']] = $start . '-' . $end;
1088 $this->item[$this->styleMap->{$type}['pages']] = $start . '-' . $end;
1104 $endPage = substr($end, -1);
1111 $endPage = substr($end, -2);
[all …]
/plugin/davcard/vendor/sabre/vobject/tests/VObject/Component/
H A DVJournalTest.php13 public function testInTimeRange(VJournal $vtodo,$start,$end,$outcome) { argument
15 $this->assertEquals($outcome, $vtodo->isInTimeRange($start, $end));
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/
H A Dtrim_block.test52 end
74 </ul>end
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Component/
H A DVJournalTest.php13 function testInTimeRange(VJournal $vtodo, $start, $end, $outcome) { argument
15 $this->assertEquals($outcome, $vtodo->isInTimeRange($start, $end));
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/Component/
H A DVJournalTest.php13 public function testInTimeRange(VJournal $vtodo,$start,$end,$outcome) { argument
15 $this->assertEquals($outcome, $vtodo->isInTimeRange($start, $end));
/plugin/davcal/vendor/sabre/vobject/tests/VObject/Component/
H A DVJournalTest.php13 public function testInTimeRange(VJournal $vtodo,$start,$end,$outcome) { argument
15 $this->assertEquals($outcome, $vtodo->isInTimeRange($start, $end));
/plugin/nroff/
H A Drenderer.php159 function section_edit($start, $end, $level, $name) { argument
795 $end = $start - ($params['max']);
796 $end = ($end < -1) ? -1 : $end;
800 $end = $feed->get_item_quantity();
801 $end = ($end > $params['max']) ? $params['max'] : $end;;
806 for ($x = $start; $x != $end; $x += $mod) {
/plugin/davcal/
H A Dscript.js504 calEvent.end = moment(event);
507 calEvent.end.hour(13);
508 calEvent.end.minute(0);
522 calEvent.end = moment(event);
525 calEvent.end.hour(13);
526 calEvent.end.minute(0);
682 if(calEvent.allDay && (calEvent.end === null))
689 endEvent = moment(calEvent.end);
696 jQuery('#dw_davcal__eventto_edit').val(calEvent.end.format('YYYY-MM-DD'));
697 jQuery('#dw_davcal__eventtotime_edit').val(calEvent.end.format('HH:mm'));
/plugin/jplayer/vendor/mustache/mustache/src/Mustache/
H A DCompiler.php252 * @param int $end Section end offset
259 private function blockVar($nodes, $id, $start, $end, $otag, $ctag, $level) argument
279 * @param int $end Section end offset
286 private function blockArg($nodes, $id, $start, $end, $otag, $ctag, $level) argument
364 * @param int $end Section end offset
371 private function section($nodes, $id, $filters, $start, $end, $otag, $ctag, $level) argument
373 $source = var_export(substr($this->source, $start, $end - $start), true);
/plugin/sequencediagram/bower_components/lodash/dist/
H A Dlodash.js1850 end = view.end,
2893 end = (end === undefined || end > length) ? length : toInteger(end);
2897 end = start > end ? 0 : toLength(end);
4052 end = end > length ? length : end;
4484 end = end === undefined ? length : end;
5340 end = toFinite(end);
7922 end = end === undefined ? length : toInteger(end);
14041 end = toFinite(end);
15105 end += (result.length - end);
16965 end = toInteger(end);
[all …]
/plugin/sequencediagram/bower_components/lodash/
H A Dlodash.js1850 end = view.end,
2893 end = (end === undefined || end > length) ? length : toInteger(end);
2897 end = start > end ? 0 : toLength(end);
4052 end = end > length ? length : end;
4484 end = end === undefined ? length : end;
5340 end = toFinite(end);
7922 end = end === undefined ? length : toInteger(end);
14041 end = toFinite(end);
15105 end += (result.length - end);
16965 end = toInteger(end);
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Calendar/
H A DEvent.php285 public function setEnd(EventDateTime $end) argument
287 $this->end = $end;
294 return $this->end;
/plugin/combo/action/
H A Dbacklinkmenuitem.php113 ->end();
128 ->end();

12345678910>>...53