Home
last modified time | relevance | path

Searched refs:nodes (Results 1 – 25 of 35) sorted by relevance

12

/template/twigstarter/vendor/twig/twig/src/Node/
DNode.php25 protected $nodes; variable in Twig\\Node\\Node
34 * @param array $nodes An array of named nodes
39 …public function __construct(array $nodes = [], array $attributes = [], int $lineno = 0, string $ta… argument
41 foreach ($nodes as $name => $node) {
46 $this->nodes = $nodes;
61 if (\count($this->nodes)) {
62 foreach ($this->nodes as $name => $node) {
82 foreach ($this->nodes as $node) {
136 return isset($this->nodes[$name]);
144 if (!isset($this->nodes[$name])) {
[all …]
DModuleNode.php39 $nodes = [
51 $nodes['parent'] = $parent;
55 parent::__construct($nodes, [
386 $nodes = $this->getNode('body')->getNode(0);
388 $nodes = $this->getNode('body');
391 if (!\count($nodes)) {
392 $nodes = new Node([$nodes]);
395 foreach ($nodes as $node) {
DIfNode.php26 $nodes = ['tests' => $tests];
28 $nodes['else'] = $else;
31 parent::__construct($nodes, [], $lineno, $tag);
DWithNode.php25 $nodes = ['body' => $body];
27 $nodes['variables'] = $variables;
30 parent::__construct($nodes, ['only' => $only], $lineno, $tag);
DIncludeNode.php27 $nodes = ['expr' => $expr];
29 $nodes['variables'] = $variables;
32 …parent::__construct($nodes, ['only' => (bool) $only, 'ignore_missing' => (bool) $ignoreMissing], $…
DForNode.php36 …$nodes = ['key_target' => $keyTarget, 'value_target' => $valueTarget, 'seq' => $seq, 'body' => $bo…
38 $nodes['else'] = $else;
41 … parent::__construct($nodes, ['with_loop' => true, 'ifexpr' => null !== $ifexpr], $lineno, $tag);
/template/monobook/static/3rd/wikipedia/
DIEFixes.js75 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 DTrees.php150 …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 Dsimple_html_dom.php134 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/twigstarter/vendor/twig/twig/src/Node/Expression/
DTestExpression.php21 $nodes = ['node' => $node];
23 $nodes['arguments'] = $arguments;
26 parent::__construct($nodes, ['name' => $name], $lineno);
DBlockReferenceExpression.php27 $nodes = ['name' => $name];
29 $nodes['template'] = $template;
32 parent::__construct($nodes, ['is_defined_test' => false, 'output' => false], $lineno, $tag);
DGetAttrExpression.php23 $nodes = ['node' => $node, 'attribute' => $attribute];
25 $nodes['arguments'] = $arguments;
28 …parent::__construct($nodes, ['type' => $type, 'is_defined_test' => false, 'ignore_strict_check' =>…
DArrayExpression.php36 foreach (array_chunk($this->nodes, 2) as $pair) {
65 array_push($this->nodes, $key, $value);
/template/bootstrap3/inc/
Dsimple_html_dom.php137 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/rtd_suterdev/js/
Dreadthedokus.js313 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 Dreadthedokus.js359 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/klean/
Djquery.slicknav.min.js6nodes=[],n(a).each(function(){return n(this).is("ul")?!1:(nodes.push(this),void(n(this).is("a")&&(…
/template/strap/ComboStrap/Xml/
H A DXmlDocument.php405 $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 DXmlElement.php105 $nodes = [];
108 $nodes[] = new XmlElement($child, $this->document);
111 return $nodes;
/template/a_new_day/
Dcsshover3.htc116 // 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/
Dcsshover3.htc116 // 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/vector20/static/3rd/vector/
Dcsshover.htc116 // 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/vector/static/3rd/vector/
Dcsshover.htc116 // 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/wikiweko/static/3rd/vector/
H A Dcsshover.htc116 // 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/twigstarter/vendor/twig/twig/src/
DExpressionParser.php296 $nodes = [];
301 $nodes[] = new ConstantExpression($token->getValue(), $token->getLine());
304 $nodes[] = $this->parseExpression();
312 $expr = array_shift($nodes);
313 foreach ($nodes as $node) {

12