| /plugin/findologicxmlexport/vendor/phpunit/php-token-stream/tests/Token/ |
| 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());
|
| 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());
|
| D | NamespaceTest.php | 36 $this->assertSame(2, $token->getLine()); 55 $this->assertSame(2, $token->getLine());
|
| /plugin/findologicxmlexport/vendor/twig/twig/src/ |
| D | ExpressionParser.php | 88 $expr = new $class($expr, $expr1, $token->getLine()); 111 return $this->parsePostfixExpression(new $class($expr, $token->getLine())); 131 … $expr3 = new ConstantExpression('', $this->parser->getCurrentToken()->getLine()); 138 …pr = new ConditionalExpression($expr, $expr2, $expr3, $this->parser->getCurrentToken()->getLine()); 163 $node = new ConstantExpression(true, $token->getLine()); 168 $node = new ConstantExpression(false, $token->getLine()); 175 $node = new ConstantExpression(null, $token->getLine()); 180 $node = $this->getFunctionNode($token->getValue(), $token->getLine()); 182 $node = new NameExpression($token->getValue(), $token->getLine()); 189 $node = new ConstantExpression($token->getValue(), $token->getLine()); [all …]
|
| 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-…
|
| 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/src/TokenParser/ |
| 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(…
|
| 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());
|
| 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…
|
| 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…
|
| 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…
|
| 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…
|
| 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…
|
| 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());
|
| D | MacroTokenParser.php | 32 $lineno = $token->getLine(); 45 …or macro "%s" (but "%s" given).', $name, $value), $stream->getCurrent()->getLine(), $stream->getSo…
|
| 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/test/Twig/Tests/ |
| 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/ |
| 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/ |
| D | Filter.php | 46 $eLine = $e->getLine(); 53 $eLine = $e->getLine();
|
| /plugin/bibtex/OSBib/format/bibtexParse/ |
| 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/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()); 103 msg($e->getMessage(), -1, $e->getLine(), $e->getFile());
|
| /plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/ |
| D | CodeCoverage.php | 775 $_line = trim($lines[$token->getLine() - 1]); 790 $start = $token->getLine(); 819 $this->ignoredLines[$filename][] = $token->getLine(); 824 for ($i = $token->getLine(); $i <= $endLine; $i++) { 831 for ($i = $token->getLine(); 852 for ($i = $token->getLine(); 875 $this->ignoredLines[$filename][] = $token->getLine(); 880 $this->ignoredLines[$filename][] = $token->getLine();
|
| /plugin/structat/syntax/ |
| D | table.php | 84 msg($e->getMessage(), -1, $e->getLine(), $e->getFile()); 121 msg($e->getMessage(), -1, $e->getLine(), $e->getFile());
|