Home
last modified time | relevance | path

Searched refs:currentMetadata (Results 1 – 2 of 2) sorted by last modified time

/plugin/findologicxmlexport/vendor/jms/serializer/src/
H A DXmlSerializationVisitor.php58 private $currentMetadata; variable in JMS\\Serializer\\XmlSerializationVisitor
144 $doCData = null !== $this->currentMetadata ? $this->currentMetadata->xmlElementCData : true;
191 …$entryName = null !== $this->currentMetadata && null !== $this->currentMetadata->xmlEntryName ? $t…
192 …tributeName = null !== $this->currentMetadata && null !== $this->currentMetadata->xmlKeyAttribute …
193 …$namespace = null !== $this->currentMetadata && null !== $this->currentMetadata->xmlEntryNamespace…
197 …$tagName = null !== $this->currentMetadata && $this->currentMetadata->xmlKeyValuePairs && $this->i…
391 return $this->currentMetadata;
404 $this->metadataStack->push($this->currentMetadata);
405 $this->currentMetadata = $metadata;
427 return $this->currentMetadata = $this->metadataStack->pop();
H A DXmlDeserializationVisitor.php41 private $currentMetadata; variable in JMS\\Serializer\\XmlDeserializationVisitor
155 if (null !== $this->currentMetadata && $this->currentMetadata->xmlKeyValuePairs) {
172 …$entryName = null !== $this->currentMetadata && $this->currentMetadata->xmlEntryName ? $this->curr…
173 …$namespace = null !== $this->currentMetadata && $this->currentMetadata->xmlEntryNamespace ? $this-…
212 if (null === $this->currentMetadata) {
222 if (!isset($attrs[$this->currentMetadata->xmlKeyAttribute])) {
226 … $k = $this->navigator->accept($attrs[$this->currentMetadata->xmlKeyAttribute], $keyType);
366 $this->metadataStack->push($this->currentMetadata);
367 $this->currentMetadata = $metadata;
375 return $this->currentMetadata;
[all …]