Home
last modified time | relevance | path

Searched refs:childNode (Results 1 – 25 of 31) sorted by relevance

12

/plugin/diagramsnet/lib/plugins/
Dimport.js53 var childNode = node.childNodes[i];
55 if (childNode.nodeName == 'node')
57 var maxChilds = generatePreprocessingNodeInfo(childNode);
107 var childNode = node.childNodes[i];
109 if (childNode.nodeName == 'node')
113 childNumber += childNode.maxChilds == 0 ? 1 : childNode.maxChilds;
114 processFreeMindNode(childNode, nodeVertex, childX, childY);
/plugin/geophp/vendor/funiq/geophp/src/Adapter/
DGPX.php271 foreach ($node->childNodes as $childNode) {
273 if ($childNode->hasChildNodes()) {
274 if ($tagList === null || in_array($childNode->nodeName, $tagList ?: [])) {
276 $result[$childNode->nodeName][] = self::parseNodeProperties($childNode);
278 $result[$childNode->nodeName] = self::parseNodeProperties($childNode);
281 … } elseif ($childNode->nodeType === 1 && in_array($childNode->nodeName, $tagList ?: [])) {
282 $result[$childNode->nodeName] = self::parseNodeProperties($childNode);
283 } elseif ($childNode->nodeType === 3) {
284 $result = $childNode->nodeValue;
/plugin/combo/ComboStrap/Xml/
H A DXmlElement.php74 foreach ($this->domElement->childNodes as $childNode) {
75 if ($childNode instanceof DOMElement) {
76 $childNodes[] = new XmlElement($childNode, $this->document);
88 foreach ($this->domElement->childNodes as $childNode) {
89 if ($childNode instanceof DOMText) {
90 $childNodes[] = $childNode->nodeValue;
92 …$childNodes[] = implode('', XmlElement::create($childNode, $this->document)->getChildrenNodeTextVa…
H A DXmlDocument.php540 $childNode = &$this->getDomDocument()->documentElement->childNodes[$i];
541 if ($childNode->nodeName == $nodeName) {
542 $result = $this->getDomDocument()->documentElement->removeChild($childNode);
/plugin/webdav/vendor/sabre/dav/lib/DAV/
DTree.php272 foreach ($parentNode->getMultipleChildren($children) as $childNode) {
273 $fullPath = $parent . '/' . $childNode->getName();
274 $result[$fullPath] = $childNode;
275 $this->cache[$fullPath] = $childNode;
DServer.php899 foreach ($this->tree->getChildren($path) as $childNode) {
901 $subPath = $path . '/' . $childNode->getName();
903 $subPath = $childNode->getName();
909 $childNode
912 … if (($newDepth === self::DEPTH_INFINITY || $newDepth >= 1) && $childNode instanceof ICollection) {
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DTree.php270 foreach ($parentNode->getMultipleChildren($children) as $childNode) {
271 $fullPath = $parent . '/' . $childNode->getName();
272 $result[$fullPath] = $childNode;
273 $this->cache[$fullPath] = $childNode;
H A DServer.php852 foreach ($this->tree->getChildren($path) as $childNode) {
856 $subPath = $path . '/' . $childNode->getName();
858 $subPath = $childNode->getName();
864 $childNode
867 … if (($newDepth === self::DEPTH_INFINITY || $newDepth >= 1) && $childNode instanceof ICollection) {
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/
DArborize.php57 foreach ($node->children as $childNode) {
58 $nodes[$level]->push($childNode);
/plugin/fixredirectlinks/
Daction.php73 foreach ($body->childNodes as $childNode) {
74 $event->data[1] .= $domDoc->saveHTML($childNode);
/plugin/adfs/phpsaml/lib/Saml2/
DResponse.php800 foreach ($entry->childNodes as $childNode) {
801 $tagName = ($childNode->prefix ? $childNode->prefix.':' : '') . 'AttributeValue';
802 if ($childNode->nodeType == XML_ELEMENT_NODE && $childNode->tagName === $tagName) {
803 $attributeValues[] = $childNode->nodeValue;
/plugin/saml/phpsaml/lib/Saml2/
DResponse.php800 foreach ($entry->childNodes as $childNode) {
801 $tagName = ($childNode->prefix ? $childNode->prefix.':' : '') . 'AttributeValue';
802 if ($childNode->nodeType == XML_ELEMENT_NODE && $childNode->tagName === $tagName) {
803 $attributeValues[] = $childNode->nodeValue;
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Lexer/
DDOMLex.php125 foreach ($node->childNodes as $childNode) {
126 $nodes[$level]->push($childNode);
/plugin/amcharts/assets/amcharts/plugins/export/
Dexport.js889 var childNode = group.children[ i1 ];
892 if ( childNode.tagName == "clipPath" ) {
894 … var transform = fabric.parseTransformAttribute( _this.gatherAttribute( childNode, "transform" ) );
897 for ( i2 = 0; i2 < childNode.childNodes.length; i2++ ) {
898 childNode.childNodes[ i2 ].setAttribute( "fill", "transparent" );
900 x: _this.pxToNumber( childNode.childNodes[ i2 ].getAttribute( "x" ) ),
901 y: _this.pxToNumber( childNode.childNodes[ i2 ].getAttribute( "y" ) ),
902 width: _this.pxToNumber( childNode.childNodes[ i2 ].getAttribute( "width" ) ),
903 height: _this.pxToNumber( childNode.childNodes[ i2 ].getAttribute( "height" ) )
907 group.clippings[ childNode.id ] = {
[all …]
/plugin/indexmenu/scripts/fancytree/modules/
Djquery.fancytree.js1949 removeChild: function (childNode) { argument
1950 return this.tree._callHook("nodeRemoveChild", this, childNode);
2455 triggerModifyChild: function (operation, childNode, extra) { argument
2460 if (childNode && childNode.parent !== this) {
2462 "childNode " + childNode + " is not a child of " + this
2469 childNode: childNode || null, property
4646 nodeRemoveChild: function (ctx, childNode) { argument
4650 subCtx = $.extend({}, ctx, { node: childNode }),
4656 _assert(childNode === children[0], "invalid single child");
4661 (childNode === this.activeNode ||
[all …]
/plugin/emoji/script/
Djquery.textcomplete.js1252 var childNode;
1254 while (childNode = preWrapper.firstChild) {
1255 lastOfPre = fragment.appendChild(childNode);
1257 while (childNode = postWrapper.firstChild) {
1258 fragment.appendChild(childNode);
/plugin/scrape/vendor/scotteh/php-dom-wrapper/src/Traits/
DManipulationTrait.php664 $parent->contents()->each(function($childNode) use($parent) {
665 $oldChildNode = $childNode->detach()->first();
/plugin/indexmenu/scripts/fancytree/
Djquery.fancytree-all.js1949 removeChild: function (childNode) { argument
1950 return this.tree._callHook("nodeRemoveChild", this, childNode);
2455 triggerModifyChild: function (operation, childNode, extra) { argument
2460 if (childNode && childNode.parent !== this) {
2462 "childNode " + childNode + " is not a child of " + this
2469 childNode: childNode || null, property
4646 nodeRemoveChild: function (ctx, childNode) { argument
4650 subCtx = $.extend({}, ctx, { node: childNode }),
4656 _assert(childNode === children[0], "invalid single child");
4661 (childNode === this.activeNode ||
[all …]
Djquery.fancytree-all-deps.js3410 removeChild: function (childNode) { argument
3411 return this.tree._callHook("nodeRemoveChild", this, childNode);
3916 triggerModifyChild: function (operation, childNode, extra) { argument
3921 if (childNode && childNode.parent !== this) {
3923 "childNode " + childNode + " is not a child of " + this
3930 childNode: childNode || null, property
6107 nodeRemoveChild: function (ctx, childNode) { argument
6111 subCtx = $.extend({}, ctx, { node: childNode }),
6117 _assert(childNode === children[0], "invalid single child");
6122 (childNode === this.activeNode ||
[all …]
Djquery.fancytree.min.js1 …"+t+" is not a child of "+this),t={node:this,tree:this.tree,operation:e,childNode:t||null},n&&k.ex… property
/plugin/diagramsnet/lib/js/diagramly/vsdx/
Dimporter.js3230 var childNode = doc.firstChild;
3231 while ((childNode != null)) {
3232 …if ((childNode != null && (childNode.nodeType == 1)) && (function (o1, o2) { if (o1 && o1.equals) {
3237 … } })(childNode.tagName.toLowerCase(), com.mxgraph.io.mxVsdxCodec.vsdxPlaceholder + "document")) {
3238 this.rootElement = childNode;
3241 childNode = childNode.nextSibling;
3750 var childNode = children.item(0);
3751 while ((childNode != null)) {
3752 if (childNode != null && (childNode.nodeType == 1)) {
3753 var childElem = childNode;
[all …]
/plugin/bpmnioeditor/vendor/bpmnio-js/
Dbpmn-modeler.development.js30716 childNodesArray.forEach(function(childNode, index) { argument
30719 childNode.textContent =
30724 remove$2(childNode);
57267 var childNode = domify(template);
57268 childNode.innerHTML = text;
57269 parentNode.appendChild(childNode);
/plugin/davcal/fullcalendar-3.10.5/
H A Dfullcalendar.js7630 function iterInnerHeights(i, childNode) {
7631 trHeight = Math.max(trHeight, $(childNode).outerHeight());
/plugin/jdraw/lib/
Dapache-mime4j-0.6.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/jcapture/lib/
Dapache-mime4j-0.6.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...

12