Lines Matching refs:xpath
405 $nodes = $this->xpath("//*[namespace-uri()='$namespaceUri']");
415 $nodes = $this->xpath("//@*[namespace-uri()='$namespaceUri']");
428 $xpath = new DOMXPath($this->getDomDocument());
429 $DOMNodeList = $xpath->query("namespace::*", $this->getDomDocument()->ownerDocument);
447 $xpath = new DOMXPath($this->getDomDocument());
452 $DOMNodeList = $xpath->query('namespace::*', $this->getDomDocument()->ownerDocument);
480 function xpath($query, DOMElement $contextNode = null): DOMNodeList function in ComboStrap\\Xml\\XmlDocument
718 $xpath = $this->cssSelectorToXpath($selector);
719 $domNodeList = $this->xpath($xpath);
777 public function xpathFirstDomElement(string $xpath): DOMElement argument
779 $domList = $this->xpath($xpath);