Home
last modified time | relevance | path

Searched refs:parser (Results 301 – 325 of 420) sorted by last modified time

1...<<11121314151617

/plugin/findologicxmlexport/vendor/hoa/protocol/Bin/
H A DResolve.php113 $this->parser->listInputs($path);
/plugin/findologicxmlexport/vendor/hoa/ustring/Bin/
H A DFromcode.php93 $this->parser->listInputs($code);
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A DAnnotationReader.php141 private $parser; variable in Doctrine\\Common\\Annotations\\AnnotationReader
176 * @param DocParser $parser
180 public function __construct(DocParser $parser = null) argument
202 $this->parser = $parser ?: new DocParser();
217 $this->parser->setTarget(Target::TARGET_CLASS);
218 $this->parser->setImports($this->getClassImports($class));
249 $this->parser->setTarget(Target::TARGET_PROPERTY);
250 $this->parser->setImports($this->getPropertyImports($property));
281 $this->parser->setTarget(Target::TARGET_METHOD);
282 $this->parser->setImports($this->getMethodImports($method));
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/src/TokenParser/
H A DExtendsTokenParser.php29 $stream = $this->parser->getStream();
31 if (!$this->parser->isMainScope()) {
35 if (null !== $this->parser->getParent()) {
38 $this->parser->setParent($this->parser->getExpressionParser()->parseExpression());
H A DFilterTokenParser.php33 $name = $this->parser->getVarName();
36 … $filter = $this->parser->getExpressionParser()->parseFilterExpressionRaw($ref, $this->getTag());
37 $this->parser->getStream()->expect(Token::BLOCK_END_TYPE);
39 $body = $this->parser->subparse([$this, 'decideBlockEnd'], true);
40 $this->parser->getStream()->expect(Token::BLOCK_END_TYPE);
43 $this->parser->setBlock($name, $block);
H A DFromTokenParser.php30 $macro = $this->parser->getExpressionParser()->parseExpression();
31 $stream = $this->parser->getStream();
52 …$node = new ImportNode($macro, new AssignNameExpression($this->parser->getVarName(), $token->getLi…
55 if ($this->parser->isReservedMacroName($name)) {
59 … $this->parser->addImportedSymbol('function', $alias, 'get'.$name, $node->getNode('var'));
H A DMacroTokenParser.php33 $stream = $this->parser->getStream();
36 $arguments = $this->parser->getExpressionParser()->parseArguments(true, true);
39 $this->parser->pushLocalScope();
40 $body = $this->parser->subparse([$this, 'decideBlockEnd'], true);
48 $this->parser->popLocalScope();
51 …$this->parser->setMacro($name, new MacroNode($name, new BodyNode([$body]), $arguments, $lineno, $t…
H A DSetTokenParser.php35 $stream = $this->parser->getStream();
36 $names = $this->parser->getExpressionParser()->parseAssignmentExpression();
40 $values = $this->parser->getExpressionParser()->parseMultitargetExpression();
56 $values = $this->parser->subparse([$this, 'decideBlockEnd'], true);
H A DSpacelessTokenParser.php35 $this->parser->getStream()->expect(Token::BLOCK_END_TYPE);
36 $body = $this->parser->subparse([$this, 'decideSpacelessEnd'], true);
37 $this->parser->getStream()->expect(Token::BLOCK_END_TYPE);
H A DUseTokenParser.php37 $template = $this->parser->getExpressionParser()->parseExpression();
38 $stream = $this->parser->getStream();
64 … $this->parser->addTrait(new Node(['template' => $template, 'targets' => new Node($targets)]));
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/
H A DREADME.md7 The ReflectionDocBlock component of phpDocumentor provides a DocBlock parser
/plugin/findologicxmlexport/vendor/symfony/yaml/
H A DCHANGELOG.md28 the parser and dumper is no longer supported, pass bitmask flags instead
142 * Added support for customizing the YAML parser behavior through an optional bit field:
H A DParser.php457 $parser = new self();
458 $parser->offset = $offset;
459 $parser->totalNumberOfLines = $this->totalNumberOfLines;
460 $parser->skippedLineNumbers = $skippedLineNumbers;
461 $parser->refs = &$this->refs;
462 $parser->refsBeingParsed = $this->refsBeingParsed;
464 return $parser->doParse($yaml, $flags);
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Fixtures/
H A DYtsSpecificationExamples.yml972 different: # As far as the YAML parser is concerned
/plugin/findologicxmlexport/vendor/twig/extensions/doc/
H A Di18n.rst103 configure the ``gettext`` parser to get something like this: ``xgettext --add-comments=notes``
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/Grammar/
H A DArguments.php24 return $this->parser->getExpressionParser()->parseArguments();
H A DBody.php33 $stream = $this->parser->getStream();
36 return $this->parser->subparse(array($this, 'decideBlockEnd'), true);
H A DConstant.php32 $this->parser->getStream()->expect($this->type, $this->name);
H A DHash.php24 return $this->parser->getExpressionParser()->parseHashExpression();
H A DOptional.php46 …if (!$this->parser->getStream()->test($this->grammar[0]->getType(), $this->grammar[0]->getName()))…
50 if (!$this->parser->getStream()->test(Twig_Token::NAME_TYPE)) {
53 } elseif ($this->parser->getStream()->test(Twig_Token::BLOCK_END_TYPE)) {
61 $grammar->setParser($this->parser);
H A DSwitch.php24 $this->parser->getStream()->expect(Twig_Token::NAME_TYPE, $this->name);
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/
H A DGrammar.php18 protected $parser; variable in Twig_Extensions_Grammar
29 * @param Twig_Parser $parser
31 public function setParser(Twig_Parser $parser) argument
33 $this->parser = $parser;
/plugin/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG489 * moved filters/functions/tests syntax errors to the parser
530 * fixed an error when a token parser pass a closure as a test to the subparse() method
636 * added recursive parsing support in the parser
806 * removed the grammar and simple token parser (moved to the Twig Extensions repository)
938 * added the lexer, parser, and compiler as arguments to the Twig_Environment constructor
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dadvanced.rst11 operators, global variables, and functions. You can even extend the parser
471 $parser = $this->parser;
472 $stream = $parser->getStream();
476 $value = $parser->getExpressionParser()->parseExpression();
490 The ``parse()`` method is invoked whenever the parser encounters a ``set``
495 from the token stream (``$this->parser->getStream()``):
604 * Returns the token parser instances to add to the existing list.
H A Ddeprecated.rst24 * As of Twig 1.x, the token parser broker sub-system is deprecated. The
31 parser, use ``$this->parser->getStream()->getSourceContext()->getPath()`` instead.

1...<<11121314151617