Home
last modified time | relevance | path

Searched refs:lineno (Results 1 – 25 of 67) sorted by path

123

/plugin/fedauth/Auth/OpenID/
H A DKVForm.php43 for ($lineno = 0; $lineno < count($lines); $lineno++) {
44 $line = $lines[$lineno];
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/Node/
H A DTrans.php19 … $plural = null, Twig_Node_Expression $count = null, Twig_Node $notes = null, $lineno, $tag = null) argument
32 parent::__construct($nodes, array(), $lineno, $tag);
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/TokenParser/
H A DTrans.php19 $lineno = $token->getLine();
49 $this->checkTransString($body, $lineno);
51 … return new Twig_Extensions_Node_Trans($body, $plural, $count, $notes, $lineno, $this->getTag());
72 protected function checkTransString(Twig_Node $body, $lineno) argument
83 …The text to be translated with "trans" can only contain references to simple variables'), $lineno);
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dadvanced_legacy.rst412 $lineno = $token->getLine();
419 return new Project_Set_Node($name, $value, $lineno, $this->getTag());
466 …public function __construct($name, \Twig\Node\Expression\AbstractExpression $value, $lineno, $tag …
468 parent::__construct(['value' => $value], ['name' => $name], $lineno, $tag);
/plugin/findologicxmlexport/vendor/twig/twig/ext/twig/
H A Dtwig.c549 zval *lineno; in TWIG_RUNTIME_ERROR() local
569 MAKE_STD_ZVAL(lineno); in TWIG_RUNTIME_ERROR()
576 ZVAL_LONG(lineno, -1); in TWIG_RUNTIME_ERROR()
583 constructor_args[1] = lineno; in TWIG_RUNTIME_ERROR()
589 zval_ptr_dtor(&lineno); in TWIG_RUNTIME_ERROR()
/plugin/findologicxmlexport/vendor/twig/twig/lib/Twig/Node/Expression/
H A DExtensionReference.php26 public function __construct($name, $lineno, $tag = null) argument
28 parent::__construct([], ['name' => $name], $lineno, $tag);
/plugin/findologicxmlexport/vendor/twig/twig/src/Error/
H A DError.php41 protected $lineno; variable in Twig\\Error\\Error
80 $this->lineno = $lineno;
170 return $this->lineno;
176 * @param int $lineno The template line
178 public function setTemplateLine($lineno) argument
180 $this->lineno = $lineno;
230 if ($this->sourcePath && $this->lineno > 0) {
232 $this->line = $this->lineno;
258 if ($this->lineno && $this->lineno >= 0) {
303 if (null === $template || $this->lineno > -1) {
[all …]
H A DLoaderError.php29 public function __construct($message, $lineno = -1, $source = null, \Exception $previous = null) argument
31 parent::__construct($message, $lineno, $source, $previous, false);
/plugin/findologicxmlexport/vendor/twig/twig/src/
H A DExpressionParser.php408 $lineno = $token->getLine();
409 $arguments = new ArrayExpression([], $lineno);
420 $arg = new ConstantExpression($token->getValue(), $lineno);
429 … throw new SyntaxError('Expected name or number.', $lineno, $stream->getSourceContext());
443 $node = new MethodCallExpression($node, 'get'.$name, $arguments, $lineno);
483 return new GetAttrExpression($node, $arg, $arguments, $type, $lineno);
H A DLexer.php27 protected $lineno; variable in Twig\\Lexer
105 $this->lineno = 1;
146 list($expect, $lineno) = array_pop($this->brackets);
197 $this->lineno = (int) $match[1];
201 $this->currentVarBlockLine = $this->lineno;
208 $this->currentVarBlockLine = $this->lineno;
277 list($expect, $lineno) = array_pop($this->brackets);
293 $this->brackets[] = ['"', $this->lineno];
343 list($expect, $lineno) = array_pop($this->brackets);
376 $this->tokens[] = new Token($type, $value, $this->lineno);
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/
H A DAutoEscapeNode.php29 public function __construct($value, \Twig_NodeInterface $body, $lineno, $tag = 'autoescape') argument
31 parent::__construct(['body' => $body], ['value' => $value], $lineno, $tag);
H A DBlockNode.php24 public function __construct($name, \Twig_NodeInterface $body, $lineno, $tag = null) argument
26 parent::__construct(['body' => $body], ['name' => $name], $lineno, $tag);
H A DBlockReferenceNode.php24 public function __construct($name, $lineno, $tag = null) argument
26 parent::__construct([], ['name' => $name], $lineno, $tag);
H A DDeprecatedNode.php25 public function __construct(AbstractExpression $expr, $lineno, $tag = null) argument
27 parent::__construct(['expr' => $expr], [], $lineno, $tag);
H A DDoNode.php24 public function __construct(AbstractExpression $expr, $lineno, $tag = null) argument
26 parent::__construct(['expr' => $expr], [], $lineno, $tag);
H A DEmbedNode.php26 … AbstractExpression $variables = null, $only = false, $ignoreMissing = false, $lineno, $tag = null) argument
28 …t::__construct(new ConstantExpression('not_used', $lineno), $variables, $only, $ignoreMissing, $li…
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/
H A DArrayExpression.php20 public function __construct(array $elements, $lineno) argument
22 parent::__construct($elements, [], $lineno);
H A DBlockReferenceExpression.php28 public function __construct(\Twig_NodeInterface $name, $template = null, $lineno, $tag = null) argument
41 parent::__construct($nodes, ['is_defined_test' => false, 'output' => false], $lineno, $tag);
H A DConditionalExpression.php19 …construct(AbstractExpression $expr1, AbstractExpression $expr2, AbstractExpression $expr3, $lineno) argument
21 parent::__construct(['expr1' => $expr1, 'expr2' => $expr2, 'expr3' => $expr3], [], $lineno);
H A DConstantExpression.php19 public function __construct($value, $lineno) argument
21 parent::__construct([], ['value' => $value], $lineno);
H A DFilterExpression.php20 …erface $node, ConstantExpression $filterName, \Twig_NodeInterface $arguments, $lineno, $tag = null) argument
22 …onstruct(['node' => $node, 'filter' => $filterName, 'arguments' => $arguments], [], $lineno, $tag);
H A DFunctionExpression.php19 public function __construct($name, \Twig_NodeInterface $arguments, $lineno) argument
21 …::__construct(['arguments' => $arguments], ['name' => $name, 'is_defined_test' => false], $lineno);
H A DGetAttrExpression.php20 …ression $node, AbstractExpression $attribute, AbstractExpression $arguments = null, $type, $lineno) argument
27 …e, 'is_defined_test' => false, 'ignore_strict_check' => false, 'disable_c_ext' => false], $lineno);
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/Binary/
H A DAbstractBinary.php20 public function __construct(\Twig_NodeInterface $left, \Twig_NodeInterface $right, $lineno) argument
22 parent::__construct(['left' => $left, 'right' => $right], [], $lineno);
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/Filter/
H A DDefaultFilter.php32 …erface $node, ConstantExpression $filterName, \Twig_NodeInterface $arguments, $lineno, $tag = null) argument
45 parent::__construct($node, $filterName, $arguments, $lineno, $tag);

123