Home
last modified time | relevance | path

Searched refs:node (Results 76 – 100 of 709) sorted by relevance

12345678910>>...29

/plugin/eventline/timeline_ajax/scripts/
H A Dsignal.js13 var node = heads[h].firstChild; variable
14 while (node != null) {
15 if (node.nodeType == 1 && node.tagName.toLowerCase() == "script") {
16 var url = node.src;
19 heads[h].removeChild(node); // remove it so we won't hit it again
40 node = node.nextSibling;
/plugin/tline/timeline_ajax/scripts/
H A Dsignal.js13 var node = heads[h].firstChild; variable
14 while (node != null) {
15 if (node.nodeType == 1 && node.tagName.toLowerCase() == "script") {
16 var url = node.src;
19 heads[h].removeChild(node); // remove it so we won't hit it again
40 node = node.nextSibling;
/plugin/wysiwyg/fckeditor/editor/_source/internals/
H A Dfckxhtml_gecko.js34 FCKXHtml._AppendAttributes = function( xmlNode, htmlNode, node ) argument
67 this._AppendAttribute( node, sAttName, sAttValue ) ;
78 FCKXHtml.TagProcessors['head'] = function( node, htmlNode ) argument
80 FCKXHtml.XML._HeadElement = node ;
82 node = FCKXHtml._AppendChildNodes( node, htmlNode, true ) ;
84 return node ;
89 FCKXHtml.TagProcessors['meta'] = function( node, htmlNode, xmlNode )
103 return node ;
/plugin/findologicxmlexport/vendor/twig/twig/src/
H A DExpressionParser.php261 $expr = new ConcatBinary($expr, $node, $node->getTemplateLine());
289 return $node;
333 return $node;
342 $node = $this->parseSubscriptExpression($node);
344 $node = $this->parseFilterExpression($node);
353 return $node;
446 return $node;
507 $node = new $class($node, $name, $arguments, $token->getLine(), $tag);
516 return $node;
749 if (!($node instanceof ConstantExpression || $node instanceof ArrayExpression
[all …]
H A DParser.php143 $node = $traverser->traverse($node);
150 return $node;
210 if (null !== $node) {
211 $rv[] = $node;
293 $this->macros[$name] = $node;
397 ($node instanceof TextNode && !ctype_space($node->getAttribute('data')))
399 …(!$node instanceof TextNode && !$node instanceof BlockReferenceNode && $node instanceof NodeOutput…
414 return $node;
421 foreach ($node as $k => $n) {
423 $node->removeNode($k);
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/Expression/Unary/
H A DNegTest.php21 $node = new NegUnary($expr, 1);
23 $this->assertEquals($expr, $node->getNode('node'));
28 $node = new ConstantExpression(1, 1);
29 $node = new NegUnary($node, 1);
32 [$node, '-1'],
33 [new NegUnary($node, 1), '- -1'],
H A DPosTest.php21 $node = new PosUnary($expr, 1);
23 $this->assertEquals($expr, $node->getNode('node'));
28 $node = new ConstantExpression(1, 1);
29 $node = new PosUnary($node, 1);
32 [$node, '+1'],
H A DNotTest.php21 $node = new NotUnary($expr, 1);
23 $this->assertEquals($expr, $node->getNode('node'));
28 $node = new ConstantExpression(1, 1);
29 $node = new NotUnary($node, 1);
32 [$node, '!1'],
/plugin/sequencediagram/bower_components/raphael/dev/
H A Draphael.svg.js160 node = o.node,
323 var node = o.node,
584 node = el.node,
640 this[0] = this.node = node;
909 var node = getRealNode(this.node);
921 node.parentNode.removeChild(node);
1121 var node = getRealNode(this.node);
1122 node.parentNode.appendChild(node);
1138 var node = getRealNode(this.node);
1157 var node = getRealNode(this.node);
[all …]
/plugin/prosemirror/parser/
H A DImageNode.php20 // every inline node needs a TextNode to track marks
76 $node = new \dokuwiki\plugin\prosemirror\schema\Node('image');
79 $node,
90 $node->addMark(new \dokuwiki\plugin\prosemirror\schema\Mark($mark));
94 $node->attr('data-resolvedHtml',
97 $renderer->addToNodestack($node);
101 \dokuwiki\plugin\prosemirror\schema\Node $node,
111 $node->attr($prefix . 'src', ml($src));
112 $node->attr($prefix . 'title', $title);
127 $node
100 addAttributes(\\dokuwiki\\plugin\\prosemirror\\schema\\Node $node, $src, $title = null, $align = null, $width = null, $height = null, $cache = null, $linking = null, $prefix = '') global() argument
[all...]
H A DListItemNode.php28 foreach ($data['content'] as $node) {
29 if ($node['type'] === 'list_content') {
30 foreach ($node['content'] as $subnode) {
36 $this->subnodes[] = self::getSubNode($node, $this);
43 foreach ($this->subnodes as $node) {
50 if (is_a($node, ListNode::class)) {
53 $lines[] = $prefixLinebreak . $node->toSyntax();
/plugin/asciimath/
H A Dasciimathml148r.js347 return node;
493 node = AMcreateMmlNode("mrow",node);
607 node = AMcreateMmlNode("mrow",node);
612 node = AMcreateMmlNode("mrow",node);
657 node = AMcreateMmlNode(symbol.tag,node);
681 node = AMcreateMmlNode(symbol.tag,node);
686 else if (node!=undefined) newFrag.appendChild(node);
726 node.removeChild(node.firstChild); //remove (
729 node.removeChild(node.firstChild); //remove ,
764 node = AMcreateMmlNode("math",node);
[all …]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/PartialUpdate/
H A DPluginTest.php12 protected $node; variable in Sabre\\DAV\\PartialUpdate\\PluginTest
17 $this->node = new FileMock();
18 $this->tree[] = $this->node;
43 $this->node->put('00000000');
56 $this->node->put('00000000');
69 $this->node->put('00000000');
82 $this->node->put('00000000');
95 $this->node->put('00000000');
108 $this->node->put('00000000');
122 $this->node->put('00000');
[all …]
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/
H A DDisableConstructorPatch.php28 * @param ClassNode $node
32 public function supports(ClassNode $node) argument
40 * @param ClassNode $node
42 public function apply(ClassNode $node) argument
44 if (!$node->hasMethod('__construct')) {
45 $node->addMethod(new MethodNode('__construct', ''));
50 $constructor = $node->getMethod('__construct');
H A DReflectionClassNewInstancePatch.php27 * @param ClassNode $node
31 public function supports(ClassNode $node) argument
33 return 'ReflectionClass' === $node->getParentClass();
39 * @param ClassNode $node
41 public function apply(ClassNode $node) argument
43 foreach ($node->getMethod('newInstance')->getArguments() as $argument) {
/plugin/webdav/vendor/sabre/dav/lib/DAV/Sharing/
H A DPlugin.php117 $node = $this->server->tree->getNodeForPath($path);
119 if (!$node instanceof ISharedNode) {
140 $node->updateInvites($sharees);
150 * @param INode $node
153 function propFind(PropFind $propFind, INode $node) { argument
155 if ($node instanceof ISharedNode) {
162 $propFind->handle('{DAV:}invite', function() use ($node) {
164 return new Property\Invite($node->getInvites());
169 return new Property\Href($node->getShareResourceUri());
226 * @param INode $node
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Xml/
H A DFacade.php208 $loc = $node->getLinesOfCode();
214 $node->getNumExecutableLines(),
215 $node->getNumExecutedLines()
219 $node->getNumClasses(),
220 $node->getNumTestedClasses()
224 $node->getNumTraits(),
225 $node->getNumTestedTraits()
229 $node->getNumMethods(),
230 $node->getNumTestedMethods()
234 $node->getNumFunctions(),
[all …]
H A DUnit.php46 $node = $this->contextNode->getElementsByTagNameNS(
60 $node->setAttribute('full', $full);
61 $node->setAttribute('name', $package);
62 $node->setAttribute('sub', $sub);
63 $node->setAttribute('category', $category);
68 $node = $this->contextNode->getElementsByTagNameNS(
82 $node->setAttribute('name', $namespace);
87 $node = $this->contextNode->appendChild(
/plugin/imapmarkers/syntax/
H A Dimapmarkers_simple_html_dom.php123 $node->dump($node);
612 if (!$node->parent) {
619 unset($node);
624 if ($pass && !in_array($node, $node->parent->children, true)) {
700 if ($c === $node)
741 . $node->tag
786 unset($node);
1348 $node->clear();
1402 $node->parent($this);
1403 return $node;
[all …]
/plugin/yuriigantt/3rd/dhtmlxgantt/sources/ext/
H A Ddhtmlxgantt_tooltip.js212 if (node && node.parentNode) {
213 node.parentNode.removeChild(node);
380 node: root, property in TooltipManager.attach._listeners
574 function hasHref(node){ argument
609 …var isValid = (hasNonNegativeTabIndex(node) || isEnabled(node) || hasHref(node)) && isVisible(nod…
630 if(!node) return "";
652 node.className = node.className.replace(regEx, "");
664 function toNode(node) { argument
679 function remove(node) { argument
680 if (node && node.parentNode) {
[all …]
H A Ddhtmlxgantt_keyboard_navigation.js449 var node;
820 var node;
828 node = node.fallback();
839 if (node && !node.isValid()) {
840 node = node.fallback();
854 if(node) return node;
1227 if (node.focus) node.focus();
1814 …var isValid = (hasNonNegativeTabIndex(node) || isEnabled(node) || hasHref(node)) && isVisible(nod…
1857 node.className = node.className.replace(regEx, "");
1885 if (node && node.parentNode) {
[all …]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Tree/
H A DParseTreeVisitor.php22 * Visit the children of a node, and return a user-defined result of the
25 * @param RuleNode $node The {@see RuleNode} whose children should be visited.
27 public function visitChildren(RuleNode $node); argument
30 * Visit a terminal node, and return a user-defined result of the operation.
33 * @param TerminalNode $node The {@see TerminalNode} to visit.
35 public function visitTerminal(TerminalNode $node); argument
38 * Visit an error node, and return a user-defined result of the operation.
41 * @param ErrorNode $node The {@see ErrorNode} to visit.
43 public function visitErrorNode(ErrorNode $node); argument
/plugin/webdav/vendor/sabre/dav/lib/DAV/Sync/
H A DPlugin.php88 $node = $this->server->tree->getNodeForPath($uri);
89 if ($node instanceof ISyncCollection && $node->getSyncToken()) {
110 $node = $this->server->tree->getNodeForPath($uri);
111 if (!$node instanceof ISyncCollection) {
114 $token = $node->getSyncToken();
129 $changeInfo = $node->getChanges($syncToken, $report->syncLevel, $report->limit);
208 function propFind(DAV\PropFind $propFind, DAV\INode $node) { argument
210 $propFind->handle('{DAV:}sync-token', function() use ($node) {
211 if (!$node instanceof ISyncCollection || !$token = $node->getSyncToken()) {
241 $node = $this->server->tree->getNodeForPath($condition['uri']);
[all …]
/plugin/davcal/vendor/sabre/dav/lib/DAV/Sync/
H A DPlugin.php88 $node = $this->server->tree->getNodeForPath($uri);
89 if ($node instanceof ISyncCollection && $node->getSyncToken()) {
110 $node = $this->server->tree->getNodeForPath($uri);
111 if (!$node instanceof ISyncCollection) {
114 $token = $node->getSyncToken();
129 $changeInfo = $node->getChanges($syncToken, $report->syncLevel, $report->limit);
208 function propFind(DAV\PropFind $propFind, DAV\INode $node) { argument
210 $propFind->handle('{DAV:}sync-token', function() use ($node) {
211 if (!$node instanceof ISyncCollection || !$token = $node->getSyncToken()) {
241 $node = $this->server->tree->getNodeForPath($condition['uri']);
[all …]
/plugin/commonmark/vendor/league/commonmark/src/Node/
H A DNodeWalkerEvent.php22 private Node $node; variable in League\\CommonMark\\Node\\NodeWalkerEvent
27 public function __construct(Node $node, bool $isEntering = true)
29 $this->node = $node;
35 return $this->node;
33 __construct(Node $node, $isEntering = true) global() argument

12345678910>>...29