Home
last modified time | relevance | path

Searched refs:pos (Results 251 – 275 of 1609) sorted by relevance

1...<<11121314151617181920>>...65

/plugin/syntaxhighlighter4/dist/
H A Dsyntaxhighlighter.js461 pos = 0,
1064 pos = 0,
1343 r2.lastIndex = pos = pos || 0;
1382 var pos = 0,
2473 pos = 0;
2788 pos = 0,
3090 pos,
3100 pos = 0;
3106 line = insertSpaces(line, pos, tabSize - pos % tabSize);
5072 pos = 0,
[all …]
/plugin/poem/
H A Dblock.php30 function handle($match, $state, $pos, Doku_Handler $handler){ argument
32 $handler->_addCall('cdata', array($match), $pos);
/plugin/qrcodescanner/
H A Dsyntax.php28 public function handle($match, $state, $pos, Doku_Handler $handler) { argument
29 return array($match, $state, $pos);
/plugin/extranet/
H A Dsyntax.php34 * @param int $pos The character position of the matched text
38 public function handle($match, $state, $pos, Doku_Handler $handler) { argument
/plugin/emphasis/syntax/
H A Dfont.php71 * @param int $pos The position in the document
75 function handle($match, $state, $pos, Doku_Handler $handler) { argument
112 $handler->addCall('cdata', array($match), $pos);
/plugin/searchform/
H A Dsyntax.php47 * @param int $pos The character position of the matched text
51 public function handle($match, $state, $pos, Doku_Handler $handler) {
61 return array($options, $state, $pos);
52 handle($match, $state, $pos, Doku_Handler $handler) global() argument
/plugin/combo/syntax/
H A Dxmlinlinetag.php147 * @param int $pos
154 function handle($match, $state, $pos, Doku_Handler $handler) argument
157 return XmlTagProcessing::handleStatic($match, $state, $pos, $handler, $this);
/plugin/combo/renderer/
H A Drenderer.php94 * @param int $pos byte position in the original source
96 function header($text, $level, $pos, $returnonly = false) argument
140 parent::header($text, $level, $pos);
/plugin/codemirror/dist/keymaps/
H A Demacs.min.js.map1pos","isClean","gen","replaceRange","changeGeneration","byChar","dir","findPosH","byWord","byLine"…
/plugin/booking/
H A Dsyntax.php48 * @param int $pos The position in the document
53 public function handle($match, $state, $pos, Doku_Handler $handler) argument
/plugin/mediasyntax/syntax/
H A Dpreblock.php32 function handle($match, $state, $pos, Doku_Handler $handler)
41 $handler->addCall('preformatted', array($match), $pos);
43 handle($match, $state, $pos, Doku_Handler $handler) global() argument
H A Ditalic.php20 function handle($match, $state, $pos, Doku_Handler $handler)
22 return array($match, $state, $pos);
31 handle($match, $state, $pos, Doku_Handler $handler) global() argument
H A Dbold.php19 function handle($match, $state, $pos, Doku_Handler $handler)
21 return array($match, $state, $pos);
30 handle($match, $state, $pos, Doku_Handler $handler) global() argument
/plugin/timetrack/
H A Dscript.js67 var pos;
78 pos = $input.closest('tr').find('input').index($input);
80 $input_next = jQuery($input.closest('tr').prev().find('input')[pos]);
95 pos = $input.closest('tr').find('input').index($input);
97 $input_next = jQuery($input.closest('tr').next().find('input')[pos]);
/plugin/randominc/
H A Dsyntax.php32 function handle($match, $state, $pos, Doku_Handler $handler) { argument
39 return array($include, $id, cleanID($section), explode('&', $flags), $pos);
95 list($type, $raw_id, $section, $flags, $pos) = $data;
178 …e']['secids'][$id] = array('hid' => 'plugin_include__'.str_replace(':', '__', $id), 'pos' => $pos);
182 if (isset($secids[$id]) && $pos === $secids[$id]['pos']) {
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/CrossReference/
H A DCrossReference.php300 $pos = \strrpos($buffer, 'startxref');
302 if ($pos === false) {
304 $pos = \strrpos($buffer, 'startref');
305 if ($pos === false) {
314 $reader->setOffset($pos + $addOffset);
/plugin/allowindentation/
H A Dsyntax.php87 * @param int $pos The position in the document
92 public function handle($match, $state, $pos, Doku_Handler $handler) argument
/plugin/markdowku/
H A Dhr.php38 function handle($match, $state, $pos, Doku_Handler $handler) { argument
39 $handler->_addCall('hr', array(), $pos);
/plugin/blogtng/syntax/
H A Dreadmore.php51 * @param int $pos The character position of the matched text
55 function handle($match, $state, $pos, Doku_Handler $handler) { argument
/plugin/fontcolor/
H A Dsyntax.php89 * @param int $pos The character position of the matched text
93 public function handle($match, $state, $pos, Doku_Handler $handler) { argument
103 $handler->_addCall('cdata', array($match), $pos);
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Asset/Iterator/
H A DAssetCollectionIterator.php40 if (false === $pos = strrpos($this->output, '.')) {
43 $this->output = substr($this->output, 0, $pos).'_*'.substr($this->output, $pos);
/plugin/enforcesummary/
H A Daction.php45 $pos = $event->data->findElementByAttribute('class', 'editButtons');
46 if (!$pos) return; // no editButtons
/plugin/authgoogle/google/io/
H A DGoogle_HttpRequest.php68 if ($pos = strpos($this->url, '?')) {
69 return substr($this->url, 0, $pos);
80 if ($pos = strpos($this->url, '?')) {
81 $queryStr = substr($this->url, $pos + 1);
/plugin/blog/syntax/
H A Dautoarchive.php23 function handle($match, $state, $pos, Doku_Handler $handler) { argument
36 return array($ns, $flags, $refine, $pos);
40 list($ns, $flags, $refine, $pos) = $data;
71 $renderer->header($this->_posts($cnt,$m,$y),2,$pos);
/plugin/syntaxhighlighter3/sxh3/src/js/
H A DshCore.js731 pos = 0,
759 pos = match.index + match[0].length;
870 function insertSpaces(line, pos, count) argument
872 return line.substr(0, pos)
884 var pos = 0;
886 while ((pos = line.indexOf(tab)) != -1)
891 var spaces = tabSize - pos % tabSize;
1013 pos = 0
1024 pos = match.index + match[0].length;
1504 var pos = 0,
[all …]

1...<<11121314151617181920>>...65