Home
last modified time | relevance | path

Searched refs:deserialize (Results 1 – 25 of 57) sorted by relevance

123

/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/
DBaseSerializationTest.php151 $dObj = $this->serializer->deserialize(
202 $dObj = $this->serializer->deserialize(
219 self::assertEquals(null, $this->deserialize($this->getContent('null'), $type));
236 self::assertEquals(null, $this->deserialize($this->getContent('null'), $type));
257 self::assertEquals('foo', $this->deserialize($this->getContent('string'), 'string'));
394 …self::assertSame($boolean, $this->deserialize($this->getContent('boolean_' . $strBoolean), 'boolea…
411 self::assertEquals($value, $this->deserialize($this->getContent($key), $type));
441 …$this->assertEquals($obj, $this->deserialize($this->getContent('simple_object'), get_class($obj)));
450 … self::assertEquals($obj, $this->deserialize($this->getContent('simple_object'), get_class($obj)));
459 …$this->assertEquals($obj, $this->deserialize($this->getContent('simple_object'), get_class($obj)));
[all …]
DXmlSerializationTest.php64 … self::assertSame($boolean, $this->deserialize('<result>' . $xmlBoolean . '</result>', 'boolean'));
76 $object = $this->deserialize(
124 $this->deserialize('<?xml version="1.0"?>
139 $this->deserialize('<?xml version="1.0"?><!DOCTYPE foo><foo></foo>', 'stdClass');
158 $serializer->deserialize('<?xml version="1.0"?>
162 $serializer->deserialize('<?xml version="1.0"?>
204 …$object = $this->serializer->deserialize($xml, 'JMS\Serializer\Tests\Fixtures\ObjectWithAbsentXmlL…
212 …$object = $this->serializer->deserialize($xml, 'JMS\Serializer\Tests\Fixtures\ObjectWithAbsentXmlL…
240 … $this->deserialize($this->getContent('object_with_namespaces_and_list'), get_class($object))
267 …$this->deserialize($this->getContent('object_with_namespaces_and_nested_list'), get_class($object))
[all …]
DJsonSerializationTest.php162 $this->deserialize($expected, get_class($collection))
220 … $object = $this->deserialize($content, 'JMS\Serializer\Tests\Fixtures\ObjectWithObjectProperty');
228 … $object = $this->deserialize($content, 'JMS\Serializer\Tests\Fixtures\ObjectWithObjectProperty');
314 self::assertEquals($object, $this->deserialize($serialized, ObjectWithInlineArray::class));
DSerializationContextFactoryTest.php77 $result = $serializer->deserialize('{"value":null}', 'array', 'json');
/plugin/findologicxmlexport/vendor/jms/serializer/tests/
DSerializerBuilderTest.php37 self::assertEquals('foo', $serializer->deserialize('"foo"', 'string', 'json'));
38 …self::assertEquals('foo', $serializer->deserialize('<?xml version="1.0" encoding="UTF-8"?><result>…
78 $result = $serializer->deserialize('"04-2020-10"', 'XXX', 'json');
162 $result = $serializer->deserialize('{"value":null}', 'array', 'json');
253 $object = $serializer->deserialize($serialized, PersonSecretWithVariables::class, 'json');
/plugin/findologicxmlexport/vendor/jms/serializer/doc/
Dusage.rst27 You can also deserialize objects from their XML, or JSON representation. For
35 $object = $serializer->deserialize($jsonData, 'MyNamespace\MyObject', 'json');
Dconfiguration.rst106 to be used with methods ``deserialize()`` and ``fromArray()``.
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Serializers/
DSerializerInterface.php38 public function deserialize(?string $data, array $headers); function
DEverythingToJSONSerializer.php49 public function deserialize(?string $data, array $headers) function in Elasticsearch\\Serializers\\EverythingToJSONSerializer
DArrayToJSONSerializer.php53 public function deserialize(?string $data, array $headers) function in Elasticsearch\\Serializers\\ArrayToJSONSerializer
DSmartSerializer.php54 public function deserialize(?string $data, array $headers) function in Elasticsearch\\Serializers\\SmartSerializer
/plugin/mizarverifiabledocs/src/
H A Dmizar-parser.js4 export const parser = LRParser.deserialize({
/plugin/findologicxmlexport/vendor/jms/serializer/src/
DSerializerInterface.php26 …public function deserialize(string $data, string $type, string $format, ?DeserializationContext $c… function
DSerializer.php169 …public function deserialize(string $data, string $type, string $format, ?DeserializationContext $c… function in JMS\\Serializer\\Serializer
/plugin/findologicxmlexport/vendor/jms/serializer/doc/cookbook/
Dstdclass.rst16 - deserialize data into ``stdClass`` objects
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/Doctrine/
DIntegrationTest.php46 $deserialized = $this->serializer->deserialize($json, Organization::class, 'json');
56 $deserialized = $this->serializer->deserialize($json, Person::class, 'json');
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/EventDispatcher/Subscriber/
DSymfonyValidatorValidatorSubscriberTest.php77 ->deserialize(
/plugin/fedauth/Auth/OpenID/
DFileStore.php317 Auth_OpenID_Association::deserialize('Auth_OpenID_Association',
422 Auth_OpenID_Association::deserialize(
DAssociation.php209 static function deserialize($class_name, $assoc_s) function in Auth_OpenID_Association
/plugin/combo/ComboStrap/PageSqlParser/
H A DPageSqlLexer.php617 $atn = (new ATNDeserializer())->deserialize(self::SERIALIZED_ATN);
/plugin/openid/Auth/OpenID/
DFileStore.php346 Auth_OpenID_Association::deserialize('Auth_OpenID_Association',
456 Auth_OpenID_Association::deserialize(
DAssociation.php211 static function deserialize($class_name, $assoc_s) function in Auth_OpenID_Association
/plugin/sketchcanvas/script/
DSketchCanvas.js1029 Shape.prototype.deserialize = function(obj){ method in Shape
1106 TextShape.prototype.deserialize = function(obj){ method in TextShape
1107 Shape.prototype.deserialize.call(this, obj); method in Shape
1175 PathShape.prototype.deserialize = function(obj){ method in PathShape
1176 Shape.prototype.deserialize.call(this, obj); method in Shape
1224 function deserialize(dat){ function in SketchCanvas
1238 robj.deserialize(obj);
1246 dobjs = deserialize(jsyaml.load(value));
1280 dobjs = deserialize(jsyaml.load(selData[name]));
1339 dobjs = deserialize(jsyaml.load(selData));
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/
DConnection.php340 …$response['body'] = $this->serializer->deserialize($response['body'], $response['transfer_stats']);
765 $error = $this->serializer->deserialize($response['body'], $response['transfer_stats']);
/plugin/findologicxmlexport/vendor/jms/serializer/doc/reference/
Dxml_reference.rst52 <callback-method name="baz" type="post-deserialize" />

123