Lines Matching refs:xpath

563             $xpath = new DOMXPath($this->sigNode->ownerDocument);
564 $xpath->registerNamespace('secdsig', XMLSecurityDSig::XMLDSIGNS);
565 $this->xPathCtx = $xpath;
587 $xpath = new DOMXPath($doc);
588 $xpath->registerNamespace('secdsig', XMLSecurityDSig::XMLDSIGNS);
590 $nodeset = $xpath->query($query, $objDoc);
593 $nodeset = $xpath->query($query, $this->sigNode);
623 if ($xpath = $this->getXPathObj()) {
625 $nodeset = $xpath->query($query, $this->sigNode);
628 $nodeset = $xpath->query($query, $sinfo);
680 $xpath = $this->getXPathObj();
682 $nodeset = $xpath->query($query, $this->sigNode);
688 $nodeset = $xpath->query($query, $signInfoNode);
728 $xpath = new DOMXPath($refNode->ownerDocument);
729 $xpath->registerNamespace('secdsig', XMLSecurityDSig::XMLDSIGNS);
731 $digestAlgorithm = $xpath->evaluate($query, $refNode);
734 $digestValue = $xpath->evaluate($query, $refNode);
740 $xpath = new DOMXPath($refNode->ownerDocument);
741 $xpath->registerNamespace('secdsig', XMLSecurityDSig::XMLDSIGNS);
743 $nodelist = $xpath->query($query, $refNode);
802 $nslist = $xpath->query('./namespace::*', $node);
898 $xpath = $this->getXPathObj();
900 $nodeset = $xpath->query($query, $this->sigNode);
915 $xpath = $this->getXPathObj();
917 $nodeset = $xpath->query($query, $this->sigNode);
1012 if ($xpath = $this->getXPathObj()) {
1014 $nodeset = $xpath->query($query, $this->sigNode);
1022 if ($xpath = $this->getXPathObj()) {
1024 $nodeset = $xpath->query($query, $this->sigNode);
1061 $xpath = new DOMXPath($doc);
1062 $xpath->registerNamespace('secdsig', XMLSecurityDSig::XMLDSIGNS);
1064 $algorithm = $xpath->evaluate($query, $node);
1079 $xpath = new DOMXPath($doc);
1080 $xpath->registerNamespace('secdsig', XMLSecurityDSig::XMLDSIGNS);
1082 $sigValue = $xpath->evaluate($query, $this->sigNode);
1100 if ($xpath = $this->getXPathObj()) {
1102 $nodeset = $xpath->query($query, $this->sigNode);
1105 $nodeset = $xpath->query($query, $sInfo);
1192 …static function staticAdd509Cert($parentRef, $cert, $isPEMFormat=true, $isURL=false, $xpath=null, … argument
1200 list($parentRef, $keyInfo) = self::auxKeyInfo($parentRef, $xpath);
1272 if ($xpath = $this->getXPathObj()) {
1273 self::staticAdd509Cert($this->sigNode, $cert, $isPEMFormat, $isURL, $xpath, $options);
1289 $xpath = $this->getXPathObj();
1291 list($parentRef, $keyInfo) = self::auxKeyInfo($parentRef, $xpath);
1298 static function auxKeyInfo($parentRef, $xpath=null) argument
1301 if (empty($xpath)) {
1302 $xpath = new DOMXPath($parentRef->ownerDocument);
1303 $xpath->registerNamespace('secdsig', XMLSecurityDSig::XMLDSIGNS);
1307 $nodeset = $xpath->query($query, $parentRef);
1314 $nodeset = $xpath->query($query, $parentRef);
1601 $xpath = new DOMXPath($doc);
1603 $nodeset = $xpath->query($query);
1617 $xpath = new DOMXPath($doc);
1618 $xpath->registerNamespace('xmlsecenc', XMLSecEnc::XMLENCNS);
1620 $nodeset = $xpath->query($query, $node);
1643 $xpath = new DOMXPath($doc);
1644 $xpath->registerNamespace('xmlsecenc', XMLSecEnc::XMLENCNS);
1645 $xpath->registerNamespace('xmlsecdsig', XMLSecurityDSig::XMLDSIGNS);
1647 $nodeset = $xpath->query($query, $node);
1698 $keyElement = $xpath->query($query)->item(0);