Home
last modified time | relevance | path

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

/dokuwiki/data/
H A Ddeleted.files110 inc/parser/lexer.php
873 inc/parser/wiki.php
918 inc/parser/spamcheck.php
/dokuwiki/inc/
H A DJpegMeta.php1587 $parser = xml_parser_create();
1588 xml_parser_set_option($parser, XML_OPTION_CASE_FOLDING, 0);
1589 xml_parser_set_option($parser, XML_OPTION_SKIP_WHITE, 1);
1590 $result = xml_parse_into_struct($parser, $data, $values, $tags);
1591 xml_parser_free($parser);
/dokuwiki/lib/plugins/config/core/
H A DLoader.php16 protected $parser;
25 * @param ConfigParser $parser
28 public function __construct(ConfigParser $parser)
31 $this->parser = $parser;
187 $conf = array_merge($conf, $this->parser->parse($file));
239 $conf = $this->parser->parse($file);
15 protected $parser; global() variable in dokuwiki\\plugin\\config\\core\\Loader
27 __construct(ConfigParser $parser) global() argument
/dokuwiki/vendor/composer/
H A DInstalledVersions.php115 * @param VersionParser $parser Install composer/semver to have access to this class and functionality
120 public static function satisfies(VersionParser $parser, $packageName, $constraint) argument
122 $constraint = $parser->parseConstraints((string) $constraint);
123 $provided = $parser->parseConstraints(self::getVersionRanges($packageName));
/dokuwiki/vendor/kissifrot/php-ixr/src/Message/
H A DMessage.php24 // The XML parser
65 // Set XML parser to take the case of tags in to account
67 // Set XML parser callback functions
98 * @param $parser
102 public function tagOpen($parser, $tag, $attr) argument
126 * @param $parser
129 public function cdata($parser, $cdata) argument
136 * @param $parser
139 public function tagClose($parser, $tag) argument
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A Dlessc.inc.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRSA.php1653 _start_element_handler($parser, $name, $attribs) global() argument
1693 _stop_element_handler($parser, $name) global() argument
1710 _data_handler($parser, $data) global() argument
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md275 * Fixed typo in the date parser that incorrectly identified September as month 8. [#348](https://github.com/simplepie/simplepie/pull/348)
/dokuwiki/vendor/simplepie/simplepie/src/
H A DFile.php129 $parser = new \SimplePie\HTTP\Parser($this->headers);
130 if ($parser->parse()) {
131 $this->headers = $parser->headers;
132 $this->body = trim($parser->body);
133 $this->status_code = $parser->status_code;
194 $parser = new \SimplePie\HTTP\Parser($this->headers);
195 if ($parser->parse()) {
196 $this->headers = $parser->headers;
197 $this->body = $parser->body;
198 $this->status_code = $parser
[all...]
H A DItem.php672 $parser = $this->registry->call(Parse\Date::class, 'get');
673 $this->data['date']['parsed'] = $parser->parse($this->data['date']['raw']) ?: null;
714 $parser = $this->registry->call(Parse\Date::class, 'get');
715 $this->data['updated']['parsed'] = $parser->parse($this->data['updated']['raw']) ?: null;
H A DMisc.php1727 $parser = \SimplePie\Parse\Date::get();
1728 return $parser->parse($dt);
1986 $parser = $registry->create(Parser::class, [Misc::change_encoding(substr($data, 20, $pos - 20), 'UTF-32BE', 'UTF-8')]);
1987 if ($parser->parse()) {
1988 $encoding[] = $parser->encoding;
1996 $parser = $registry->create(Parser::class, [Misc::change_encoding(substr($data, 20, $pos - 20), 'UTF-32LE', 'UTF-8')]);
1997 if ($parser->parse()) {
1998 $encoding[] = $parser->encoding;
2006 $parser = $registry->create(Parser::class, [Misc::change_encoding(substr($data, 20, $pos - 10), 'UTF-16BE', 'UTF-8')]);
2007 if ($parser
[all...]
H A DParser.php149 // Create the parser
267 public function tag_open($parser, $tag, $attributes) argument
319 public function cdata($parser, $cdata) argument
328 public function tag_close($parser, $tag) argument
H A DSimplePie.php1338 * turns SimplePie into a dumb parser of feeds.
1650 // Create new parser
1651 $parser = $this->registry->create(Parser::class);
1654 if ($parser->parse($utf8_data, 'UTF-8', $this->permanent_url)) {
1655 $this->data = $parser->get_data();
1677 if (isset($parser)) {
1680 $this->error .= sprintf(' is invalid XML, likely due to invalid characters. XML error: %s at line %d, column %d', $parser->get_error_string(), $parser->get_current_line(), $parser->get_current_column());
/dokuwiki/vendor/splitbrain/php-jsstrip/
H A DREADME.md13 jsstrip is not a true javascript parser. It assumes you have properly delimited the 'end of line' using a ';' (semicolon).