/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/jsontype/impl/ |
D | StdTypeResolverBuilder.java | 66 public StdTypeResolverBuilder init(JsonTypeInfo.Id idType, TypeIdResolver idRes) in init() argument 73 _customIdResolver = idRes; in init() 92 TypeIdResolver idRes = idResolver(config, baseType, subTypeValidator(config), in buildTypeSerializer() local 96 return new AsArrayTypeSerializer(idRes, null); in buildTypeSerializer() 98 return new AsPropertyTypeSerializer(idRes, null, _typeProperty); in buildTypeSerializer() 100 return new AsWrapperTypeSerializer(idRes, null); in buildTypeSerializer() 102 return new AsExternalTypeSerializer(idRes, null, _typeProperty); in buildTypeSerializer() 105 return new AsExistingPropertyTypeSerializer(idRes, null, _typeProperty); in buildTypeSerializer() 134 … TypeIdResolver idRes = idResolver(config, baseType, subTypeValidator, subtypes, false, true); in buildTypeDeserializer() local 141 return new AsArrayTypeDeserializer(baseType, idRes, in buildTypeDeserializer() [all …]
|
D | AsArrayTypeSerializer.java | 14 public AsArrayTypeSerializer(TypeIdResolver idRes, BeanProperty property) { in AsArrayTypeSerializer() argument 15 super(idRes, property); in AsArrayTypeSerializer()
|
D | AsExistingPropertyTypeSerializer.java | 15 public AsExistingPropertyTypeSerializer(TypeIdResolver idRes, in AsExistingPropertyTypeSerializer() argument 18 super(idRes, property, propName); in AsExistingPropertyTypeSerializer()
|
D | AsPropertyTypeSerializer.java | 20 public AsPropertyTypeSerializer(TypeIdResolver idRes, BeanProperty property, String propName) in AsPropertyTypeSerializer() argument 22 super(idRes, property); in AsPropertyTypeSerializer()
|
D | AsPropertyTypeDeserializer.java | 30 public AsPropertyTypeDeserializer(JavaType bt, TypeIdResolver idRes, in AsPropertyTypeDeserializer() argument 33 this(bt, idRes, typePropertyName, typeIdVisible, defaultImpl, As.PROPERTY); in AsPropertyTypeDeserializer() 39 public AsPropertyTypeDeserializer(JavaType bt, TypeIdResolver idRes, in AsPropertyTypeDeserializer() argument 43 super(bt, idRes, typePropertyName, typeIdVisible, defaultImpl); in AsPropertyTypeDeserializer()
|
D | AsExternalTypeDeserializer.java | 25 public AsExternalTypeDeserializer(JavaType bt, TypeIdResolver idRes, in AsExternalTypeDeserializer() argument 28 super(bt, idRes, typePropertyName, typeIdVisible, defaultImpl); in AsExternalTypeDeserializer()
|
D | AsWrapperTypeSerializer.java | 22 public AsWrapperTypeSerializer(TypeIdResolver idRes, BeanProperty property) { in AsWrapperTypeSerializer() argument 23 super(idRes, property); in AsWrapperTypeSerializer()
|
D | AsExternalTypeSerializer.java | 28 public AsExternalTypeSerializer(TypeIdResolver idRes, BeanProperty property, String propName) { in AsExternalTypeSerializer() argument 29 super(idRes, property); in AsExternalTypeSerializer()
|
D | TypeSerializerBase.java | 20 protected TypeSerializerBase(TypeIdResolver idRes, BeanProperty property) in TypeSerializerBase() argument 22 _idResolver = idRes; in TypeSerializerBase()
|
D | AsWrapperTypeDeserializer.java | 29 public AsWrapperTypeDeserializer(JavaType bt, TypeIdResolver idRes, in AsWrapperTypeDeserializer() argument 32 super(bt, idRes, typePropertyName, typeIdVisible, defaultImpl); in AsWrapperTypeDeserializer()
|
D | AsArrayTypeDeserializer.java | 29 public AsArrayTypeDeserializer(JavaType bt, TypeIdResolver idRes, in AsArrayTypeDeserializer() argument 32 super(bt, idRes, typePropertyName, typeIdVisible, defaultImpl); in AsArrayTypeDeserializer()
|
D | TypeDeserializerBase.java | 70 protected TypeDeserializerBase(JavaType baseType, TypeIdResolver idRes, in TypeDeserializerBase() argument 74 _idResolver = idRes; in TypeDeserializerBase()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/introspect/ |
D | JacksonAnnotationIntrospector.java | 1485 TypeIdResolver idRes = (idResInfo == null) ? null in _findTypeResolver() local 1487 if (idRes != null) { in _findTypeResolver() 1488 idRes.init(baseType); in _findTypeResolver() 1490 b = b.init(info.use(), idRes); in _findTypeResolver()
|
/external/icu/icu4c/source/common/ |
D | ucurr.cpp | 2092 UResourceBundle *idRes = ures_getByKey(currencyRes, "id", NULL, &localStatus); in ucurr_createCurrencyList() local 2093 if (idRes == NULL) { in ucurr_createCurrencyList() 2096 const UChar *isoCode = ures_getString(idRes, &isoLength, &localStatus); in ucurr_createCurrencyList() 2125 ures_close(idRes); in ucurr_createCurrencyList()
|