Home
last modified time | relevance | path

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

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