Home
last modified time | relevance | path

Searched refs:parse (Results 1 – 25 of 313) sorted by relevance

12345678910>>...13

/template/strap/vendor/symfony/yaml/
H A DCHANGELOG.md9 * Allow negatable for the parse tags option with `--no-parse-tags`
27 Yaml::parse('072');
33 Yaml::parse('0o72');
79 * being able to pass boolean options to the `Yaml::parse()`, `Yaml::dump()`,
80 `Parser::parse()`, and `Dumper::dump()` methods to configure the behavior of
88 Yaml::parse('!foo bar', Yaml::PARSE_CUSTOM_TAGS);
129 Yaml::parse($yaml);
142 Yaml::parse($yaml);
165 Yaml::parse('!php/const:PHP_INT_MAX', Yaml::PARSE_CONSTANT);
188 Yaml::parse('2001-12-15 21:59:43.10 -5', Yaml::PARSE_DATETIME);
[all …]
H A DYaml.php76 public static function parse(string $input, int $flags = 0) function in Symfony\\Component\\Yaml\\Yaml
80 return $yaml->parse($input, $flags);
H A DParser.php65 return $this->parse(file_get_contents($filename), $flags);
81 public function parse(string $value, int $flags = 0) function in Symfony\\Component\\Yaml\\Parser
373 return Inline::parse($this->lexInlineQuotedString(), $flags, $this->refs);
386 $parsedMapping = Inline::parse($this->lexInlineMapping(), $flags, $this->refs);
407 … $parsedSequence = Inline::parse($this->lexInlineSequence(), $flags, $this->refs);
435 $value = Inline::parse($this->lines[0], $flags, $this->refs);
491 return Inline::parse(trim($value));
761 return Inline::parse($this->lexInlineMapping($cursor), $flags, $this->refs);
765 return Inline::parse($this->lexInlineSequence($cursor), $flags, $this->refs);
772 … $parsedValue = Inline::parse($this->lexInlineQuotedString($cursor), $flags, $this->refs);
[all …]
/template/twigstarter/vendor/twig/twig/src/ExpressionParser/Infix/
DIsNotExpressionParser.php24 … public function parse(Parser $parser, AbstractExpression $expr, Token $token): AbstractExpression function in Twig\\ExpressionParser\\Infix\\IsNotExpressionParser
26 return new NotUnary(parent::parse($parser, $expr, $token), $token->getLine());
DArrowExpressionParser.php28 … public function parse(Parser $parser, AbstractExpression $expr, Token $token): AbstractExpression function in Twig\\ExpressionParser\\Infix\\ArrowExpressionParser
/template/twigstarter/vendor/twig/twig/src/TokenParser/
DApplyTokenParser.php33 public function parse(Token $token): Node function in Twig\\TokenParser\\ApplyTokenParser
40 $filter = $op->parse($this->parser, $filter, $this->parser->getCurrentToken());
DEmbedTokenParser.php27 public function parse(Token $token): Node function in Twig\\TokenParser\\EmbedTokenParser
50 $module = $this->parser->parse($stream, [$this, 'decideBlockEnd'], true);
DTokenParserInterface.php38 public function parse(Token $token); function
DFlushTokenParser.php27 public function parse(Token $token): Node function in Twig\\TokenParser\\FlushTokenParser
DDoTokenParser.php25 public function parse(Token $token): Node function in Twig\\TokenParser\\DoTokenParser
DExtendsTokenParser.php29 public function parse(Token $token): Node function in Twig\\TokenParser\\ExtendsTokenParser
DWithTokenParser.php27 public function parse(Token $token): Node function in Twig\\TokenParser\\WithTokenParser
DImportTokenParser.php29 public function parse(Token $token): Node function in Twig\\TokenParser\\ImportTokenParser
/template/strap/ComboStrap/
H A DPageSql.php41 $parser->parse($contextualPage);
49 function parse(MarkupPath $contextualPage = null): PageSql function in ComboStrap\\PageSql
H A DParser.php37 $parser->parse($markup);
/template/strap/vendor/carica/phpcss/src/PhpCss/
H A DParser.php58 abstract public function parse(): Ast\Node; function in PhpCss\\Parser
228 return $parser->parse();
/template/tilus/css/
Ddifferences for less php.txt3 https://forum.dokuwiki.org/d/18698-the-css-parser-doesnt-parse-calc-properly/7
/template/twigstarter/vendor/twig/twig/src/ExpressionParser/
DPrefixExpressionParserInterface.php24 public function parse(Parser $parser, Token $token): AbstractExpression; function
DInfixExpressionParserInterface.php24 … public function parse(Parser $parser, AbstractExpression $left, Token $token): AbstractExpression; function
/template/mikio/
H A Dmikio.php453 * @param boolean $parse Parse content before printing/returning.
457 …public function includePage(string $page, bool $print = true, bool $parse = true, string $classWra… argument
472 if (empty($html) === false && $parse === true) {
988 * @param boolean $parse Parse the content.
991 …public function includeSidebar(string $prefix = '', bool $print = true, bool $parse = true): string argument
1099 if ($parse === true) {
1296 $result = $parser->parse($string);
1393 * @param boolean $parse Parse trail before printing.
1396 public function includeBreadcrumbs(bool $print = true, bool $parse = true): string argument
1462 if ($parse === true) {
[all …]
/template/twigstarter/vendor/twig/twig/src/
DExpressionParser.php165 …return $parsers->getValue($this->parser)->getByClass(DotExpressionParser::class)->parse($this->par…
168 …etValue($this->parser)->getByClass(SquareBracketExpressionParser::class)->parse($this->parser, $no…
194 $node = $op->parse($this->parser, $node, $this->parser->getCurrentToken());
/template/strap/vendor/carica/phpcss/src/PhpCss/Parser/
H A DText.php22 public function parse(): PhpCss\Ast\Node { function in PhpCss\\Parser\\Text
/template/twigstarter/vendor/twig/twig/src/Util/
DDeprecationCollector.php67 $this->twig->parse($this->twig->tokenize(new Source($contents, $name)));
/template/strap/vendor/salesforce/handlebars-php/src/Handlebars/
H A DParser.php33 public function parse(Array $tokens = []) function in Handlebars\\Parser
/template/strap/vendor/carica/phpcss/src/
H A DPhpCss.php57 return $parser->parse();

12345678910>>...13