/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/ |
H A D | TextTest.php | 12 use Twig\Node\TextNode; alias 19 $node = new TextNode('foo', 1); 27 $tests[] = [new TextNode('foo', 1), "// line 1\necho \"foo\";"];
|
H A D | SandboxTest.php | 13 use Twig\Node\TextNode; alias 20 $body = new TextNode('foo', 1); 30 $body = new TextNode('foo', 1);
|
H A D | BlockTest.php | 13 use Twig\Node\TextNode; alias 20 $body = new TextNode('foo', 1); 29 $body = new TextNode('foo', 1);
|
H A D | SpacelessTest.php | 14 use Twig\Node\TextNode; alias 21 $body = new Node([new TextNode('<div> <div> foo </div> </div>', 1)]); 29 $body = new Node([new TextNode('<div> <div> foo </div> </div>', 1)]);
|
H A D | AutoEscapeTest.php | 14 use Twig\Node\TextNode; alias 21 $body = new Node([new TextNode('foo', 1)]); 30 $body = new Node([new TextNode('foo', 1)]);
|
H A D | MacroTest.php | 16 use Twig\Node\TextNode; alias 23 $body = new TextNode('foo', 1); 34 $body = new TextNode('foo', 1);
|
H A D | ModuleTest.php | 20 use Twig\Node\TextNode; alias 28 $body = new TextNode('foo', 1); 49 $body = new TextNode('foo', 1);
|
H A D | SetTest.php | 18 use Twig\Node\TextNode; alias 59 $values = new TextNode('foo', 1);
|
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/ |
H A D | ParserTest.php | 15 use Twig\Node\TextNode; alias 79 new Node([new TextNode(' ', 1)]), 87 …$input = new Node([new SetNode(true, new Node(), new Node([new Node([new TextNode('foo', 1)])]), 1… 107 [new TextNode('foo', 1)], 108 [new Node([new Node([new TextNode('foo', 1)])])], 117 …$this->assertNull($this->getParser()->filterBodyNodes(new TextNode(\chr(0xEF).\chr(0xBB).\chr(0xBF…
|
/plugin/findologicxmlexport/vendor/twig/twig/lib/Twig/Node/ |
H A D | Text.php | 3 use Twig\Node\TextNode; alias 8 class Twig_Node_Text extends TextNode
|
/plugin/prosemirror/parser/ |
H A D | HardBreakNode.php | 14 /** @var TextNode */ 28 // every inline node needs a TextNode to track marks 29 $this->textNode = new TextNode(['marks' => $data['marks'] ?? null], $parent, $previous);
|
H A D | SmileyNode.php | 10 /** @var TextNode */ 18 // every inline node needs a TextNode to track marks 19 $this->textNode = new TextNode(['marks' => $data['marks'] ?? null], $parent, $previous);
|
H A D | LinkNode.php | 16 /** @var TextNode */ 30 // every inline node needs a TextNode to track marks 31 $this->textNode = new TextNode(['marks' => $data['marks'] ?? null], $parent, $previousNode);
|
H A D | TextNode.php | 5 class TextNode extends Node implements InlineNodeInterface class 7 /** @var TextNode */
|
H A D | PluginNode.php | 11 $this->textNode = new TextNode($data['content'][0], $this, $previous);
|
H A D | FootnoteNode.php | 7 /** @var TextNode[] */
|
H A D | ParagraphNode.php | 7 /** @var TextNode[] */
|
H A D | Node.php | 11 'text' => TextNode::class,
|
H A D | Mark.php | 29 /** @var TextNode */
|
H A D | ImageNode.php | 21 // every inline node needs a TextNode to track marks 22 $this->textNode = new TextNode(['marks' => $data['marks'] ?? null], $parent, $previousNode);
|
/plugin/findologicxmlexport/vendor/twig/twig/src/TokenParser/ |
H A D | SandboxTokenParser.php | 17 use Twig\Node\TextNode; alias 43 if ($node instanceof TextNode && ctype_space($node->getAttribute('data'))) {
|
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/ |
H A D | TextNode.php | 22 class TextNode extends Node implements NodeOutputInterface class
|
H A D | SetNode.php | 37 if ($values instanceof TextNode) {
|
/plugin/findologicxmlexport/vendor/twig/twig/src/ |
H A D | Parser.php | 26 use Twig\Node\TextNode; alias 161 $rv[] = new TextNode($token->getValue(), $token->getLine()); 397 ($node instanceof TextNode && !ctype_space($node->getAttribute('data'))) 399 …(!$node instanceof TextNode && !$node instanceof BlockReferenceNode && $node instanceof NodeOutput…
|
/plugin/diagramsnet/lib/math/extensions/ |
H A D | mml2jax.js | 19 …g.getAttribute("alttext"));if(e==="alttext"){if(d!=null){e=MathJax.HTML.TextNode(d)}else{e=null}}e…
|