Home
last modified time | relevance | path

Searched refs:nodes (Results 26 – 50 of 222) sorted by relevance

123456789

/plugin/webdav/vendor/sabre/dav/lib/CardDAV/
H A DVCFExportPlugin.php73 $nodes = $this->server->getPropertiesForPath($path, [
84 $output = $this->generateVCF($nodes);
110 * @param array $nodes
113 function generateVCF(array $nodes) { argument
117 foreach ($nodes as $node) {
/plugin/jplayer/vendor/mustache/mustache/src/Mustache/
H A DCompiler.php249 * @param array $nodes Array of child tokens
259 private function blockVar($nodes, $id, $start, $end, $otag, $ctag, $level) argument
263 $else = $this->walk($nodes, $level);
276 * @param array $nodes Array of child tokens
288 $key = $this->block($nodes);
307 * @param array $nodes Array of child tokens
311 private function block($nodes) argument
313 $code = $this->walk($nodes, 0);
360 * @param array $nodes Array of child tokens
409 * @param array $nodes Array of child tokens
[all …]
/plugin/graphgear/
H A Dsyntax.php13 var $nodes; variable in syntax_plugin_graphgear
157 foreach($this->nodes as $name => $opts){
205 if($node) $this->nodes[$node] = $opts;
217 if(!isset($this->nodes[$from])) $this->nodes[$from] = array();
218 if(!isset($this->nodes[$to])) $this->nodes[$to] = array();
/plugin/diagrams/script/
H A Dprosemirror.js3 window.Prosemirror.pluginSchemas.push((nodes, marks) => {
4 nodes = nodes.addToEnd('diagrams', {
47 return {nodes, marks};
H A DDiagramsMenuItemDispatcher.js15 return !!schema.nodes.diagrams;
53 if (!$from.parent.canReplaceWith(index, index, schema.nodes.diagrams)) {
72 schema.nodes.diagrams.create(attributes)
/plugin/freechat/phpfreechat/data/public/js/
H A Dprototype.js3040 if (nodes.length == 0) return nodes;
3105 } else nodes = this[combinator](nodes);
3130 } else nodes = h[combinator](nodes);
3140 if (nodes && combinator) nodes = this[combinator](nodes);
3145 if (!nodes) nodes = Selector.handlers.descendant([root]);
3157 if (!nodes) nodes = root.getElementsByTagName("*");
3158 if (nodes && combinator) nodes = this[combinator](nodes);
3166 if (!nodes) nodes = root.getElementsByTagName("*");
3167 if (nodes && combinator) nodes = this[combinator](nodes);
3178 if (nodes && combinator) nodes = this[combinator](nodes);
[all …]
/plugin/s5reloaded/ui/effects_support/
H A Dprototype.js3583 if (nodes.length == 0) return nodes;
3645 } else nodes = this[combinator](nodes);
3681 } else nodes = h[combinator](nodes);
3691 if (nodes && combinator) nodes = this[combinator](nodes);
3696 if (!nodes) nodes = Selector.handlers.descendant([root]);
3708 if (!nodes) nodes = root.getElementsByTagName("*");
3709 if (nodes && combinator) nodes = this[combinator](nodes);
3717 if (!nodes) nodes = root.getElementsByTagName("*");
3718 if (nodes && combinator) nodes = this[combinator](nodes);
3729 if (nodes && combinator) nodes = this[combinator](nodes);
[all …]
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/Node/
H A DTrans.php21 $nodes = array('body' => $body);
23 $nodes['count'] = $count;
26 $nodes['plural'] = $plural;
29 $nodes['notes'] = $notes;
32 parent::__construct($nodes, array(), $lineno, $tag);
/plugin/googlemaps/
H A Dscript.js37 var nodes = document.body.getElementsByTagName('div');
40 for (var j=0; j<nodes.length; j++) {
41 if (nodes[j].className.match(/\bgooglemap\b/)) {
42 googlemap[i++].node = nodes[j];
/plugin/findologicxmlexport/vendor/jms/serializer/src/
H A DXmlDeserializationVisitor.php189 $nodes = $data->xpath(sprintf('%s:%s', $prefix, $entryName));
191 $nodes = $data->xpath($entryName);
194 if (!\count($nodes)) {
205 foreach ($nodes as $v) {
219 $nodes = $data->children($namespace)->$entryName;
220 foreach ($nodes as $v) {
319 $nodes = $data->xpath('./' . $prefix . ':' . $name);
321 $nodes = $data->xpath('./' . $name);
323 if (empty($nodes)) {
326 $node = reset($nodes);
/plugin/datatables/assets/datatables.net-plugins/features/mark.js/
H A Ddatatables.mark.es6.min.js
/plugin/imapmarkers/syntax/
H A Dimapmarkers_simple_html_dom.php131 public $nodes = array(); variable in imapmarkers\\simple_html_dom_node
139 $dom->nodes[] = $this;
152 $this->nodes = null;
170 if ($this->nodes) {
388 } elseif ($this->nodes) {
571 $nodes = array();
589 $nodes = array_slice($this->dom->nodes, $nodes_start, $nodes_count, true);
591 $nodes = $this->children;
608 foreach ($nodes as $node) {
1410 public $nodes = array(); variable in imapmarkers\\simple_html_dom
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/
H A DTestExpression.php21 $nodes = ['node' => $node];
23 $nodes['arguments'] = $arguments;
26 parent::__construct($nodes, ['name' => $name], $lineno);
H A DBlockReferenceExpression.php36 $nodes = ['name' => $name];
38 $nodes['template'] = $template;
41 parent::__construct($nodes, ['is_defined_test' => false, 'output' => false], $lineno, $tag);
H A DGetAttrExpression.php22 $nodes = ['node' => $node, 'attribute' => $attribute];
24 $nodes['arguments'] = $arguments;
27 …parent::__construct($nodes, ['type' => $type, 'is_defined_test' => false, 'ignore_strict_check' =>…
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/
H A DModuleNode.php42 $nodes = [
54 $nodes['parent'] = $parent;
58 parent::__construct($nodes, [
389 $nodes = $this->getNode('body')->getNode(0);
391 $nodes = $this->getNode('body');
394 if (!\count($nodes)) {
395 $nodes = new Node([$nodes]);
398 foreach ($nodes as $node) {
H A DIfNode.php26 $nodes = ['tests' => $tests];
28 $nodes['else'] = $else;
31 parent::__construct($nodes, [], $lineno, $tag);
H A DWithNode.php25 $nodes = ['body' => $body];
27 $nodes['variables'] = $variables;
30 parent::__construct($nodes, ['only' => (bool) $only], $lineno, $tag);
H A DIncludeNode.php27 $nodes = ['expr' => $expr];
29 $nodes['variables'] = $variables;
32 …parent::__construct($nodes, ['only' => (bool) $only, 'ignore_missing' => (bool) $ignoreMissing], $…
/plugin/gallery/script/
H A Dprosemirror.js6 * @param {OrderedMap} nodes the nodes already in the schema
9 * @returns {{nodes: OrderedMap, marks: OrderedMap}} the updated nodes and marks
11 function addGallerySchema(nodes, marks) { argument
12 nodes = nodes.addToEnd('dwplugin_gallery', {
24 return {nodes: nodes, marks: marks};
377 return Boolean(schema.nodes
[all...]
/plugin/jquery-syntax/jquery-syntax/
H A Djquery.syntax.layout.editor.js22nodes=[],charCount=0,i=0;while(i<offsets.length&&treeWalker.nextNode()){var end=charCount+treeWalk…
24 return nodes;};Syntax.Editor.prototype.getClientState=function(){var state={};var selection=window.…
26nodes=Syntax.Editor.getNodesForCharacterOffsets([state.startOffset],this.container);var range=docu…
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DCluster.php101 foreach ($data['nodes'] as $node) {
109 * Returns all nodes of the cluster.
115 $nodes = [];
118 foreach ($data['nodes'] as $id => $name) {
119 $nodes[] = new Node($id, $this->getClient());
122 return $nodes;
/plugin/webdav/vendor/sabre/dav/lib/DAV/FS/
H A DDirectory.php97 $nodes = [];
105 $nodes[] = $this->getChild($entry->getFilename());
108 return $nodes;
/plugin/davcal/vendor/sabre/dav/lib/DAV/FS/
H A DDirectory.php97 $nodes = [];
105 $nodes[] = $this->getChild($entry->getFilename());
108 return $nodes;
/plugin/geophp/vendor/funiq/geophp/src/Adapter/
H A DOSM.php37 protected $nodes = []; variable in geoPHP\\Adapter\\OSM
75 $nodes = [];
89 $nodes[$id] = [
95 if (empty($nodes)) {
107 if (isset($nodes[$ref])) {
108 $nodes[$ref]['assigned'] = true;
122 'nodes' => $wayNodes,
157 if ($memberType === 'node' && isset($nodes[$ref])) {
158 $nodes[$ref]['assigned'] = true;
159 $relationPoints[] = $nodes[
226 processRoutes(& $relationWays, & $nodes) global() argument
275 processMultipolygon(& $relationWays, & $nodes) global() argument
[all...]

123456789