Home
last modified time | relevance | path

Searched +full:start -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 26 – 50 of 152) sorted by relevance

1234567

/dokuwiki/lib/plugins/authpdo/
H A Dauth.php361 * @param int $start index of first user to be returned
366 public function retrieveUsers($start = 0, $limit = -1, $filter = null)
379 $filter['start'] = (int)$start;
380 $filter['end'] = (int)$start + $limit;
447 * @param int $start
451 public function retrieveGroups($start = 0, $limit = 0)
457 return array_splice($groups, $start);
459 return array_splice($groups, $start, $limit);
406 retrieveUsers($start = 0, $limit = 1, $filter = null) global() argument
491 retrieveGroups($start = 0, $limit = 0) global() argument
/dokuwiki/lib/scripts/
H A Dedit.js164 opts = [field.value.substr(0,DWgetSelection(field).start)];
238 // set focus and place cursor at the start
240 sel.start = 0;
H A Dlinkwiz.js218 if(sel.start == 0 && sel.end == 0) {
277 * Start the page/namespace lookup timer
/dokuwiki/inc/parser/
H A Dparser.php28 // modes which have a start and end token but inside which
/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
2160 // Start the timer
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);
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DIRI.php427 // Start position
428 $start = $position;
511 for ($j = $start; $j <= $position; $j++) {
545 $start = 0;
556 // Start position
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;
[all...]
/dokuwiki/vendor/geshi/geshi/src/geshi/
H A Dpowershell.php80 'Start-Service', 'Start-Sleep', 'Start-Transcript', 'Stop-Process', 'Stop-Service',
115 '-Strict', '-Stream', '-Step', '-Status', '-Static', '-StartupType', '-Start', '-StackName',
H A Dcobol.php107 'BITMAP-START', 'BITMAP-TIMER', 'BITMAP-TRAILING', 'BITMAP-WIDTH',
164 'END-RETURN', 'END-REWRITE', 'END-SEARCH', 'END-START',
298 'START-X', 'START-Y', 'STARTING', 'STATEMENT', 'STATIC',
352 'START', 'STOP', 'STRING', 'SUBTRACT', 'SYNC',
H A D6502kickass.php206 //Multi Labels (local labels) references start with ! and end with + or - for forward/backward reference.
208 //Macros start with a colon :Macro.
/dokuwiki/
H A Dindex.php22 send_redirect(wl($conf['start']));
/dokuwiki/lib/plugins/authpdo/conf/
H A Ddefault.php64 * input: :user, :name, :mail, :group, :start, :end, :limit
/dokuwiki/inc/File/
H A DResolver.php55 // relative to current page (makes the current page a start page)
/dokuwiki/conf/
H A Ddokuwiki.php17 $conf['start'] = 'start'; //name of start page
/dokuwiki/inc/
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...]
H A Dutf8.php109 function utf8_substr_replace($string, $replacement, $start, $length = 0)
112 return PhpString::substr_replace($string, $replacement, $start, $length);
108 utf8_substr_replace($string, $replacement, $start, $length = 0) global() argument
H A Dinit.php16 * @param integer $start argument
20 function delta_time($start = 0)
22 return microtime(true) - ((float)$start);
178 // start the session
/dokuwiki/inc/Ui/
H A DIndex.php79 $nofollow = ($ID != $conf['start'] || $conf['sitemap']) ? 'rel="nofollow"' : '';
H A DMediaRevisions.php69 // start listing
H A DPageRevisions.php68 // start listing
/dokuwiki/inc/Action/
H A DSearch.php41 if ($ID !== $conf['start'] && !$INPUT->has('q')) {
/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
/dokuwiki/lib/plugins/config/core/Setting/
H A DSetting.php146 if ($out == 'start') {
147 // exception, because this config name is clashing with our actual start page
/dokuwiki/lib/tpl/dokuwiki/
H A Dmain.php58 <!-- wikipage start -->
H A Ddetail.php46 <!-- detail start -->

1234567