Home
last modified time | relevance | path

Searched refs:node (Results 76 – 84 of 84) sorted by path

1234

/template/twigstarter/vendor/twig/twig/src/Profiler/NodeVisitor/
H A DProfilerNodeVisitor.php41 return $node;
46 if ($node instanceof ModuleNode) {
47 …$node->setNode('display_start', new Node([new EnterProfileNode($this->extensionName, Profile::TEMP…
48 …$node->setNode('display_end', new Node([new LeaveProfileNode($this->varName), $node->getNode('disp…
49 } elseif ($node instanceof BlockNode) {
50 $node->setNode('body', new BodyNode([
52 $node->getNode('body'),
55 } elseif ($node instanceof MacroNode) {
56 $node->setNode('body', new BodyNode([
58 $node->getNode('body'),
[all …]
/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/TokenParser/
H A DForTokenParser.php91 private function checkLoopUsageCondition(TokenStream $stream, Node $node) argument
93 …if ($node instanceof GetAttrExpression && $node->getNode('node') instanceof NameExpression && 'loo…
94 …yntaxError('The "loop" variable cannot be used in a looping condition.', $node->getTemplateLine(),…
97 foreach ($node as $n) {
108 private function checkLoopUsageBody(TokenStream $stream, Node $node) argument
110 …if ($node instanceof GetAttrExpression && $node->getNode('node') instanceof NameExpression && 'loo…
111 $attribute = $node->getNode('attribute');
113 …ned when looping with a condition.', $attribute->getAttribute('value')), $node->getTemplateLine(),…
118 if ($node instanceof ForNode) {
122 foreach ($node as $n) {
H A DFromTokenParser.php50 …$node = new ImportNode($macro, $var, $token->getLine(), $this->getTag(), $this->parser->isMainScop…
56 return $node;
H A DSandboxTokenParser.php40 foreach ($body as $node) {
41 if ($node instanceof TextNode && ctype_space($node->getAttribute('data'))) {
45 if (!$node instanceof IncludeNode) {
46 …ntaxError('Only "include" tags are allowed within a "sandbox" section.', $node->getTemplateLine(),…
/template/vector/static/3rd/vector/
H A Dcsshover.htc145 patch:function(node, type, className) {
151 if(node.style[property]) {
152 node.style[property] = null;
156 if(!node.csshover) node.csshover = [];
159 if(!node.csshover[className]) {
160 node.csshover[className] = true;
215 this.node = node;
221 this.deactivator = function(){ node.className = node.className.replace(replacer, ' '); };
239 this.node = null;
249 return function(node, type, className) {
[all …]
/template/writr/css/
H A Dmenu.less55 .main-navigation .node > div > a {
58 .main-navigation .node > div > a:after {
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 {
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 {

1234