Lines Matching refs:leftNode
127 * @param DOMNode $leftNode
134 …public static function diffNode(DOMNode $leftNode, DOMNode $rightNode, &$error, array $excludedAtt… argument
140 $leftNodeName = $leftNode->localName;
145 if ($leftNode->hasAttributes()) {
146 $leftAttributesLength = $leftNode->attributes->length;
157 $leftAtt = $leftNode->attributes->item($i);
251 if ($leftNode->nodeName == "#text") {
252 $leftNodeValue = trim($leftNode->nodeValue);
262 if ($leftNode->hasChildNodes()) {
267 $firstNode = $leftNode->childNodes->item(0);
270 …$error .= "The left node (" . $leftNode->getNodePath() . ") have child nodes while the right has n…
272 $leftChildNodeCount = $leftNode->childNodes->length;
277 $leftChildNode = $leftNode->childNodes->item($leftChildIndex);
282 $leftChildNode = $leftNode->childNodes->item($leftChildIndex);