Lines Matching defs:raw
131 * @param string $raw Raw HTML text.
134 public function parse($raw)
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);
180 * @param int $matchPos Current byte index location in raw doc thats being parsed
251 * @param int $pos Current byte index location in raw doc
279 * @param string $raw The subject to parse. This is the content that will be eaten.
284 protected function reduce(&$raw)
289 if ($raw === "") {
292 if ($action = $this->regexes[$this->modeStack->getCurrent()]->split($raw, $split)) {
293 [$unparsed, $match, $raw] = $split;