| /plugin/asciidocjs/node_modules/nunjucks/src/ |
| D | transformer.js | 3 var nodes = require('./nodes'); variable 25 if (!(ast instanceof nodes.Node)) { 34 if (ast instanceof nodes.NodeList) { 39 ast = new nodes[ast.typename](ast.lineno, ast.colno, children); 41 } else if (ast instanceof nodes.CallExtension) { 47 ast = new nodes[ast.typename](ast.extName, ast.prop, args, contentArgs); 57 ast = new nodes[ast.typename](ast.lineno, ast.colno); 72 if (descNode instanceof nodes.Block) { 74 …se if (descNode instanceof nodes.Filter && lib.indexOf(asyncFilters, descNode.name.value) !== -1 |… 75 symbol = new nodes.Symbol(descNode.lineno, descNode.colno, gensym()); [all …]
|
| D | parser.js | 6 var nodes = require('./nodes'); variable 130 node = new nodes.For(forTok.lineno, forTok.colno); 133 node = new nodes.AsyncEach(forTok.lineno, forTok.colno); 136 node = new nodes.AsyncAll(forTok.lineno, forTok.colno); 142 if (!(node.name instanceof nodes.Symbol)) { 149 node.name = new nodes.Array(key.lineno, key.colno); 176 var node = new nodes.Macro(macroTok.lineno, macroTok.colno, name, args); 189 var callerArgs = this.parseSignature(true) || new nodes.NodeList(); 194 var callerName = new nodes.Symbol(callTok.lineno, callTok.colno, 'caller'); 195 var callerNode = new nodes.Caller(callTok.lineno, callTok.colno, callerName, callerArgs, body); [all …]
|
| /plugin/projects/lib/ |
| D | maker.php | 9 // points the nodes that depend on this node 11 // all nodes that will be affected if this node is updated 95 private $nodes = NULL; variable in Maker 125 $this->nodes = array(); 144 $this->nodes[$name] = new MakeNode($name, $file->is_target()); 146 // link nodes reversly with dependency, i.e, if one node changed, 147 // which other nodes need to be upated 148 while ((list($name, $node) = each($this->nodes)) != false) { 151 if (!isset($this->nodes[$dep])) { 164 $this->nodes[$dep] = $dep_node; [all …]
|
| /plugin/mathpublish/phpmathpublisher/ |
| D | MathExpression.php | 28 public $nodes; variable in RL\\PhpMathPublisher\\MathExpression 40 $this->nodes = $exp; 41 $this->nodes = $this->parse(); 49 if (count($this->nodes) <= 3) { 50 return $this->nodes; 54 for ($i = 0; $i < count($this->nodes); $i++) { 55 if ($this->nodes[$i]->text == '(' || $this->nodes[$i]->text == '{') { 57 } elseif ($this->nodes[$i]->text == ')' || $this->nodes[$i]->text == '}') { 60 $sub = array_slice($this->nodes, $pos + 1, $i - $pos - 1); 61 if ($this->nodes[$i]->text == ')') { [all …]
|
| /plugin/scrape/vendor/scotteh/php-dom-wrapper/src/ |
| D | NodeList.php | 31 * @param iterable $nodes 33 public function __construct(Document $document = null, iterable $nodes = null) { argument 34 parent::__construct($nodes); 84 array_reverse($this->nodes); 93 return !empty($this->nodes) ? $this->rewind() : null; 107 return !empty($this->nodes) ? end($this->nodes) : null; 116 if (isset($this->nodes[$key])) { 117 return $this->nodes[$key]; 130 $this->nodes[$key] = $value; 141 foreach ($this->nodes as $index => $node) { [all …]
|
| /plugin/asciidocjs/node_modules/pug-linker/ |
| D | index.js | 14 if (ast.nodes.length) { 15 var hasExtends = ast.nodes[0].type === 'Extends'; 18 extendsNode = ast.nodes.shift(); 26 ast.nodes.forEach(function addNode(node) { 30 node.nodes.forEach(addNode); 57 parent.nodes = mixins.concat(parent.nodes); 100 parentBlock.nodes = parentBlock.nodes.concat(node.nodes); 103 parentBlock.nodes = node.nodes.concat(parentBlock.nodes); 106 parentBlock.nodes = node.nodes; 139 nodes: node.nodes property [all …]
|
| /plugin/scrape/vendor/scotteh/php-dom-wrapper/src/Collections/ |
| D | NodeCollection.php | 14 protected $nodes = []; variable in DOMWrap\\Collections\\NodeCollection 17 * @param iterable $nodes 19 public function __construct(iterable $nodes = null) { argument 20 if (!is_iterable($nodes)) { 21 $nodes = []; 24 foreach ($nodes as $node) { 25 $this->nodes[] = $node; 35 return count($this->nodes); 46 return isset($this->nodes[$offset]); 58 return isset($this->nodes[$offset]) ? $this->nodes[$offset] : null; [all …]
|
| /plugin/scrape/vendor/scotteh/php-dom-wrapper/ |
| D | README.md | 107 $nodes = $doc->find('li'); 110 var_dump($nodes->count()); 113 $nodes->appendWith('<b>!</b>'); 152 Insert the argument as a sibling directly after each of the nodes operated on. 255 Insert the argument as a sibling just before each of the nodes operated on. 558 Wrap the current node or nodes in the given structure. 565 If called on a `NodeList`, each of nodes in the list will be separately 566 wrapped. When such a list contains multiple nodes, the argument to 601 Like [wrap()](#wrap), but when operating on multiple nodes, all of them 606 if the other nodes operated on are not siblings of the first, they will [all …]
|
| /plugin/virtualkeyboard/vk/ |
| D | virtualkeyboard.js | 168 * Shortcuts to the nodes 173 var nodes = { variable 205 if (1==nodes.lytbox.getOptionsCount() && 1==nodes.langbox.getOptionsCount()) return false; 207 if (nodes.lytbox.getValue() == code) { 209 nodes.lytbox.removeSelectedOptions(code,'exact'); 211 if (!nodes.lytbox.getOptionsCount()) { 213 nodes.langbox.removeSelectedOptions(i,'exact'); 255 nodes.langbox.addOption(code, code, false, false, true); 312 if (null == code) code = nodes.langbox.getValue(); 317 if (nodes.langbox.getValue() != code) nodes.langbox.selectOnlyMatchingOptions(code,'exact'); [all …]
|
| /plugin/fckg/fckeditor/editor/plugins/range/ |
| D | fckplugin.js | 8 this.nodes = oRange.getElementsFromSelection(); 16 var nodes = this.nodes; 17 if(nodes) { 18 for(var ii=0; ii<nodes.length; ii++) { 19 var text = FCK.paraDelObject.getData(nodes[ii]); 20 if(nodes[ii].nodeName.match(/body/i)) continue; 21 if(nodes[ii].nodeName.toUpperCase() == 'BR') { 22 this.setBreakToPara(nodes[ii]); 24 buf[buf.length]=nodes[ii].nodeName+"<"+text+">"; 78 this.nodes = oRange.getElementsFromSelection(); [all …]
|
| /plugin/findologicxmlexport/vendor/twig/twig/src/Node/ |
| D | Node.php | 24 protected $nodes; variable in Twig\\Node\\Node 34 * The nodes are automatically made available as properties ($this->node). 37 * @param array $nodes An array of named nodes 38 * @param array $attributes An array of attributes (should not be nodes) 42 public function __construct(array $nodes = [], array $attributes = [], $lineno = 0, $tag = null) argument 44 foreach ($nodes as $name => $node) { 49 $this->nodes = $nodes; 64 if (\count($this->nodes)) { 65 foreach ($this->nodes as $name => $node) { 103 foreach ($this->nodes as $name => $n) { [all …]
|
| /plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/xml/ |
| D | XML.php | 88 $newBranch->nodes = $xml->nodes; 143 $arrKeys = array_keys($this->nodes); 145 …if(gettype($this->nodes[$arrKeys[$index]]) == "object" && strtolower(get_class($this->nodes[$arrKe… 146 if(($tagName == "" || $this->nodes[$arrKeys[$index]]->tag->getTagName() == $tagName) && 147 ($attrName == "" || $this->nodes[$arrKeys[$index]]->tag->attributeExists($attrName)) && 148 …($attrValue == "" || $this->nodes[$arrKeys[$index]]->tag->getTagAttribute($attrName) == $attrValue… 149 $branchArray[] = &$this->nodes[$arrKeys[$index]]; 155 $arrKeys = array_keys($this->nodes); 157 …if(gettype($this->nodes[$arrKeys[$index]]) == "object" && strtolower(get_class($this->nodes[$arrKe… 158 if($this->nodes[$arrKeys[$index]]->tag->getTagName() == $tags[1]) { [all …]
|
| D | Tree.php | 37 var $nodes; variable in Tree 46 $this->nodes = array(); 59 $this->nodes[] = $node; 61 if(isset($this->nodes[$id])) 64 $this->nodes[$id] = $node; 69 * Removes all nodes 74 $this->nodes = array(); 85 if(isset($this->nodes[$id])) { 86 unset($this->nodes[$id]);
|
| /plugin/jplayer/vendor/mustache/mustache/src/Mustache/ |
| D | Parser.php | 75 $nodes = array(); 98 $this->clearStandaloneLines($nodes, $tokens); 104 $this->clearStandaloneLines($nodes, $tokens); 105 $nodes[] = $this->buildTree($tokens, $token); 129 $this->clearStandaloneLines($nodes, $tokens); 131 $parent[Mustache_Tokenizer::NODES] = $nodes; 138 if ($indent = $this->clearStandaloneLines($nodes, $tokens)) { 141 $nodes[] = $token; 146 $nodes[] = $this->buildTree($tokens, $token); 155 $this->clearStandaloneLines($nodes, $tokens); [all …]
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Sasportal/Resource/ |
| D | NodesNodes.php | 27 * The "nodes" collection of methods. 31 * $nodes = $sasportalService->nodes; 37 * Creates a new node. (nodes.create) 52 * Deletes a node. (nodes.delete) 65 * Returns a requested node. (nodes.get) 78 * Lists nodes. (nodes.listNodesNodes) 81 * "nodes/1". 86 * is case insensitive. If empty, then no nodes are filtered. 87 * @opt_param int pageSize The maximum number of nodes to return in the 100 * Moves a node under another node or customer. (nodes.move) [all …]
|
| D | CustomersNodes.php | 27 * The "nodes" collection of methods. 31 * $nodes = $sasportalService->nodes; 37 * Creates a new node. (nodes.create) 52 * Deletes a node. (nodes.delete) 65 * Returns a requested node. (nodes.get) 78 * Lists nodes. (nodes.listCustomersNodes) 81 * "nodes/1". 86 * is case insensitive. If empty, then no nodes are filtered. 87 * @opt_param int pageSize The maximum number of nodes to return in the 100 * Moves a node under another node or customer. (nodes.move) [all …]
|
| D | CustomersNodesNodes.php | 24 * The "nodes" collection of methods. 28 * $nodes = $sasportalService->nodes; 34 * Creates a new node. (nodes.create) 49 * Lists nodes. (nodes.listCustomersNodesNodes) 52 * "nodes/1". 57 * is case insensitive. If empty, then no nodes are filtered. 58 * @opt_param int pageSize The maximum number of nodes to return in the
|
| D | NodesNodesNodes.php | 24 * The "nodes" collection of methods. 28 * $nodes = $sasportalService->nodes; 34 * Creates a new node. (nodes.create) 49 * Lists nodes. (nodes.listNodesNodesNodes) 52 * "nodes/1". 57 * is case insensitive. If empty, then no nodes are filtered. 58 * @opt_param int pageSize The maximum number of nodes to return in the
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/SASPortalTesting/Resource/ |
| D | CustomersNodes.php | 27 * The "nodes" collection of methods. 31 * $nodes = $prod_tt_sasportalService->nodes; 37 * Creates a new node. (nodes.create) 52 * Deletes a node. (nodes.delete) 65 * Returns a requested node. (nodes.get) 78 * Lists nodes. (nodes.listCustomersNodes) 81 * "nodes/1". 86 * is case insensitive. If empty, then no nodes are filtered. 87 * @opt_param int pageSize The maximum number of nodes to return in the 100 * Moves a node under another node or customer. (nodes.move) [all …]
|
| D | NodesNodes.php | 27 * The "nodes" collection of methods. 31 * $nodes = $prod_tt_sasportalService->nodes; 37 * Creates a new node. (nodes.create) 52 * Deletes a node. (nodes.delete) 65 * Returns a requested node. (nodes.get) 78 * Lists nodes. (nodes.listNodesNodes) 81 * "nodes/1". 86 * is case insensitive. If empty, then no nodes are filtered. 87 * @opt_param int pageSize The maximum number of nodes to return in the 100 * Moves a node under another node or customer. (nodes.move) [all …]
|
| D | CustomersNodesNodes.php | 24 * The "nodes" collection of methods. 28 * $nodes = $prod_tt_sasportalService->nodes; 34 * Creates a new node. (nodes.create) 49 * Lists nodes. (nodes.listCustomersNodesNodes) 52 * "nodes/1". 57 * is case insensitive. If empty, then no nodes are filtered. 58 * @opt_param int pageSize The maximum number of nodes to return in the
|
| D | NodesNodesNodes.php | 24 * The "nodes" collection of methods. 28 * $nodes = $prod_tt_sasportalService->nodes; 34 * Creates a new node. (nodes.create) 49 * Lists nodes. (nodes.listNodesNodesNodes) 52 * "nodes/1". 57 * is case insensitive. If empty, then no nodes are filtered. 58 * @opt_param int pageSize The maximum number of nodes to return in the
|
| /plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/ |
| D | NodesNamespace.php | 49 $endpoint = $endpointBuilder('Nodes\ClearRepositoriesMeteringArchive'); 73 $endpoint = $endpointBuilder('Nodes\GetRepositoriesMeteringInfo'); 82 …eturn information from the node you're connecting to, leave empty to get information from all nodes 92 …* @see https://www.elastic.co/guide/en/elasticsearch/reference/master/cluster-nodes-hot-threads.ht… 99 $endpoint = $endpointBuilder('Nodes\HotThreads'); 106 * Returns information about nodes in the cluster. 108 …eturn information from the node you're connecting to, leave empty to get information from all nodes 115 * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/cluster-nodes-info.html 123 $endpoint = $endpointBuilder('Nodes\Info'); 133 …pan the reload/reinit call. Should stay empty because reloading usually involves all cluster nodes. [all …]
|
| /plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/ |
| D | autoload.php | 26 …'\Elasticsearch\Endpoints\Nodes\HotThreads' => '\Elasticsearch\Endpoints\Cluster\Nodes\HotThreads', 27 '\Elasticsearch\Endpoints\Nodes\Info' => '\Elasticsearch\Endpoints\Cluster\Nodes\Info', 28 …'\Elasticsearch\Endpoints\Nodes\ReloadSecureSettings' => '\Elasticsearch\Endpoints\Cluster\Nodes\R… 29 '\Elasticsearch\Endpoints\Nodes\Stats' => '\Elasticsearch\Endpoints\Cluster\Nodes\Stats', 30 '\Elasticsearch\Endpoints\Nodes\Usage' => '\Elasticsearch\Endpoints\Cluster\Nodes\Usage',
|
| /plugin/findologicxmlexport/vendor/twig/extensions/test/Twig/Tests/ |
| D | SimpleTokenParser.php | 35 $nodes = array(); 36 $nodes[] = new Twig_Node_Print(new Twig_Node_Expression_Constant('|', $line), $line); 40 … $nodes[] = new Twig_Node_Print(new Twig_Node_Expression_Function('dump', $value, $line), $line); 42 $nodes[] = new Twig_Node_Print($value, $line); 45 … $nodes[] = new Twig_Node_Print(new Twig_Node_Expression_Constant($value, $line), $line); 47 $nodes[] = new Twig_Node_Print(new Twig_Node_Expression_Constant('|', $line), $line); 50 return new Twig_Node($nodes);
|