| /template/twigstarter/vendor/twig/twig/src/Node/ |
| D | Node.php | 32 protected $nodes; variable in Twig\\Node\\Node 48 public function __construct(array $nodes = [], array $attributes = [], int $lineno = 0) argument 54 foreach ($nodes as $name => $node) { 59 $this->nodes = $nodes; 92 if (\count($this->nodes)) { 94 foreach ($this->nodes as $name => $node) { 110 foreach ($this->nodes as $name => $node) { 111 $this->nodes[$name] = clone $node; 120 foreach ($this->nodes as $node) { 201 return isset($this->nodes[$name]); [all …]
|
| D | ModuleNode.php | 51 $nodes = [ 63 $nodes['parent'] = $parent; 67 parent::__construct($nodes, [ 450 $nodes = $this->getNode('body')->getNode('0'); 452 $nodes = $this->getNode('body'); 455 if (!\count($nodes)) { 456 $nodes = new Nodes([$nodes]); 459 foreach ($nodes as $node) {
|
| D | WithNode.php | 27 $nodes = ['body' => $body]; 29 $nodes['variables'] = $variables; 32 parent::__construct($nodes, ['only' => $only], $lineno);
|
| D | Nodes.php | 24 public function __construct(array $nodes = [], int $lineno = 0) argument 26 parent::__construct($nodes, [], $lineno);
|
| D | IfNode.php | 37 $nodes = ['tests' => $tests]; 39 $nodes['else'] = $else; 42 parent::__construct($nodes, [], $lineno);
|
| D | IncludeNode.php | 29 $nodes = ['expr' => $expr]; 31 $nodes['variables'] = $variables; 34 parent::__construct($nodes, ['only' => $only, 'ignore_missing' => $ignoreMissing], $lineno);
|
| D | ForNode.php | 44 …$nodes = ['key_target' => $keyTarget, 'value_target' => $valueTarget, 'seq' => $seq, 'body' => $bo… 46 $nodes['else'] = $else; 49 parent::__construct($nodes, ['with_loop' => true], $lineno);
|
| /template/monobook/static/3rd/wikipedia/ |
| D | IEFixes.js | 75 function setrelative (nodes) { argument 77 while (i < nodes.length) { 78 if(((nodes[i].style.float && nodes[i].style.float != ('none') || 79 (nodes[i].align && nodes[i].align != ('none'))) && 80 (!nodes[i].style.position || nodes[i].style.position != 'relative'))) 82 nodes[i].style.position = 'relative';
|
| /template/strap/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);
|
| /template/mikio/inc/ |
| H A D | simple_html_dom.php | 134 public $nodes = array(); variable in simple_html_dom_node 143 $dom->nodes[] = $this; 159 $this->nodes = null; 178 if ($this->nodes) { 179 foreach ($this->nodes as $node) { 226 $string .= ' nodes: ' . count($this->nodes); 245 $this->parent->nodes[] = $this; 354 foreach ($this->nodes as $n) { 396 if ($this->dom && $this->dom->nodes[$this->_[HDOM_INFO_BEGIN]]) { 397 $ret = $this->dom->nodes[$this->_[HDOM_INFO_BEGIN]]->makeup(); [all …]
|
| /template/bootstrap3/inc/ |
| D | simple_html_dom.php | 137 public $nodes = array(); variable in simple_html_dom_node 146 $dom->nodes[] = $this; 162 $this->nodes = null; 181 if ($this->nodes) { 182 foreach ($this->nodes as $node) { 229 $string .= ' nodes: ' . count($this->nodes); 248 $this->parent->nodes[] = $this; 357 foreach ($this->nodes as $n) { 399 if ($this->dom && $this->dom->nodes[$this->_[HDOM_INFO_BEGIN]]) { 400 $ret = $this->dom->nodes[$this->_[HDOM_INFO_BEGIN]]->makeup(); [all …]
|
| /template/twigstarter/vendor/twig/twig/src/Node/Expression/ |
| D | BlockReferenceExpression.php | 38 $nodes = ['name' => $name]; 40 $nodes['template'] = $template; 43 parent::__construct($nodes, ['output' => false], $lineno);
|
| D | TestExpression.php | 33 $nodes = ['node' => $node]; 35 $nodes['arguments'] = $arguments; 45 parent::__construct($nodes, ['name' => $name, 'type' => 'test'], $lineno);
|
| D | MacroReferenceExpression.php | 45 $template = $this->nodes['template']; 47 $this->nodes['template'] = $template;
|
| D | ArrayExpression.php | 41 foreach (array_chunk($this->nodes, 2) as $pair) { 95 array_push($this->nodes, $key, $value); 104 foreach (array_chunk($this->nodes, 2) as $i => $pair) {
|
| D | GetAttrExpression.php | 31 $nodes = ['node' => $node, 'attribute' => $attribute]; 33 $nodes['arguments'] = $arguments; 40 …parent::__construct($nodes, ['type' => $type, 'ignore_strict_check' => false, 'optimizable' => !$n…
|
| /template/rtd_suterdev/js/ |
| D | readthedokus.js | 313 var nodes = Array.prototype.slice.call(links, 0); 315 nodes.forEach(function(elem) { 410 var nodes = Array.prototype.slice.call(list, 0); 411 nodes.forEach(function(elem) { 459 var nodes = Array.prototype.slice.call(list, 0); 460 nodes.forEach(function(elem) { 500 var nodes = Array.prototype.slice.call(list, 0); 501 nodes.forEach(function(elem){
|
| /template/readthedokus/js/ |
| H A D | readthedokus.js | 359 var nodes = Array.prototype.slice.call(links, 0); 361 nodes.forEach(function(elem) { 420 var nodes = Array.prototype.slice.call(list, 0); 421 nodes.forEach(function(elem) { 471 var nodes = Array.prototype.slice.call(list, 0); 472 nodes.forEach(function(elem) { 512 var nodes = Array.prototype.slice.call(list, 0); 513 nodes.forEach(function(elem){
|
| /template/twigstarter/vendor/twig/twig/src/ExpressionParser/Prefix/ |
| D | LiteralExpressionParser.php | 121 $nodes = []; 126 $nodes[] = new ConstantExpression($token->getValue(), $token->getLine()); 129 $nodes[] = $parser->parseExpression(); 137 $expr = array_shift($nodes); 138 foreach ($nodes as $node) {
|
| /template/klean/ |
| D | jquery.slicknav.min.js | 6 …nodes=[],n(a).each(function(){return n(this).is("ul")?!1:(nodes.push(this),void(n(this).is("a")&&(…
|
| /template/twigstarter/vendor/twig/twig/src/Node/Expression/Variable/ |
| D | AssignTemplateVariable.php | 27 $var = $this->nodes['var'];
|
| /template/strap/ComboStrap/Xml/ |
| H A D | XmlDocument.php | 405 $nodes = $this->xpath("//*[namespace-uri()='$namespaceUri']"); 406 foreach ($nodes as $node) { 415 $nodes = $this->xpath("//@*[namespace-uri()='$namespaceUri']"); 416 foreach ($nodes as $node) {
|
| H A D | XmlElement.php | 105 $nodes = []; 108 $nodes[] = new XmlElement($child, $this->document); 111 return $nodes;
|
| /template/a_new_day/ |
| D | csshover3.htc | 116 // the classname is needed for the events that are going to be set on affected nodes 144 // called via the expression, patches individual nodes 212 // the CSSHoverElement patches individual nodes by manually applying the events that should 251 // called via the css expression; patches individual nodes
|
| /template/simple/ |
| D | csshover3.htc | 116 // the classname is needed for the events that are going to be set on affected nodes 144 // called via the expression, patches individual nodes 212 // the CSSHoverElement patches individual nodes by manually applying the events that should 251 // called via the css expression; patches individual nodes
|