Home
last modified time | relevance | path

Searched refs:node (Results 1 – 25 of 709) sorted by relevance

12345678910>>...29

/plugin/findologicxmlexport/vendor/twig/twig/src/NodeVisitor/
H A DOptimizerNodeVisitor.php83 $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 DSandboxNodeVisitor.php50 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 DSafeAnalysisNodeVisitor.php41 $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 DEscaperNodeVisitor.php47 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 DTreeNode.php56 ->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 Dfckxhtml_ie.js101 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 Dfckxhtml.js325 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 DThrowablePatch.php13 * @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 DSplFileInfoPatch.php28 * @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 DFilterTest.php26 $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 DFunctionTest.php25 $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 DCallTest.php18 $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 DDirectory.php22 * @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 Ddom.js43 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 DAttributesListener.php34 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 DAdjacentTextMerger.php
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/Test/
H A DDefinedTest.php38 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 DNodeStack.php14 /** @var Node the root node */
22 $node = new Node('doc');
23 $this->doc = $node;
24 $this->top($node);
36 * Get the current node (the one at the top of the stack)
46 * Get the document (top most level) node
56 * Make the given node the current one
58 * @param Node $node
60 protected function top(Node $node) argument
62 $this->stack[] = $node;
71 addTop(Node $node) global() argument
101 add(Node $node) global() argument
[all...]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Notifications/
H A DNodeTest.php25 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 DXML.php107 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 DProfilerNodeVisitor.php41 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 DTransTest.php30 $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 DXML.php110 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 Drenderer.php43 public function addToNodestackTop(Node $node) argument
45 $this->nodestack->addTop($node);
48 public function addToNodestack(Node $node) argument
50 $this->nodestack->add($node);
168 public function listitem_open($level, $node = false) argument
212 $node = $this->nodestack->drop('table_row');
213 $node->attr('columns', $this->colcount);
251 $node = new Node($type);
252 $node->attr('colspan', $colspan);
253 $node
[all...]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/
H A DForTest.php31 $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 …]

12345678910>>...29