Lines Matching refs:currentNode
53 private $currentNode; variable in JMS\\Serializer\\XmlSerializationVisitor
87 $this->currentNode = null;
187 if (null === $this->currentNode) {
200 $this->currentNode->appendChild($entryNode);
209 $this->currentNode->appendChild($node);
212 $this->currentNode->parentNode->removeChild($this->currentNode);
226 if (null === $this->currentNode) {
230 $this->addNamespaceAttributes($metadata, $this->currentNode);
249 …$this->setAttributeOnNode($this->currentNode, $metadata->serializedName, $node->nodeValue, $metada…
254 if (($metadata->xmlValue && $this->currentNode->childNodes->length > 0)
271 $this->currentNode->appendChild($node);
290 … $this->setAttributeOnNode($this->currentNode, $key, $node->nodeValue, $metadata->xmlNamespace);
302 $this->currentNode->appendChild($element);
310 $this->currentNode->appendChild($node);
313 $this->currentNode->parentNode->removeChild($this->currentNode);
326 $this->currentNode->removeChild($element);
386 return $this->currentNode;
410 $this->stack->push($this->currentNode);
411 $this->currentNode = $node;
422 return $this->currentNode = $this->stack->pop();