/plugin/findologicxmlexport/vendor/phpunit/php-token-stream/tests/Token/ |
H A D | ClosureTest.php | 62 $this->assertEquals(2, $this->functions[0]->getLine()); 63 $this->assertEquals(3, $this->functions[1]->getLine()); 64 $this->assertEquals(4, $this->functions[2]->getLine()); 65 $this->assertEquals(5, $this->functions[3]->getLine()); 73 $this->assertEquals(2, $this->functions[0]->getLine()); 74 $this->assertEquals(3, $this->functions[1]->getLine()); 75 $this->assertEquals(4, $this->functions[2]->getLine()); 76 $this->assertEquals(5, $this->functions[3]->getLine());
|
H A D | FunctionTest.php | 72 $this->assertEquals(5, $this->functions[0]->getLine()); 73 $this->assertEquals(10, $this->functions[1]->getLine()); 74 $this->assertEquals(17, $this->functions[2]->getLine()); 75 $this->assertEquals(21, $this->functions[3]->getLine()); 76 $this->assertEquals(29, $this->functions[4]->getLine());
|
H A D | NamespaceTest.php | 36 $this->assertSame(2, $token->getLine()); 55 $this->assertSame(2, $token->getLine());
|
/plugin/findologicxmlexport/vendor/twig/twig/src/TokenParser/ |
H A D | EmbedTokenParser.php | 34 … $parentToken = $fakeParentToken = new Token(Token::STRING_TYPE, '__parent__', $token->getLine()); 36 … $parentToken = new Token(Token::STRING_TYPE, $parent->getAttribute('value'), $token->getLine()); 38 … $parentToken = new Token(Token::NAME_TYPE, $parent->getAttribute('name'), $token->getLine()); 43 new Token(Token::BLOCK_START_TYPE, '', $token->getLine()), 44 new Token(Token::NAME_TYPE, 'extends', $token->getLine()), 46 new Token(Token::BLOCK_END_TYPE, '', $token->getLine()), 60 …odule->getAttribute('index'), $variables, $only, $ignoreMissing, $token->getLine(), $this->getTag(…
|
H A D | FilterTokenParser.php | 34 …ckReferenceExpression(new ConstantExpression($name, $token->getLine()), null, $token->getLine(), $… 42 $block = new BlockNode($name, $body, $token->getLine()); 45 return new PrintNode($filter, $token->getLine(), $this->getTag());
|
H A D | SetTokenParser.php | 34 $lineno = $token->getLine(); 45 …e the same number of variables and assignments.', $stream->getCurrent()->getLine(), $stream->getSo… 51 …t with a block, you cannot have a multi-target.', $stream->getCurrent()->getLine(), $stream->getSo…
|
H A D | AutoEscapeTokenParser.php | 41 $lineno = $token->getLine(); 49 …n escaping strategy must be a string or a bool.', $stream->getCurrent()->getLine(), $stream->getSo… 63 …ping strategy as you set autoescaping to false.', $stream->getCurrent()->getLine(), $stream->getSo…
|
H A D | FromTokenParser.php | 52 … new AssignNameExpression($this->parser->getVarName(), $token->getLine()), $token->getLine(), $thi… 56 …nnot be an imported macro as it is a reserved keyword.', $name), $token->getLine(), $stream->getSo…
|
H A D | BlockTokenParser.php | 36 $lineno = $token->getLine(); 40 …his->parser->getBlock($name)->getTemplateLine()), $stream->getCurrent()->getLine(), $stream->getSo… 52 …or block "%s" (but "%s" given).', $name, $value), $stream->getCurrent()->getLine(), $stream->getSo…
|
H A D | ExtendsTokenParser.php | 32 …throw new SyntaxError('Cannot extend from a block.', $token->getLine(), $stream->getSourceContext(… 36 …throw new SyntaxError('Multiple extends tags are forbidden.', $token->getLine(), $stream->getSourc…
|
H A D | ImportTokenParser.php | 31 …ameExpression($this->parser->getStream()->expect(Token::NAME_TYPE)->getValue(), $token->getLine()); 36 return new ImportNode($macro, $var, $token->getLine(), $this->getTag());
|
H A D | MacroTokenParser.php | 32 $lineno = $token->getLine(); 45 …or macro "%s" (but "%s" given).', $name, $value), $stream->getCurrent()->getLine(), $stream->getSo…
|
H A D | IfTokenParser.php | 37 $lineno = $token->getLine(); 66 …e the "if" block started at line %d).', $lineno), $stream->getCurrent()->getLine(), $stream->getSo…
|
/plugin/findologicxmlexport/vendor/twig/twig/src/ |
H A D | ExpressionParser.php | 88 $expr = new $class($expr, $expr1, $token->getLine()); 163 $node = new ConstantExpression(true, $token->getLine()); 175 $node = new ConstantExpression(null, $token->getLine()); 219 $node = new $class($expr, $token->getLine()); 272 $node = new ArrayExpression([], $stream->getCurrent()->getLine()); 297 $node = new ArrayExpression([], $stream->getCurrent()->getLine()); 408 $lineno = $token->getLine(); 455 $arg = new ConstantExpression(0, $token->getLine()); 466 $length = new ConstantExpression(null, $token->getLine()); 473 …ew $class($node, new ConstantExpression('slice', $token->getLine()), $arguments, $token->getLine()… [all …]
|
H A D | Parser.php | 133 $e->setTemplateLine($this->stream->getCurrent()->getLine()); 155 $lineno = $this->getCurrentToken()->getLine(); 161 $rv[] = new TextNode($token->getValue(), $token->getLine()); 168 $rv[] = new PrintNode($expr, $token->getLine()); 176 …throw new SyntaxError('A block must start with a tag name.', $token->getLine(), $this->stream->get… 194 … SyntaxError(sprintf('Unexpected "%s" tag', $token->getValue()), $token->getLine(), $this->stream-… 200 …ew SyntaxError(sprintf('Unknown "%s" tag.', $token->getValue()), $token->getLine(), $this->stream-… 216 …xer or parser ended up in unsupported state.', $this->getCurrentToken()->getLine(), $this->stream-…
|
H A D | TokenStream.php | 72 …xError('Unexpected end of template.', $this->tokens[$this->current - 1]->getLine(), $this->source); 99 $line = $token->getLine(); 123 …expected end of template.', $this->tokens[$this->current + $number - 1]->getLine(), $this->source);
|
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/ |
H A D | LexerTest.php | 91 $this->assertSame(1, $stream->expect(Token::TEXT_TYPE)->getLine()); 93 $this->assertSame(10, $stream->expect(Token::TEXT_TYPE)->getLine()); 95 $this->assertSame(11, $stream->expect(Token::VAR_START_TYPE)->getLine()); 97 $this->assertSame(12, $stream->expect(Token::NAME_TYPE)->getLine()); 111 $this->assertSame(1, $stream->expect(Token::TEXT_TYPE)->getLine()); 113 $this->assertSame(10, $stream->expect(Token::VAR_START_TYPE)->getLine()); 115 $this->assertSame(11, $stream->expect(Token::NAME_TYPE)->getLine());
|
/plugin/findologicxmlexport/vendor/phpunit/php-token-stream/src/Token/ |
H A D | Stream.php | 374 'startLine' => $token->getLine(), 389 'startLine' => $token->getLine(), 414 'startLine' => $token->getLine(), 453 $classEndLine[count($classEndLine) - 1] == $token->getLine()) { 457 $traitEndLine == $token->getLine()) { 461 $interfaceEndLine == $token->getLine()) {
|
/plugin/struct/meta/ |
H A D | CSVImporter.php | 98 protected function getLine() function in dokuwiki\\plugin\\struct\\meta\\CSVImporter 108 $header = $this->getLine(); 144 while (($data = $this->getLine()) !== false) {
|
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/ |
H A D | Filter.php | 46 $eLine = $e->getLine(); 53 $eLine = $e->getLine();
|
/plugin/struct/syntax/ |
H A D | value.php | 74 msg($e->getMessage(), -1, $e->getLine(), $e->getFile()); 116 msg($e->getMessage(), -1, $e->getLine(), $e->getFile());
|
H A D | cloud.php | 73 msg($e->getMessage(), -1, $e->getLine(), $e->getFile()); 106 msg($e->getMessage(), -1, $e->getLine(), $e->getFile());
|
/plugin/bibtex/OSBib/format/bibtexParse/ |
H A D | PARSEENTRIES.php | 149 function getLine() function in PARSEENTRIES 289 if(($line = $this->getLine()) === FALSE) 298 $line .= $this->getLine(); 390 $line = $lastLine ? $lastLine : $this->getLine(); 400 $line = $lastLine ? $lastLine : $this->getLine();
|
/plugin/structat/syntax/ |
H A D | table.php | 84 msg($e->getMessage(), -1, $e->getLine(), $e->getFile()); 121 msg($e->getMessage(), -1, $e->getLine(), $e->getFile());
|
/plugin/bez/syntax/ |
H A D | struct.php | 66 msg($e->getMessage(), -1, $e->getLine(), $e->getFile()); 102 msg($e->getMessage(), -1, $e->getLine(), $e->getFile());
|