/plugin/findologicxmlexport/vendor/twig/twig/src/Error/ |
H A D | Error.php | 41 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 D | LoaderError.php | 29 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 D | Lexer.php | 27 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 …]
|
H A D | Token.php | 26 protected $lineno; variable in Twig\\Token 45 * @param int $lineno The line position in the source 47 public function __construct($type, $value, $lineno) argument 51 $this->lineno = $lineno; 91 return $this->lineno;
|
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/TokenParser/ |
H A D | Trans.php | 19 $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/openid/Auth/OpenID/ |
H A D | KVForm.php | 43 for ($lineno = 0; $lineno < count($lines); $lineno++) { 44 $line = $lines[$lineno];
|
/plugin/fedauth/Auth/OpenID/ |
H A D | KVForm.php | 43 for ($lineno = 0; $lineno < count($lines); $lineno++) { 44 $line = $lines[$lineno];
|
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/ |
H A D | Node.php | 26 protected $lineno; variable in Twig\\Node\\Node 39 * @param int $lineno The line number 42 public function __construct(array $nodes = [], array $attributes = [], $lineno = 0, $tag = null) argument 51 $this->lineno = $lineno; 127 return $this->lineno; 137 return $this->lineno;
|
H A D | EmbedNode.php | 26 … AbstractExpression $variables = null, $only = false, $ignoreMissing = false, $lineno, $tag = null) argument 28 …t::__construct(new ConstantExpression('not_used', $lineno), $variables, $only, $ignoreMissing, $li…
|
H A D | ForNode.php | 28 … $ifexpr = null, \Twig_NodeInterface $body, \Twig_NodeInterface $else = null, $lineno, $tag = null) argument 30 $body = new Node([$body, $this->loop = new ForLoopNode($lineno, $tag)]); 33 $body = new IfNode(new Node([$ifexpr, $body]), null, $lineno, $tag); 41 … parent::__construct($nodes, ['with_loop' => true, 'ifexpr' => null !== $ifexpr], $lineno, $tag);
|
H A D | FlushNode.php | 23 public function __construct($lineno, $tag) argument 25 parent::__construct([], [], $lineno, $tag);
|
H A D | AutoEscapeNode.php | 29 public function __construct($value, \Twig_NodeInterface $body, $lineno, $tag = 'autoescape') argument 31 parent::__construct(['body' => $body], ['value' => $value], $lineno, $tag);
|
H A D | TextNode.php | 24 public function __construct($data, $lineno) argument 26 parent::__construct([], ['data' => $data], $lineno);
|
H A D | BlockReferenceNode.php | 24 public function __construct($name, $lineno, $tag = null) argument 26 parent::__construct([], ['name' => $name], $lineno, $tag);
|
H A D | SpacelessNode.php | 25 public function __construct(\Twig_NodeInterface $body, $lineno, $tag = 'spaceless') argument 27 parent::__construct(['body' => $body], [], $lineno, $tag);
|
/plugin/findologicxmlexport/vendor/twig/twig/src/TokenParser/ |
H A D | BlockTokenParser.php | 36 $lineno = $token->getLine(); 42 $this->parser->setBlock($name, $block = new BlockNode($name, new Node([]), $lineno)); 57 new PrintNode($this->parser->getExpressionParser()->parseExpression(), $lineno), 66 return new BlockReferenceNode($name, $lineno, $this->getTag());
|
H A D | IfTokenParser.php | 37 $lineno = $token->getLine(); 66 …e", "elseif", or "endif" to close the "if" block started at line %d).', $lineno), $stream->getCurr… 72 return new IfNode(new Node($tests), $else, $lineno, $this->getTag());
|
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/ |
H A D | AsseticTokenParser.php | 156 * @param int $lineno 161 …$body, array $inputs, array $filters, $name, array $attributes = array(), $lineno = 0, $tag = null) argument 168 … return $this->createNode($asset, $body, $inputs, $filters, $name, $attributes, $lineno, $tag); 171 return new AsseticNode($asset, $body, $inputs, $filters, $name, $attributes, $lineno, $tag); 181 * @param int $lineno 188 …$body, array $inputs, array $filters, $name, array $attributes = array(), $lineno = 0, $tag = null) argument 196 return new AsseticNode($asset, $body, $inputs, $filters, $name, $attributes, $lineno, $tag);
|
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/ |
H A D | ConstantExpression.php | 19 public function __construct($value, $lineno) argument 21 parent::__construct([], ['value' => $value], $lineno);
|
H A D | TempNameExpression.php | 18 public function __construct($name, $lineno) argument 20 parent::__construct([], ['name' => $name], $lineno);
|
/plugin/xtern/ |
H A D | admin.php | 166 $lineno = 0; 168 $lineno++; 202 $this->do_check($link,$lineno,$id); 206 $this->do_check($matches[1],$lineno,$id); 211 function do_check($url, $lineno = "",$id = "") { argument 231 if($lineno) { 245 if($lineno) { 246 echo ' line' . " $lineno: $url" . "\n";
|
/plugin/findologicxmlexport/vendor/twig/twig/src/Sandbox/ |
H A D | SecurityNotAllowedFilterError.php | 23 …public function __construct($message, $functionName, $lineno = -1, $filename = null, \Exception $p… argument 25 parent::__construct($message, $lineno, $filename, $previous);
|
H A D | SecurityNotAllowedFunctionError.php | 23 …public function __construct($message, $functionName, $lineno = -1, $filename = null, \Exception $p… argument 25 parent::__construct($message, $lineno, $filename, $previous);
|
H A D | SecurityNotAllowedTagError.php | 23 …public function __construct($message, $tagName, $lineno = -1, $filename = null, \Exception $previo… argument 25 parent::__construct($message, $lineno, $filename, $previous);
|
/plugin/findologicxmlexport/vendor/twig/twig/lib/Twig/Node/Expression/ |
H A D | ExtensionReference.php | 26 public function __construct($name, $lineno, $tag = null) argument 28 parent::__construct([], ['name' => $name], $lineno, $tag);
|