Home
last modified time | relevance | path

Searched refs:node (Results 26 – 50 of 84) sorted by relevance

1234

/template/twigstarter/vendor/twig/twig/src/Test/
H A DNodeTestCase.php27 public function testCompile($node, $source, $environment = null, $isPattern = false) argument
29 $this->assertNodeCompilation($source, $node, $environment, $isPattern);
32 …public function assertNodeCompilation($source, Node $node, Environment $environment = null, $isPat… argument
35 $compiler->compile($node);
/template/twigstarter/vendor/twig/twig/src/Node/
H A DCheckSecurityNode.php38 foreach ($this->{'used'.ucfirst($type)} as $name => $node) {
39 if ($node instanceof Node) {
40 ${$type}[$name] = $node->getTemplateLine();
42 ${$type}[$node] = null;
H A DWithNode.php38 $node = $this->getNode('variables');
42 ->subcompile($node)
47 ->repr($node->getTemplateLine())
H A DSetNode.php50 foreach ($this->getNode('names') as $idx => $node) {
55 $compiler->subcompile($node);
/template/strap/class/
H A DDomUtility.php43 $node = array();
48 $node[$name] = $value;
51 return $node;
/template/amanuensis/inc/
H A Dindex.js158 trigger.contains = function(node) argument
160 if (node == null) { return false; }
161 if (node == this) { return true; }
162 else { return this.contains(node.parentNode); }
/template/sprintdoc/
H A Dsvg.php9 * Custom XML node that allows prepending
13 * @param string $name Name of the new node
29 * @param \SimpleXMLElement $node the node to be added
32 public function appendNode(\SimpleXMLElement $node) { argument
34 $domNode = dom_import_simplexml($node);
41 * @param \SimpleXMLElement $node the child to remove
44 public function removeChild(\SimpleXMLElement $node) { argument
45 $dom = dom_import_simplexml($node);
47 return $node;
[all...]
/template/writr/css/
H A Drtl.less100 .main-navigation .node > div > a {
104 .main-navigation .node > div > a:after {
174 .main-navigation .node > div > a {
178 .main-navigation ul ul .node > div > a {
H A Dresponsive.less164 .main-navigation .node > div > a {
168 .main-navigation .node > div > a:after {
178 .main-navigation .node > ul {
184 .main-navigation li.node:last-child > ul {
/template/twigstarter/vendor/twig/twig/src/NodeVisitor/
H A DNodeVisitorInterface.php29 public function enterNode(Node $node, Environment $env); argument
36 public function leaveNode(Node $node, Environment $env); argument
/template/twigstarter/vendor/twig/twig/src/Node/Expression/
H A DInlinePrint.php22 public function __construct(Node $node, $lineno) argument
24 parent::__construct(['node' => $node], [], $lineno);
H A DTestExpression.php19 public function __construct(Node $node, string $name, ?Node $arguments, int $lineno) argument
21 $nodes = ['node' => $node];
H A DFilterExpression.php20 …public function __construct(Node $node, ConstantExpression $filterName, Node $arguments, int $line… argument
22 …parent::__construct(['node' => $node, 'filter' => $filterName, 'arguments' => $arguments], [], $li…
H A DGetAttrExpression.php21 …public function __construct(AbstractExpression $node, AbstractExpression $attribute, ?AbstractExpr… argument
23 $nodes = ['node' => $node, 'attribute' => $attribute];
H A DCallExpression.php104 foreach ($arguments as $node) {
108 $compiler->subcompile($node);
123 foreach ($arguments as $name => $node) {
131 $parameters[$name] = $node;
/template/gtopia/
H A Dnew.css1node-form .content-multiple-table td.content-multiple-drag{width:30px;padding-right:0;}.node-form …
H A Dstyle.css26 .node-form .number{
31 .node-form .text{
547 .preview .node{
2477 #node-bottom{
2649 div.node{
2655 body.full-node div.node{
2700 div.node ul.links li,div.node ul.inline li,div.node .read-more a,div.node .more-link a,div.node .li…
2707 div.node ul.links li,div.node ul.inline li{
2712 div.node ul.links li a,div.node ul.inline li a{
2716 div.node .read-more a:hover,div.node .more-link a:hover,div.node .links a:hover{
[all …]
H A Dstyle.css.org491 #node-bottom {
710 div.node {
716 body.full-node div.node {
720 div.node h2.title {
724 div.node h2.title a {
763 /* node links */
764 div.node ul.links li,
768 div.node .links a {
797 div.node .links {
1267 .node-unpublished {
[all …]
/template/twigstarter/vendor/twig/twig/src/Node/Expression/Unary/
H A DAbstractUnary.php21 public function __construct(Node $node, int $lineno) argument
23 parent::__construct(['node' => $node], [], $lineno);
/template/battlehorse/js/
H A Dbuilder.js27 node: function(elementName) { method in Builder
111 var element = this.node('div');
127 return Builder.node.apply(Builder, [tag].concat($A(arguments)));
H A Deffects.js31 return $A($(element).childNodes).collect( function(node) { argument
32 return (node.nodeType==3 ? node.nodeValue :
33 (node.hasChildNodes() ? Element.collectTextNodes(node) : ''));
38 return $A($(element).childNodes).collect( function(node) { argument
39 return (node.nodeType==3 ? node.nodeValue :
40 ((node.hasChildNodes() && !Element.hasClassName(node,className)) ?
41 Element.collectTextNodesIgnoreClass(node, className) : ''));
99 Builder.node('span',{style: tagifyStyle},
/template/a_new_day/js/
H A Dbuilder.js27 node: function(elementName) { method in Builder
111 var element = this.node('div');
127 return Builder.node.apply(Builder, [tag].concat($A(arguments)));
H A Deffects.js31 return $A($(element).childNodes).collect( function(node) { argument
32 return (node.nodeType==3 ? node.nodeValue :
33 (node.hasChildNodes() ? Element.collectTextNodes(node) : ''));
38 return $A($(element).childNodes).collect( function(node) { argument
39 return (node.nodeType==3 ? node.nodeValue :
40 ((node.hasChildNodes() && !Element.hasClassName(node,className)) ?
41 Element.collectTextNodesIgnoreClass(node, className) : ''));
99 Builder.node('span',{style: tagifyStyle},
/template/sprintdoc/js/base/
H A Dspc.js223 * simplify setting and getting state out of a node
230 var node = $(param)[0];
231 var id = $.data(node);
233 $.cache[id].node = node;
/template/twigstarter/vendor/twig/twig/src/TokenParser/
H A DFromTokenParser.php50 …$node = new ImportNode($macro, $var, $token->getLine(), $this->getTag(), $this->parser->isMainScop…
56 return $node;

1234