Home
last modified time | relevance | path

Searched refs:node (Results 151 – 175 of 709) sorted by relevance

12345678910>>...29

/plugin/aimg/
H A Dscript.js585 var container = node;
665 if (node.nodeType != 1) node = node.parentNode;
667 while (node && !((node.className||'').indexOf('fn-container') > -1))
671 if (node && ((node.className||'').indexOf('fn-area') > -1) && !fnActionVerb)
673 var area = node;
699 node = node.parentNode;
710 if (node.nodeType != 1) node = node.parentNode;
711 while (node && !((node.className||'').indexOf('fn-container') > -1))
725 var area = node;
779 node = node.parentNode;
[all …]
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/Node/
H A DTrans.php132 foreach ($body as $node) {
133 … if (get_class($node) === 'Twig_Node' && $node->getNode(0) instanceof Twig_Node_SetTemp) {
134 $node = $node->getNode(1);
137 if ($node instanceof Twig_Node_Print) {
138 $n = $node->getNode('expr');
145 $msg .= $node->getAttribute('data');
/plugin/combo/resources/snippet/js/
H A Donhover.js27 * Add binding when node are added
35 let node = mutation.addedNodes[index];
36 if (node instanceof HTMLElement) {
37 if ("hoverClass" in node.dataset) {
38 node.addEventListener("mouseenter",inOutOnHover);
39 node.addEventListener("mouseleave",inOutOnHover);
/plugin/webdav/vendor/sabre/dav/lib/DAV/
H A DServer.php211 foreach ($treeOrNode as $node) {
1054 * @param INode $node
1130 $etag = $node->put($data);
1297 $node = null;
1324 $etag = $node instanceof IFile ? $node->getETag() : null;
1350 if (!$node) {
1364 $etag = $node instanceof IFile ? $node->getETag() : null;
1401 if (is_null($node)) {
1424 if (is_null($node)) {
1484 $etagValid = $node instanceof IFile && $node->getETag() == $token['etag'];
[all …]
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DServer.php205 foreach ($treeOrNode as $node) {
989 * @param INode $node
1065 $etag = $node->put($data);
1221 $node = null;
1248 $etag = $node instanceof IFile ? $node->getETag() : null;
1274 if (!$node) {
1288 $etag = $node instanceof IFile ? $node->getETag() : null;
1325 if (is_null($node)) {
1348 if (is_null($node)) {
1408 $etagValid = $node instanceof IFile && $node->getETag() == $token['etag'];
[all …]
/plugin/sequencediagram/bower_components/raphael/dev/
H A Draphael.vml.js145 var node = o.node,
198 node.parentNode.insertBefore(div, node);
425 this[0] = this.node = node;
610 this.node.parentNode.removeChild(this.node);
690 if (this.node.parentNode.firstChild != this.node) {
691 this.node.parentNode.insertBefore(this.node, this.node.parentNode.firstChild);
704 element.node.parentNode.insertBefore(this.node, element.node.nextSibling);
706 element.node.parentNode.appendChild(this.node);
718 element.node.parentNode.insertBefore(this.node, element.node);
805 node = res.node,
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/Expression/
H A DAssignNameTest.php19 $node = new AssignNameExpression('foo', 1);
21 $this->assertEquals('foo', $node->getAttribute('name'));
26 $node = new AssignNameExpression('foo', 1);
29 [$node, '$context["foo"]'],
H A DConstantTest.php19 $node = new ConstantExpression('foo', 1);
21 $this->assertEquals('foo', $node->getAttribute('value'));
28 $node = new ConstantExpression('foo', 1);
29 $tests[] = [$node, '"foo"'];
H A DArrayTest.php21 $node = new ArrayExpression($elements, 1);
23 $this->assertEquals($foo, $node->getNode(1));
35 $node = new ArrayExpression($elements, 1);
38 [$node, '["foo" => "bar", "bar" => "foo"]'],
H A DNullCoalesceTest.php25 $node = new NullCoalesceExpression($left, $right, 1);
27 $tests[] = [$node, "((// line 1\n\$context[\"foo\"]) ?? (2))"];
29 …$tests[] = [$node, "(((// line 1\n(isset(\$context[\"foo\"]) || array_key_exists(\"foo\", \$contex…
31 …$tests[] = [$node, "(((// line 1\n(isset(\$context[\"foo\"]) || array_key_exists(\"foo\", \$contex…
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/
H A DClassPatchInterface.php28 * @param ClassNode $node
32 public function supports(ClassNode $node); argument
37 * @param ClassNode $node
40 public function apply(ClassNode $node); argument
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/
H A DPlugin.php77 if ($node instanceof DAV\IExtendedCollection) {
79 $node->getChild($name);
142 $node = $this->server->tree->getNodeForPath($uri);
145 if ($node instanceof ICalendarObjectContainer || $node instanceof ICalendarObject) {
149 if ($node instanceof ICalendar) {
325 if ($node instanceof DAVACL\IPrincipal) {
327 $principalUrl = $node->getPrincipalUrl();
392 if ($node instanceof ICalendarObject) {
398 $val = $node->get();
720 if (!$node instanceof ICalendarObject)
[all …]
H A DICSExportPlugin.php66 $server->on('browserButtonActions', function($path, $node, &$actions) {
67 if ($node instanceof ICalendar) {
88 $node = $this->server->getProperties($path, [
96 …if (!isset($node['{DAV:}resourcetype']) || !$node['{DAV:}resourcetype']->is('{' . Plugin::NS_CALDA…
102 $properties = $node;
215 foreach ($nodes as $node) {
216 if (isset($node[200][$calDataProp])) {
217 $blobs[$node['href']] = $node[200][$calDataProp];
/plugin/findologicxmlexport/vendor/twig/twig/src/TokenParser/
H A DSandboxTokenParser.php42 foreach ($body as $node) {
43 if ($node instanceof TextNode && ctype_space($node->getAttribute('data'))) {
47 if (!$node instanceof IncludeNode) {
48 …ntaxError('Only "include" tags are allowed within a "sandbox" section.', $node->getTemplateLine(),…
/plugin/webdav/vendor/sabre/dav/lib/DAV/PartialUpdate/
H A DPlugin.php84 $node = $tree->getNodeForPath($uri);
85 if ($node instanceof IPatchSupport) {
120 $node = $this->server->tree->getNodeForPath($path);
121 if (!$node instanceof IPatchSupport) {
158 if (!$this->server->emit('beforeWriteContent', [$path, $node, null]))
164 $etag = $node->patch($body, $range[0], isset($range[1]) ? $range[1] : null);
166 $this->server->emit('afterWriteContent', [$path, $node]);
/plugin/davcal/vendor/sabre/dav/lib/DAV/PartialUpdate/
H A DPlugin.php84 $node = $tree->getNodeForPath($uri);
85 if ($node instanceof IPatchSupport) {
120 $node = $this->server->tree->getNodeForPath($path);
121 if (!$node instanceof IPatchSupport) {
158 if (!$this->server->emit('beforeWriteContent', [$path, $node, null]))
164 $etag = $node->patch($body, $range[0], isset($range[1]) ? $range[1] : null);
166 $this->server->emit('afterWriteContent', [$path, $node]);
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/
H A DAbstractServer.php49 foreach(scandir($path) as $node) {
51 if ($node=='.' || $node=='.svn' || $node=='..') continue;
52 $myPath = $path.'/'. $node;
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/
H A DSandboxTest.php21 $node = new SandboxNode($body, 1);
23 $this->assertEquals($body, $node->getNode('body'));
31 $node = new SandboxNode($body, 1);
33 $tests[] = [$node, <<<EOF
H A DDoTest.php21 $node = new DoNode($expr, 1);
23 $this->assertEquals($expr, $node->getNode('expr'));
31 $node = new DoNode($expr, 1);
32 $tests[] = [$node, "// line 1\n\"foo\";"];
H A DSpacelessTest.php22 $node = new SpacelessNode($body, 1);
24 $this->assertEquals($body, $node->getNode('body'));
30 $node = new SpacelessNode($body, 1);
33 [$node, <<<EOF
/plugin/freechat/phpfreechat/data/public/js/
H A Dprototype.js2302 return node ? node.value : "";
2524 return node && node.specified;
3003 for (var i = 0, node; node = b[i]; i++)
3083 while (node = node.nextSibling)
3084 if (node.nodeType == 1) return node;
3089 while (node = node.previousSibling)
3090 if (node.nodeType == 1) return node;
3291 if (!node.disabled) results.push(node);
3297 if (node.disabled) results.push(node);
3303 if (node.checked) results.push(node);
[all …]
/plugin/sortablejs/
H A Dscript.js313 getInnerText: function ( node ) { argument
319 if ( !node ) {
323 node.getElementsByTagName( "input" ).length;
324 if ( node.getAttribute( "sorttable_customkey" ) !== null ) {
325 return node.getAttribute( "sorttable_customkey" );
327 return node.textContent.replace( /^\s+|\s+$/g, '' );
329 return node.innerText.replace( /^\s+|\s+$/g, '' );
330 } else if ( typeof node.text !== "undefined" && !hasInputs ) {
331 return node.text.replace( /^\s+|\s+$/g, '' );
333 switch ( node.nodeType ) {
[all …]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/ConnectionPool/
H A DSniffingConnectionPool.php128 foreach ($nodes as $node) {
130 'host' => $node['host'],
131 'port' => $node['port']
147 foreach ($nodeInfo['nodes'] as $node) {
148 if (isset($node['http']) === true && isset($node['http']['publish_address']) === true) {
149 if (preg_match($pattern, $node['http']['publish_address'], $match) === 1) {
/plugin/authgooglesheets/vendor/google/apiclient-services/src/TrafficDirectorService/
H A DClientConfig.php31 public function setNode(Node $node) argument
33 $this->node = $node;
40 return $this->node;
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Schedule/
H A DPlugin.php148 if ($node instanceof IOutbox) {
179 if (!$node instanceof IOutbox)
197 * @param INode $node
200 function propFind(PropFind $propFind, INode $node) { argument
205 $principalUrl = $node->getPrincipalUrl();
289 $oldObj = Reader::read($node->get());
336 if (!$node instanceof ICalendarObject || $node instanceof ISchedulingObject) {
345 $node->getOwner()
791 if (!$node instanceof ICalendar) {
813 $urls = $node->calendarQuery([
[all …]

12345678910>>...29