Home
last modified time | relevance | path

Searched refs:start (Results 1751 – 1772 of 1772) sorted by last modified time

1...<<71

/plugin/virtualkeyboard/vk/extensions/
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 …]
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 …]
/plugin/gcalendar/inc/
H A Dgcal_read.php284 $start = noNS($conf['start']);
285 $dir = wikiFN(substr($page,0,-1).$start);
286 $dir = substr($dir,0,-(strlen($start)+4)); # strip filename - only the dir is needed
/plugin/chat/
H A Dscript.js103 var start = (new Date()).getTime();
104 while ((new Date()).getTime() - start < delay) {
H A DChatNotify.class ... public void setVolume (int) int vol public void start () public void stop () public void play ...
/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
1063 $this->item[$this->styleMap->{$type}['pages']] = $start;
1069 if(!is_numeric($start))
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;
1096 if(strlen($start) <= 4)
1098 $startArray = preg_split('//', $start);
[all …]
H A DBIBSTYLE.php221 $start = trim(stripslashes($this->row['pageStart']));
223 $this->bibformat->formatPages($start, $end);
H A DLICENSE195 To do so, attach the following notices to the program. It is safest to attach them to the start of …
H A DREADME.txt94 $utf8String = $utf8->utf8_strtolower(STRING: $utf8String, INT $start [, INT: $length=NULL]);
/plugin/virtualkeyboard/vk/
H A Dlicense.txt469 safest to attach them to the start of each source file to most effectively
/plugin/googlesearch/
H A Daction.php69 $this->_search($QUERY,$_REQUEST['start']);
H A Dnusoap.php893 $start = gettimeofday();
898 $timePassed = 1000000 * ($stop['sec'] - $start['sec'])
899 + $stop['usec'] - $start['usec'];
2931 $start = strpos($cookie_str, $cookie_param);
2932 if ($start > 0) {
2933 $domain = substr($cookie_str, $start + strlen($cookie_param));
2940 $start = strpos($cookie_str, $cookie_param);
2941 if ($start > 0) {
2949 $start = strpos($cookie_str, $cookie_param);
2950 if ( $start > 0 ) {
[all …]
H A DGoogleAPI.php37 function do_search( $q, $start, $num=10 ){ argument
42 'start' => $start,
/plugin/gallery2/dwgallery/
H A Ddwgallery.php505 $start = $gallery['pic']-2;
506 if ($start < 1) $start = 1;
508 $ende = $start+5;
512 if ($ende-5 < $start) $start = $ende-5;
513 if ($start < 1) $start = 1;
516 for ($i = $start-1; $i < $ende-1; $i++) {
/plugin/bibtex/OSBib/create/
H A DPREVIEWSTYLE.php209 $start = trim(stripslashes($this->row['pageStart']));
211 $this->bibformat->formatPages($start, $end);
H A DFORMMISC.php38 $start = floor(($limit/2) - 2);
39 $length = $count - (2 * $start);
40 $text = substr_replace($text, " ... ", $start, $length);
/plugin/bibtex/OSBib/format/bibtexParse/
H A DLICENSE195 To do so, attach the following notices to the program. It is safest to attach them to the start of …
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);
H A DCHANGELOG37 4/ Added class PARSEPAGE to split a bibtex pages field into page start and page end components.
38 list($start, $end) = $parsePage->init($pagesField);
H A DREADME95 Split a bibtex pages field into page start and page end components.
96 list($start, $end) = $parsePage->init($pagesField);
/plugin/bibtex/OSBib/
H A DUTF8.php258 function utf8_substr($str, $start, $length=null){ argument
260 return mb_substr($str,$start,$length,'utf-8');
263 return $this->unicode_to_utf8(array_slice($uni,$start,$length));
/plugin/cronojob/pseudo-cron/
H A Dgpl.txt289 to attach them to the start of each source file to most effectively

1...<<71