Searched refs:ElementNode (Results 1 – 7 of 7) sorted by relevance
14 use Symfony\Component\CssSelector\Node\ElementNode; alias41 return [new SelectorNode(new ElementNode(null, '*'))];
14 use Symfony\Component\CssSelector\Node\ElementNode; alias42 return [new SelectorNode(new ElementNode($matches[1] ?: null, $matches[2]))];
15 use Symfony\Component\CssSelector\Node\ElementNode; alias45 …new SelectorNode(new ClassNode(new ElementNode($matches[1] ?: null, $matches[2] ?: null), $matches…
14 use Symfony\Component\CssSelector\Node\ElementNode; alias45 …new SelectorNode(new HashNode(new ElementNode($matches[1] ?: null, $matches[2] ?: null), $matches[…
24 class ElementNode extends AbstractNode class
263 private function parseElementNode(TokenStream $stream): Node\ElementNode286 return new Node\ElementNode($namespace, $element);
156 public function translateElement(Node\ElementNode $node): XPathExpr