Home
last modified time | relevance | path

Searched refs:matchPos (Results 1 – 1 of 1) sorted by path

/dokuwiki/inc/Parsing/Lexer/
H A DLexer.php145 $matchPos = $initialLength - $currentLength - strlen($matched);
146 if (! $this->dispatchTokens($unmatched, $matched, $mode, $pos, $matchPos)) {
180 * @param int $matchPos Current byte index location in raw doc thats being parsed
183 protected function dispatchTokens($unmatched, $matched, $mode, $initialPos, $matchPos)
189 if (! $this->invokeHandler($matched, DOKU_LEXER_EXIT, $matchPos)) {
196 if (! $this->invokeHandler($matched, DOKU_LEXER_SPECIAL, $matchPos)) {
203 return $this->invokeHandler($matched, DOKU_LEXER_ENTER, $matchPos);
205 return $this->invokeHandler($matched, DOKU_LEXER_MATCHED, $matchPos);
184 dispatchTokens($unmatched, $matched, $mode, $initialPos, $matchPos) global() argument