Lines Matching refs:raw
138 * @param string $raw Raw HTML text.
141 public function parse($raw) argument
146 $initialLength = strlen($raw);
149 while (is_array($parsed = $this->reduce($raw))) {
151 $currentLength = strlen($raw);
165 return $this->invokeHandler($raw, DOKU_LEXER_UNMATCHED, $pos);
278 * @param string $raw The subject to parse. This is the content that will be eaten.
283 protected function reduce(&$raw) argument
288 if ($raw === "") {
291 if ($action = $this->regexes[$this->modeStack->getCurrent()]->split($raw, $split)) {
292 [$unparsed, $match, $raw] = $split;