Lines Matching refs:raw
131 * @param string $raw Raw HTML text.
134 public function parse($raw) argument
139 $initialLength = strlen($raw);
142 while (is_array($parsed = $this->reduce($raw))) {
144 $currentLength = strlen($raw);
158 return $this->invokeHandler($raw, DOKU_LEXER_UNMATCHED, $pos);
279 * @param string $raw The subject to parse. This is the content that will be eaten.
284 protected function reduce(&$raw) argument
289 if ($raw === "") {
292 if ($action = $this->regexes[$this->modeStack->getCurrent()]->split($raw, $split)) {
293 [$unparsed, $match, $raw] = $split;