Home
last modified time | relevance | path

Searched refs:start (Results 26 – 50 of 51) sorted by last modified time

123

/dokuwiki/lib/scripts/
H A Dqsearch.js132 var start, length, replace, nsL, nsR, eli, runaway;
148 start = eli - 2;
152 start = eli + 1;
158 start = Math.floor(nsL + ((nsR - nsL) / 2));
163 replace, start, length);
H A Dtextselection.js13 this.start = 0;
20 return this.end - this.start;
24 return (!this.obj) ? '' : this.obj.value.substring(this.start,this.end);
41 sel.start = textArea.selectionStart;
51 * start and end properties and pass it back to this function.
58 selection.obj.setSelectionRange(selection.start, selection.end);
69 * @param {int} opts.startofs number of charcters at the start to skip from new selection
78 selection.obj.value.substring(0, selection.start) + text +
84 selection.end = selection.start + text.replace(/\r?\n/g, '\r\n').length;
86 selection.end = selection.start
[all...]
H A Dhelpers.js8 * Supports negative start and length and omitting length, but not
12 function substr_replace(str, replace, start, length) { argument
14 a2 = (start < 0 ? str.length : 0) + start;
17 } else if (length < 0 && start < 0 && length <= start) {
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DBase.php
/dokuwiki/inc/
H A DJpegMeta.php3109 // Assume that if the start and end bytes are defined, the bytes inbetween are defined as well.
3202 function _hexDump(&$data, $start = 0, $length = -1) {
3203 if (($length == -1) || (($length + $start) > strlen($data))) {
3206 $end = $start + $length;
3214 while ($start < $end) {
3219 $c = ord($data[$start]);
3221 $start++;
3199 _hexDump(& $data, $start = 0, $length = 1) global() argument
H A Dfulltext.php524 // establish context start and end points, try to append to previous
526 $start = $utf8_idx - $pre;
527 $append = ($start < $end) ? $end : false; // still the end of the previous context snippet
533 $snippets[] = PhpString::substr($text, $start, $end - $start);
H A Dhttputils.php123 $start = (int)$p[0];
126 if ($start > $end || $start > $size || $end > $size) {
131 $len = $end - $start + 1;
132 $ranges[] = [$start, $end, $len];
152 [$start, $end, $len] = $ranges[$i];
158 echo "Content-Range: bytes $start-$end/$size" . HTTP_HEADER_LF;
163 header("Content-Range: bytes $start-$end/$size");
168 fseek($fh, $start); //seek to start o
[all...]
H A DDifferenceEngine.php441 $start = $i;
452 $runlength = $i - $start;
459 while ($start > 0 && $lines[$start - 1] == $lines[$i - 1]) {
460 $changed[--$start] = 1;
462 while ($start > 0 && $changed[$start - 1])
463 $start--;
484 while ($i < $len && $lines[$start] == $lines[$i]) {
485 $changed[$start
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php213 * Sometimes we want to get the BER encoding of a particular tag. $start lets us do that without having to reencode.
218 * @param int $start
222 private static function decode_ber($encoded, $start = 0, $encoded_pos = 0)
224 $current = ['start' => $start];
255 $start += $startOffset;
262 $start++;
275 $start += $length;
310 'length' => $length + $start - $current['start']
243 _decode_ber($encoded, $start = 0, $encoded_pos = 0) global() argument
[all...]
H A DX509.php474 $this->signatureSubject = substr($cert, $decoded[0]['content'][0]['start'], $decoded[0]['content'][0]['length']);
1871 $start = true;
1920 if (!$start) {
1947 $start = false;
2232 $this->signatureSubject = substr($orig, $decoded[0]['content'][0]['start'], $decoded[0]['content'][0]['length']);
2341 $this->signatureSubject = substr($orig, $decoded[0]['content'][0]['start'], $decoded[0]['content'][0]['length']);
2438 $this->signatureSubject = substr($orig, $decoded[0]['content'][0]['start'], $decoded[0]['content'][0]['length']);
3032 * Set certificate start date
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSFTP.php2086 * $start and $local_start give you more fine grained control over this process and take precident over self::RESUME
2087 * when they're non-negative. ie. $start could let you write at the end of a file (like self::RESUME) or in the middle
2088 * of one. $local_start could let you start your reading from the end of a file (like self::RESUME_START) or in the
2098 * @param int $start
2106 public function put($remote_file, $data, $mode = self::SOURCE_STRING, $start = -1, $local_start = -1, $progressCallback = null)
2128 if ($start >= 0) {
2129 $offset = $start;
2409 $start = $offset;
2415 $tempoffset = $start + $read;
3276 $start
2291 put($remote_file, $data, $mode = self SOURCE_STRING, $start = 1, $local_start = 1, $progressCallback = null) global() argument
[all...]
/dokuwiki/vendor/simplepie/simplepie/
H A DREADME.markdown45 To start the demo
/dokuwiki/inc/Parsing/Lexer/
H A DStateStack.php22 * @param string $start Starting state name.
24 public function __construct($start)
26 $this->stack = [$start];
23 __construct($start) global() argument
/dokuwiki/vendor/simplepie/simplepie/idn/
H A DLICENCE469 safest to attach them to the start of each source file to most effectively
/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php404 * Number at which line numbers should start at
1868 * Sets what number line numbers should start at. Should
1871 * <b>Warning:</b> Using this method will add the "start"
1879 * @param int $number The number to start line numbers at
2262 if(isset($matches_rx['start']) && isset($matches_rx['end']))
2265 'next_match' => $matches_rx['start'][1],
2533 // Possibly the start of a new string ...
2579 $start = $i + $char_len;
2588 $close_pos = strpos($part, $char, $start);
2595 if (isset($this->language_data['ESCAPE_REGEXP']) && $next_escape_regexp_pos < $start) {
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DIRI.php428 $start = $position;
511 for ($j = $start; $j <= $position; $j++) {
545 $start = 0;
557 $start = $i;
598 // If it is invalid, count the sequence as invalid and reprocess the current byte as the start of a sequence:
630 for ($j = $start; $j <= $i; $j++) {
634 for ($j = $start; $j <= $i; $j++) {
644 for ($j = $start; $j < $len; $j++) {
H A DItem.php969 if (isset($caption['attribs']['']['start'])) {
970 $caption_startTime = $this->sanitize($caption['attribs']['']['start'], \SimplePie\SimplePie::CONSTRUCT_TEXT);
993 if (isset($caption['attribs']['']['start'])) {
994 $caption_startTime = $this->sanitize($caption['attribs']['']['start'], \SimplePie\SimplePie::CONSTRUCT_TEXT);
1512 if (isset($caption['attribs']['']['start'])) {
1513 $caption_startTime = $this->sanitize($caption['attribs']['']['start'], \SimplePie\SimplePie::CONSTRUCT_TEXT);
1539 if (isset($caption['attribs']['']['start'])) {
1540 $caption_startTime = $this->sanitize($caption['attribs']['']['start'], \SimplePie\SimplePie::CONSTRUCT_TEXT);
1968 if (isset($caption['attribs']['']['start'])) {
1969 $caption_startTime = $this->sanitize($caption['attribs']['']['start'], \SimplePi
[all...]
/dokuwiki/lib/plugins/authldap/
H A Dauth.php398 * @param int $start index of first user to be returned
404 public function retrieveUsers($start = 0, $limit = 0, $filter = [])
433 if ($i++ < $start) {
402 retrieveUsers($start = 0, $limit = 0, $filter = array()) global() argument
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG326 - Produce valid CSS when languages start with underscore (BenBE)
633 - Fixed minor problem in Haskell cuasing accidential start of comment (SF#1987221, BenBE)
773 - Allowed matching for regexes using start/end matchers at the start/end
811 - Fixed blank at start of MySQL file (W. Tasin)
/dokuwiki/lib/plugins/authplain/
H A Dauth.php300 * @param int $start index of first user to be returned
305 public function retrieveUsers($start = 0, $limit = 0, $filter = [])
319 if ($i >= $start) {
335 * @param int $start index of first group to be returned
339 public function retrieveGroups($start = 0, $limit = 0)
350 return array_splice($groups, $start, $limit);
352 return array_splice($groups, $start);
298 retrieveUsers($start = 0, $limit = 0, $filter = array()) global() argument
332 retrieveGroups($start = 0, $limit = 0) global() argument
/dokuwiki/inc/ChangeLog/
H A DChangeLog.php315 * @param int $rev revision timestamp used as start date
347 $start = 0;
350 $start = $count - 1;
353 for ($i = $start; $i >= 0 && $i < $count; $i += $step) {
/dokuwiki/inc/Extension/
H A DAuthPlugin.php78 * ususal capabilities start with lowercase letter
79 * shortcut capabilities start with uppercase letter
336 * @param int $start index of first user to be returned
341 public function retrieveUsers($start = 0, $limit = 0, $filter = null)
368 * @param int $start
372 public function retrieveGroups($start = 0, $limit = 0)
343 retrieveUsers($start = 0, $limit = 0, $filter = null) global() argument
374 retrieveGroups($start = 0, $limit = 0) global() argument
/dokuwiki/inc/HTTP/
H A DHTTPClient.php34 public $start = 0.0; // for timings
160 $this->start = microtime(true);
590 $time_used = microtime(true) - $this->start;
636 $time_used = microtime(true) - $this->start;
690 $time_used = microtime(true) - $this->start;
742 echo '<b>' . $info . '</b> ' . (microtime(true) - $this->start) . 's<br />';
760 echo '*' . $info . '* ' . (microtime(true) - $this->start) . "s\n";
33 public $start = 0.0; // for timings global() variable in dokuwiki\\HTTP\\HTTPClient
/dokuwiki/lib/plugins/authad/
H A Dauth.php508 * @param int $start index of first user to be returned
513 public function retrieveUsers($start = 0, $limit = 0, $filter = [])
535 if ($i++ < $start) {
550 count($this->grpsusers[$this->filterToString($filter)]) < ($start + $limit)
558 $start + $limit - count($this->grpsusers[$this->filterToString($filter)]) + 1
563 if ($i++ < $start) {
502 retrieveUsers($start = 0, $limit = 0, $filter = array()) global() argument

123