Home
last modified time | relevance | path

Searched refs:pos (Results 151 – 175 of 1609) sorted by relevance

12345678910>>...65

/plugin/markdowku/
H A Dautolinks.php24 function handle($match, $state, $pos, Doku_Handler $handler) { argument
27 $handler->_addCall('emaillink', array($match, NULL), $pos);
30 $handler->_addCall('externallink', array($match, NULL), $pos);
H A Dgithubcodeblocks.php28 function handle($match, $state, $pos, Doku_Handler $handler) { argument
38 $handler->_addCall('file', array($text, $lang, 'snippet.'.$lang), $pos);
40 $handler->_addCall('code', array($text, $lang), $pos);
/plugin/semantic/
H A Dsyntax.php32 public function handle($match, $state, $pos, Doku_Handler $handler) argument
34 return array($match, $state, $pos);
42 list($match, $state, $pos) = $data;
/plugin/dw2pdf/syntax/
H A Dpagesetting.php62 * @param int $pos The character position of the matched text
66 public function handle($match, $state, $pos, Doku_Handler $handler)
68 return [$match, $state, $pos];
65 handle($match, $state, $pos, Doku_Handler $handler) global() argument
/plugin/move/helper/
H A Dhandler.php201 * @param int $pos The position in the input
204 public function camelcaselink($match, $state, $pos) {
229 * @param int $pos The position in the input
232 public function internallink($match, $state, $pos) {
316 * @param int $pos The position in the input
319 public function media($match, $state, $pos) {
352 * @param int $pos The position in the input
356 public function plugin($match, $state, $pos, $pluginname) {
358 $this->calls .= call_user_func($this->handlers[$pluginname], $match, $state, $pos, $pluginname, $this);
199 camelcaselink($match, $state, $pos) global() argument
227 internallink($match, $state, $pos) global() argument
314 media($match, $state, $pos) global() argument
351 plugin($match, $state, $pos, $pluginname) global() argument
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/
H A DTokenizer.php119 $pos = \strcspn(
129 $bufferOffset + $pos === \strlen($lastBuffer) &&
134 $result = \substr($lastBuffer, $bufferOffset - 1, $pos + 1);
135 $this->streamReader->setOffset($bufferOffset + $pos);
/plugin/yql/
H A Dsyntax.php62 * @param int $pos The character position of the matched text
66 public function handle($match, $state, $pos, Doku_Handler $handler){ argument
81 foreach ($parts as $pos => $part) {
82 … if ($pos % 2 == 0) { // the start and every second part is pure character data
171 foreach ($format as $pos => $val) {
172 if ($pos % 2 == 0) { // outside %% %%, just character data
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/
H A DFileCommentSniff.php192 $pos = 0;
200 if (isset($foundTags[$pos]) === false) {
204 if ($foundTags[$pos] !== $tag) {
207 ($pos + 1),
210 …$phpcsFile->addError($error, $tokens[$commentStart]['comment_tags'][$pos], ucfirst(substr($tag, 1)…
213 $pos++;
/plugin/translationbuddy/
H A Dsyntax.php35 public function handle($match, $state, $pos, &$handler){ argument
215 $pos = strpos((string)$id,':');
216 if($pos!==false){
217 return substr((string)$id,0,$pos);
223 $pos = strpos((string)$id,':');
224 if($pos!==false){
225 return substr((string)$id,$pos+1);
/plugin/folded/syntax/
H A Dheader.php34 function handle($match, $state, $pos, Doku_Handler $handler){ argument
41 return array($title,$level,$pos);
50 list($text,$level,$pos) = $data;
/plugin/struct/syntax/
H A Dglobal.php36 * @param int $pos The position in the document
40 public function handle($match, $state, $pos, Doku_Handler $handler)
43 $config = parent::handle($match, $state, $pos, $handler);
39 handle($match, $state, $pos, Doku_Handler $handler) global() argument
/plugin/docimporter/
H A DImportUtils.php179 function count_from_pos($matches, $clean_matches, $pos){ argument
189 if( ($pos + strpos($match[0], $clean_match[0])) == $clean_match[1]){
207 foreach ($list as $pos => $sentence_info) {
234 foreach($list as $pos => $sentence){
235 $current_end = $pos + strlen($sentence);
236 if ($start >= $pos && $start<= $current_end){
/plugin/mdpage/vendor/cebe/markdown/
H A DMarkdownExtra.php113 if (($pos = strrpos($line, '`')) === false) {
114 $pos = strrpos($line, '~');
116 $fence = substr($line, 0, $pos + 1);
117 $block['attributes'] = substr($line, $pos);
120 if (($pos = strpos($line = $lines[$i], $fence)) === false || $pos > 3) {
/plugin/latexport/_test/
H A Ddecorator_mock.php35 function header($text, $level, $pos) { argument
36 $this->listOfCommands->enqueue(new CommandHeader($text, $level, $pos));
146 function table_open($maxcols = null, $numrows = null, $pos = null) { argument
147 $this->listOfCommands->enqueue(new CommandTableOpen($maxcols, $numrows, $pos));
150 function table_close($pos = null) { argument
151 $this->listOfCommands->enqueue(new CommandTableClose($pos));
/plugin/extendpage/meta/
H A DAssignments.php73 public function addPattern($pattern, $page, $pos) argument
77 $ok = (bool) $this->sqlite->query($sql, array($pattern, $page, $pos));
188 * @param string $pos
192 public function getPageAssignments($page, $pos, $checkpatterns = true) argument
202 ($row['pos'] === $pos)) {
214 $res = $this->sqlite->query($sql, array($page, $pos));
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/
H A DCallExpression.php150 $pos = 0;
155 if (\array_key_exists($pos, $parameters)) {
170 } elseif (\array_key_exists($pos, $parameters)) {
172 $arguments[] = $parameters[$pos];
173 unset($parameters[$pos]);
175 ++$pos;
284 } elseif (\is_string($callable) && false !== $pos = strpos($callable, '::')) {
285 $class = substr($callable, 0, $pos);
286 $method = substr($callable, $pos + 2);
/plugin/combo/vendor/symfony/polyfill-mbstring/
H A DMbstring.php535 $pos = '' !== $needle || 80000 > \PHP_VERSION_ID
539 return false !== $pos ? $offset + $pos : false;
648 $pos = self::mb_stripos($haystack, $needle, 0, $encoding);
650 return self::getSubpart($pos, $part, $haystack, $encoding);
657 $pos = strrpos($haystack, $needle);
660 $pos = \iconv_strrpos($haystack, $needle, $encoding);
663 return self::getSubpart($pos, $part, $haystack, $encoding);
669 $pos = self::mb_strripos($haystack, $needle, $encoding);
671 return self::getSubpart($pos,
800 getSubpart($pos, $part, $haystack, $encoding) global() argument
[all...]
/plugin/structsection/
H A Daction.php72 $pos = $last[$INSTRUCTION_POSITION_INDEX];
77 'structsection', array('pos' => $pos), DOKU_LEXER_SPECIAL, '',
79 $pos,
/plugin/manlink/
H A Dsyntax.php23 function handle($match, $state, $pos, Doku_Handler $handler){ argument
28 $handler->_addCall('cdata', array(substr($match, 1)), $pos);
45 $handler->_addCall('externallink', array($target, $match), $pos);
/plugin/combo/ComboStrap/
H A DFsWikiUtility.php149 $pos = strrpos($namespacePath, ':');
150 if ($pos !== false) {
151 if ($pos == 0) {
154 $parentNamespacePath = substr($namespacePath, 0, $pos);
/plugin/struct/action/
H A Doutput.php54 $pos = 0;
64 $pos = $call[2];
85 'struct_output', ['pos' => $pos], DOKU_LEXER_SPECIAL, ''
87 $pos
/plugin/statdisplay/helper/
H A Dlog.php54 $pos = $this->logdata['_logpos'] ?? 0;
58 return (int)$pos * 100 / $max;
75 $pos = 0;
76 if (isset($this->logdata['_logpos'])) $pos = $this->logdata['_logpos'];
77 if ($pos > $size) $pos = 0;
78 …if ($pos && (($size - $pos) < ($maxlines * 150))) return 0; // we want to have some minimal log da…
90 fseek($fh, $pos, SEEK_SET);
97 $pos += strlen($line);
260 $this->logdata['_logpos'] = $pos;
/plugin/socialshareprivacy2/
H A Dsyntax.php30 public function handle($match, $state, $pos, &$handler){ argument
32 $pos = strrpos($match, ">");
33 if ( $pos === false ) {
/plugin/html5video2/syntax/
H A Dvideo.php36 public function handle($match, $state, $pos, Doku_Handler $handler){ argument
69 $pos = strrpos($link[0], '?');
70 if($pos !== false){
71 $src = substr($link[0],0,$pos);
72 $param = substr($link[0],$pos+1);
/plugin/do/syntax/
H A Ddolist.php43 * @param int $pos The character position of the matched text
48 public function handle($match, $state, $pos, Doku_Handler $handler) argument
58 $pos = strpos($match, '&');
59 if (is_int($pos)) {
60 $match[$pos] = '?';

12345678910>>...65