| /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/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/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/virtualkeyboard/vk/ |
| D | virtualkeyboard.js | 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'); 321 nodes.lytbox.removeAllOptions(); [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/projects/lib/ |
| D | maker.php | 95 private $nodes = NULL; variable in Maker 125 $this->nodes = array(); 144 $this->nodes[$name] = new MakeNode($name, $file->is_target()); 148 while ((list($name, $node) = each($this->nodes)) != false) { 151 if (!isset($this->nodes[$dep])) { 164 $this->nodes[$dep] = $dep_node; 166 else $dep_node = $this->nodes[$dep]; 170 foreach ($this->nodes as $node) $node->find_affected($this->errors); 173 array_keys($this->nodes)); 175 $this->nodes[$name]->mark_invalid($this->errors); [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; 74 $this->nodes = array(); 85 if(isset($this->nodes[$id])) { 86 unset($this->nodes[$id]);
|
| /plugin/findologicxmlexport/vendor/twig/twig/src/Node/ |
| D | Node.php | 24 protected $nodes; variable in Twig\\Node\\Node 37 * @param array $nodes An array of named 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) { 120 foreach ($this->nodes as $node) { 184 return \array_key_exists($name, $this->nodes); [all …]
|
| /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/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/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/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);
|
| /plugin/scrape/vendor/scotteh/php-dom-wrapper/src/Traits/ |
| D | ManipulationTrait.php | 54 $nodes = [$input]; 56 $nodes = $this->nodesFromHtml($input); 58 $nodes = $input; 63 return $nodes; 73 $nodes = $this->inputPrepareAsTraversable($input); 77 foreach ($nodes as $node) { 98 $nodes = $this->inputAsNodeList($input); 100 return $nodes->findXPath('self::*')->first(); 112 $nodes = $doc->html($html)->find('body')->contents(); 114 return $nodes; [all …]
|
| /plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Node/ |
| D | Iterator.php | 26 private $nodes; variable in SebastianBergmann\\CodeCoverage\\Node\\Iterator 33 $this->nodes = $node->getChildNodes(); 51 return $this->position < count($this->nodes); 71 return $this->valid() ? $this->nodes[$this->position] : null; 90 $this->nodes[$this->position] 101 return $this->nodes[$this->position] instanceof Directory;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudMachineLearningEngine/ |
| D | GoogleCloudMlV1ManualScaling.php | 25 public $nodes; variable in Google\\Service\\CloudMachineLearningEngine\\GoogleCloudMlV1ManualScaling 30 public function setNodes($nodes) argument 32 $this->nodes = $nodes; 39 return $this->nodes;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/ |
| D | NodeGroupsDeleteNodesRequest.php | 26 public $nodes; variable in Google\\Service\\Compute\\NodeGroupsDeleteNodesRequest 31 public function setNodes($nodes) argument 33 $this->nodes = $nodes; 40 return $this->nodes;
|
| /plugin/asciidocjs/node_modules/acorn-globals/ |
| D | README.md | 63 [ { name: 'BLARG', nodes: [ [Object] ] }, 64 { name: 'RAWR', nodes: [ [Object], [Object] ] }, 65 { name: 'ZZZ', nodes: [ [Object], [Object] ] }, 66 { name: 'console', nodes: [ [Object], [Object] ] }, 67 { name: 'foo', nodes: [ [Object] ] }, 68 { name: 'process', nodes: [ [Object] ] }, 69 { name: 'w', nodes: [ [Object], [Object] ] }, 70 { name: 'xyz', nodes: [ [Object] ] } ]
|
| /plugin/indexmenu/syntax/ |
| D | indexmenu.php | 505 $nodes = $search->search($ns, $opts); 507 if (!$nodes) return false; 516 $output_js .= $this->builddTree($nodes, $ns, $js_dTreeOpts, $js_name, $opts['max']); 523 $this->cleanNojsData($nodes); 526 $output .= $this->buildNoJSTree($nodes, $js_name, $js_dTreeOpts['jsAjax']); 531 private function buildNoJSTree($nodes, $js_name, $jsAjax) argument 539 . html_buildlist($nodes, 'idx', [$this, 'formatIndexmenuItem'], [$idx, 'tagListItem']) 572 * @param array $nodes array with items of the tree 584 private function builddTree($nodes, $ns, $js_dTreeOpts, $js_name, $max) argument 588 if (empty($nodes)) { [all …]
|
| /plugin/html2pdf/html2pdf/html2ps/ |
| D | dom.activelink.inc.php | 84 $children = $this->xml->nodes; 101 $nodes =& $parent->xml->nodes; 108 …$sibling = &new ActiveLinkDOMTree($nodes[$this->index-1],$this->index-1, $this->parent_indices, $t… 114 $nodes =& $parent->xml->nodes; 116 if ($this->index >= count($nodes)-1) { 121 …$node =& new ActiveLinkDOMTree($nodes[$this->index+1], $this->index+1, $this->parent_indices, $thi…
|
| /plugin/combo/vendor/antlr/antlr4-php-runtime/src/Tree/ |
| H A D | Trees.php | 150 …tatic function findNodesInTree(ParseTree $tree, int $index, bool $findTokens, array $nodes) : array argument 154 $nodes[] = $tree; 156 $nodes[] = $tree; 164 $nodes = self::findNodesInTree($child, $index, $findTokens, $nodes); 168 return $nodes; 176 $nodes = [$tree]; 181 $nodes[] = self::descendants($child); 185 return \array_merge(...$nodes);
|
| /plugin/asciidocjs/node_modules/pug-parser/ |
| D | index.js | 110 block.nodes = block.nodes.concat(this.parseTextHtml()); 115 block.nodes = block.nodes.concat(expr.nodes); 117 block.nodes.push(expr); 154 initBlock: function(line, nodes) { argument 158 if (!Array.isArray(nodes)) throw new Error('`nodes` is not an array'); 161 nodes: nodes, 338 var nodes = []; 354 nodes.push(currentNode); 361 block.nodes.forEach(function (node) { 365 nodes.push(currentNode); [all …]
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Dataproc/ |
| D | WorkflowGraph.php | 29 public function setNodes($nodes) argument 31 $this->nodes = $nodes; 38 return $this->nodes;
|