/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/ |
D | ValueInstantiators.java | 31 public ValueInstantiator findValueInstantiator(DeserializationConfig config, in findValueInstantiator() method 42 public ValueInstantiator findValueInstantiator(DeserializationConfig config, in findValueInstantiator() method in ValueInstantiators.Base
|
D | DeserializerFactory.java | 100 public abstract ValueInstantiator findValueInstantiator(DeserializationContext ctxt, in findValueInstantiator() method in DeserializerFactory
|
D | BasicDeserializerFactory.java | 209 public ValueInstantiator findValueInstantiator(DeserializationContext ctxt, in findValueInstantiator() method in BasicDeserializerFactory 218 Object instDef = ctxt.getAnnotationIntrospector().findValueInstantiator(ac); in findValueInstantiator() 234 instantiator = insts.findValueInstantiator(config, beanDesc, instantiator); in findValueInstantiator() 1222 ValueInstantiator inst = findValueInstantiator(ctxt, beanDesc); in createCollectionDeserializer() 1335 inst = findValueInstantiator(ctxt, beanDesc); in createMapDeserializer() 1378 ValueInstantiator inst = findValueInstantiator(ctxt, beanDesc); in createMapDeserializer() 1568 inst = findValueInstantiator(ctxt, beanDesc); in createReferenceDeserializer()
|
D | BeanDeserializerFactory.java | 253 valueInstantiator = findValueInstantiator(ctxt, beanDesc); in buildBeanDeserializer() 312 valueInstantiator = findValueInstantiator(ctxt, builderDesc); in buildBuilderBasedDeserializer() 409 builder.setValueInstantiator(findValueInstantiator(ctxt, beanDesc)); in buildThrowableDeserializer()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/module/ |
D | SimpleValueInstantiators.java | 42 public ValueInstantiator findValueInstantiator(DeserializationConfig config, in findValueInstantiator() method in SimpleValueInstantiators
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/introspect/ |
D | AnnotationIntrospectorPair.java | 752 public Object findValueInstantiator(AnnotatedClass ac) { in findValueInstantiator() method in AnnotationIntrospectorPair 753 Object result = _primary.findValueInstantiator(ac); in findValueInstantiator() 754 return (result == null) ? _secondary.findValueInstantiator(ac) : result; in findValueInstantiator()
|
D | JacksonAnnotationIntrospector.java | 1260 public Object findValueInstantiator(AnnotatedClass ac) in findValueInstantiator() method in JacksonAnnotationIntrospector
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/creators/ |
D | TestCustomValueInstDefaults.java | 243 public ValueInstantiator findValueInstantiator( in findValueInstantiator() method in TestCustomValueInstDefaults.BucketInstantiators 359 public ValueInstantiator findValueInstantiator(DeserializationConfig config, in setupModule()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ |
D | AnnotationIntrospector.java | 1285 public Object findValueInstantiator(AnnotatedClass ac) { in findValueInstantiator() method in AnnotationIntrospector
|