/plugin/findologicxmlexport/vendor/twig/twig/src/NodeVisitor/ |
H A D | OptimizerNodeVisitor.php | 83 $node = $this->optimizeVariables($node, $env); 90 return $node; 102 $node = $this->optimizeRawFilter($node, $env); 105 $node = $this->optimizePrintNode($node, $env); 123 return $node; 128 if ('Twig_Node_Expression_Name' === \get_class($node) && $node->isSimple()) { 134 return $node; 149 return $node; 162 return $node; 176 return $node; [all …]
|
H A D | SandboxNodeVisitor.php | 50 return $node; 53 if ($node->getNodeTag() && !isset($this->tags[$node->getNodeTag()])) { 54 $this->tags[$node->getNodeTag()] = $node; 59 $this->filters[$node->getNode('filter')->getAttribute('value')] = $node; 64 $this->functions[$node->getAttribute('name')] = $node; 77 if ($node instanceof SetNode && !$node->getAttribute('capture')) { 97 return $node; 107 if ($node instanceof PrintNode || $node instanceof SetNode) { 112 return $node; 117 $expr = $node->getNode($name); [all …]
|
H A D | SafeAnalysisNodeVisitor.php | 41 $hash = spl_object_hash($node); 47 if ($bucket['key'] !== $node) { 61 $hash = spl_object_hash($node); 72 'key' => $node, 79 return $node; 86 $this->setSafe($node, ['all']); 96 $this->setSafe($node, $safe); 108 $this->setSafe($node, []); 126 …} elseif ($node instanceof GetAttrExpression && $node->getNode('node') instanceof NameExpression) { 135 $this->setSafe($node, []); [all …]
|
H A D | EscaperNodeVisitor.php | 47 if ($node instanceof ModuleNode) { 61 return $node; 66 if ($node instanceof ModuleNode) { 76 if ($node instanceof AutoEscapeNode || $node instanceof BlockNode) { 82 return $node; 88 return $node; 94 return $node; 97 $class = \get_class($node); 101 $node->getTemplateLine() 114 $node = $filter->getNode('node'); [all …]
|
/plugin/findologicxmlexport/vendor/hoa/compiler/Test/Unit/Llk/ |
H A D | TreeNode.php | 56 ->when($node = new SUT('foo')) 58 ->object($node) 66 ->when($node = new SUT($id)) 68 ->string($node->getId()) 89 ->string($node->getId()) 91 ->array($node->getValue()) 111 ->string($node->getId()) 134 ->string($node->getId()) 160 $node = new SUT('foo'), 161 $node->setId('bar') [all …]
|
/plugin/wysiwyg/fckeditor/editor/_source/internals/ |
H A D | fckxhtml_ie.js | 101 return node ; 110 node = FCKXHtml._AppendChildNodes( node, htmlNode ) ; 112 return node ; 127 return node ; 136 node = FCKXHtml._AppendChildNodes( node, htmlNode ) ; 138 return node ; 158 return node ; 166 node = FCKXHtml._AppendChildNodes( node, htmlNode ) ; 168 return node ; 185 return node ; [all …]
|
H A D | fckxhtml.js | 325 return node ; 349 return node ; 360 return node ; 375 return node ; 389 return node ; 396 return node ; 417 node = FCKXHtml._AppendChildNodes( node, htmlNode ) ; 419 return node ; 430 return node ; 448 return node ; [all …]
|
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ |
H A D | ThrowablePatch.php | 13 * @param ClassNode $node 16 public function supports(ClassNode $node) argument 18 … return $this->implementsAThrowableInterface($node) && $this->doesNotExtendAThrowableClass($node); 22 * @param ClassNode $node 37 * @param ClassNode $node 48 * @param ClassNode $node 67 $node 77 $node->removeMethod('getCode'); 78 $node->removeMethod('getFile'); 79 $node->removeMethod('getLine'); [all …]
|
H A D | SplFileInfoPatch.php | 28 * @param ClassNode $node 32 public function supports(ClassNode $node) argument 45 * @param ClassNode $node 47 public function apply(ClassNode $node) argument 53 $node->addMethod($constructor); 90 * @param ClassNode $node 95 $parent = $node->getParentClass(); 102 * @param ClassNode $node 107 $parent = $node->getParentClass(); 114 * @param ClassNode $node [all …]
|
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/Expression/ |
H A D | FilterTest.php | 26 $node = new FilterExpression($expr, $name, $args, 1); 28 $this->assertEquals($expr, $node->getNode('node')); 42 $node = $this->createFilter($expr, 'upper'); 53 $node = $this->createFilter($date, 'date', [ 61 $node = $this->createFilter($date, 'date', [ 68 $node = $this->createFilter($string, 'reverse', [ 84 $node = $this->createFilter($string, 'bar'); 91 $node = $this->createFilter($string, 'barbar'); 118 $node = $this->createFilter($date, 'date', [ 123 $compiler->compile($node); [all …]
|
H A D | FunctionTest.php | 25 $node = new FunctionExpression($name, $args, 1); 27 $this->assertEquals($name, $node->getAttribute('name')); 42 $node = $this->createFunction('foo'); 43 $tests[] = [$node, 'foo()', $environment]; 48 $node = $this->createFunction('bar'); 49 $tests[] = [$node, 'bar($this->env)', $environment]; 54 $node = $this->createFunction('foofoo'); 60 $node = $this->createFunction('foobar'); 67 $node = $this->createFunction('date', [ 74 $node = $this->createFunction('barbar'); [all …]
|
H A D | CallTest.php | 18 $node = new Twig_Tests_Node_Expression_Call([], ['type' => 'function', 'name' => 'date']); 28 $node = new Twig_Tests_Node_Expression_Call([], ['type' => 'function', 'name' => 'date']); 29 $node->getArguments('date', ['timestamp' => 123456, 'Y-m-d']); 38 $node = new Twig_Tests_Node_Expression_Call([], ['type' => 'function', 'name' => 'date']); 39 $node->getArguments('date', ['Y-m-d', 'format' => 'U']); 48 $node = new Twig_Tests_Node_Expression_Call([], ['type' => 'function', 'name' => 'date']); 49 $node->getArguments('date', ['Y-m-d', 'timestamp' => null, 'unknown' => '']); 58 $node = new Twig_Tests_Node_Expression_Call([], ['type' => 'function', 'name' => 'date']); 92 $node->getArguments([$this, 'customFunctionWithArbitraryArguments'], []); 114 $node->getArguments('custom_Twig_Tests_Node_Expression_CallTest_function', []); [all …]
|
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/ |
H A D | Directory.php | 22 * @param DirectoryNode $node 31 $items = $this->renderItem($node, true); 33 foreach ($node->getDirectories() as $item) { 37 foreach ($node->getFiles() as $item) { 43 'id' => $node->getId(), 52 * @param Node $node 77 if ($node instanceof DirectoryNode) { 80 $node->getName(), 81 $node->getName() 88 $node->getName(), [all …]
|
/plugin/sequencediagram/bower_components/raphael/dev/test/svg/ |
H A D | dom.js | 43 equalNodePosition(assert, el.node, paper.canvas, paper.defs, x.node); 53 equalNodePosition(assert, el.node, paper.canvas, x.node, y.node); 94 equalNodePositionWrapped(assert, el.node, anchor, paper.canvas, x.node, y.node); 131 equalNodePosition(assert, el.node, paper.canvas, x.node, null); 141 equalNodePosition(assert, el.node, paper.canvas, x.node, y.node); 182 equalNodePositionWrapped(assert, el.node, anchor, paper.canvas, x.node, y.node); 207 node = el.node; 217 node = el.node, 229 node = el.node; 240 node = el.node; [all …]
|
/plugin/commonmark/vendor/league/commonmark/src/Extension/Attributes/Event/ |
H A D | AttributesListener.php | 34 foreach ($event->getDocument()->iterator() as $node) { 35 if (! ($node instanceof Attributes || $node instanceof AttributesInline)) { 39 [$target, $direction] = self::findTargetAndDirection($node); 48 $attributes = AttributesHelper::mergeAttributes($target, $node->getAttributes()); 50 $attributes = AttributesHelper::mergeAttributes($node->getAttributes(), $target); 56 $node->detach(); 61 * @param Attributes|AttributesInline $node 65 private static function findTargetAndDirection($node): array 69 $previous = $next = $node; 75 findTargetAndDirection(Node $node) global() argument 115 getPrevious(Node $node = null) global() argument 126 getNext(Node $node = null) global() argument 137 isAttributesNode(Node $node) global() argument [all...] |
/plugin/commonmark/vendor/league/commonmark/src/Inline/ |
H A D | AdjacentTextMerger.php |
|
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/Test/ |
H A D | DefinedTest.php | 38 if ($node instanceof NameExpression) { 39 $node->setAttribute('is_defined_test', true); 40 } elseif ($node instanceof GetAttrExpression) { 41 $node->setAttribute('is_defined_test', true); 42 $this->changeIgnoreStrictCheck($node); 44 $node->setAttribute('is_defined_test', true); 45 … } elseif ($node instanceof FunctionExpression && 'constant' === $node->getAttribute('name')) { 46 $node->setAttribute('is_defined_test', true); 47 } elseif ($node instanceof ConstantExpression || $node instanceof ArrayExpression) { 48 $node = new ConstantExpression(true, $node->getTemplateLine()); [all …]
|
/plugin/prosemirror/schema/ |
H A D | NodeStack.php | 13 /** @var Node the root node */ 21 $node = new Node('doc'); 22 $this->doc = $node; 23 $this->top($node); 35 * Get the current node (the one at the top of the stack) 45 * Get the document (top most level) node 55 * Make the given node the current one 57 * @param Node $node 59 protected function top(Node $node) 61 $this->stack[] = $node; 60 top(Node $node) global() argument 71 addTop(Node $node) global() argument 101 add(Node $node) global() argument [all...] |
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Notifications/ |
H A D | NodeTest.php | 25 return $node; 31 $node = $this->getInstance(); 38 $node = $this->getInstance(); 45 $node = $this->getInstance(); 52 $node = $this->getInstance(); 53 $node->delete(); 60 $node = $this->getInstance(); 67 $node = $this->getInstance(); 90 $node = $this->getInstance(); 91 $node->setACL(array()); [all …]
|
/plugin/fedauth/Auth/Yadis/ |
H A D | XML.php | 107 function content($node) argument 121 function attributes($node) argument 167 if ($node) { 186 function content($node) argument 188 if ($node) { 195 if ($node) { 257 if ($node) { 276 function content($node) argument 278 if ($node) { 285 if ($node) { [all …]
|
/plugin/findologicxmlexport/vendor/twig/twig/src/Profiler/NodeVisitor/ |
H A D | ProfilerNodeVisitor.php | 41 return $node; 46 if ($node instanceof ModuleNode) { 48 …$node->setNode('display_start', new Node([new EnterProfileNode($this->extensionName, Profile::TEMP… 49 …$node->setNode('display_end', new Node([new LeaveProfileNode($varName), $node->getNode('display_en… 50 } elseif ($node instanceof BlockNode) { 52 $node->setNode('body', new BodyNode([ 54 $node->getNode('body'), 57 } elseif ($node instanceof MacroNode) { 59 $node->setNode('body', new BodyNode([ 61 $node->getNode('body'), [all …]
|
/plugin/findologicxmlexport/vendor/twig/extensions/test/Twig/Tests/Node/ |
H A D | TransTest.php | 30 $node = new Twig_Extensions_Node_Trans($body, $plural, $count, null, 0); 32 $this->assertEquals($body, $node->getNode('body')); 33 $this->assertEquals($count, $node->getNode('count')); 34 $this->assertEquals($plural, $node->getNode('plural')); 42 $node = new Twig_Extensions_Node_Trans($body, null, null, null, 0); 46 $node = new Twig_Extensions_Node_Trans($body, null, null, null, 0); 47 $tests[] = array($node, 'echo gettext("Hello");'); 52 $node = new Twig_Extensions_Node_Trans($body, null, null, null, 0); 53 $tests[] = array($node, 'echo gettext("Hello");'); 60 $node = new Twig_Extensions_Node_Trans($body, null, null, null, 0); [all …]
|
/plugin/openid/Auth/Yadis/ |
H A D | XML.php | 110 function content($node) argument 172 if ($node) { 191 function content($node) argument 193 if ($node) { 200 if ($node) { 281 if ($node) { 300 function content($node) argument 302 if ($node) { 309 * @param DOMNode $node 314 if ($node) { [all …]
|
/plugin/prosemirror/ |
H A D | renderer.php | 46 public function addToNodestackTop(Node $node) 48 $this->nodestack->addTop($node); argument 51 public function addToNodestack(Node $node) 53 $this->nodestack->add($node); 172 public function listitem_open($level, $node = false) 216 $node = $this->nodestack->drop('table_row'); 217 $node->attr('columns', $this->colcount); 256 $node = new Node($type); 257 $node->attr('colspan', $colspan); 258 $node 43 addToNodestackTop(Node $node) global() argument 168 listitem_open($level, $node = false) global() argument [all...] |
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/ |
H A D | ForTest.php | 31 $node->setAttribute('with_loop', false); 39 $this->assertFalse($node->hasNode('else')); 43 $node->setAttribute('with_loop', false); 58 $node->setAttribute('with_loop', false); 60 $tests[] = [$node, <<<EOF 80 $node->setAttribute('with_loop', true); 82 $tests[] = [$node, <<<EOF 123 $node->setAttribute('with_loop', true); 125 $tests[] = [$node, <<<EOF 156 $node->setAttribute('with_loop', true); [all …]
|