Home
last modified time | relevance | path

Searched refs:typeFactory (Results 1 – 14 of 14) sorted by relevance

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/jsontype/impl/
DClassNameIdResolver.java29 protected ClassNameIdResolver(JavaType baseType, TypeFactory typeFactory) { in ClassNameIdResolver() argument
30 this(baseType, typeFactory, LaissezFaireSubTypeValidator.instance); in ClassNameIdResolver()
36 public ClassNameIdResolver(JavaType baseType, TypeFactory typeFactory, in ClassNameIdResolver() argument
38 super(baseType, typeFactory); in ClassNameIdResolver()
89 protected String _idFrom(Object value, Class<?> cls, TypeFactory typeFactory) in _idFrom() argument
113 str = typeFactory.constructCollectionType(EnumSet.class, enumClass).toCanonical(); in _idFrom()
118 … str = typeFactory.constructMapType(EnumMap.class, enumClass, valueClass).toCanonical(); in _idFrom()
DTypeIdResolverBase.java37 protected TypeIdResolverBase(JavaType baseType, TypeFactory typeFactory) { in TypeIdResolverBase() argument
39 _typeFactory = typeFactory; in TypeIdResolverBase()
DMinimalClassNameIdResolver.java27 protected MinimalClassNameIdResolver(JavaType baseType, TypeFactory typeFactory, in MinimalClassNameIdResolver() argument
30 super(baseType, typeFactory, ptv); in MinimalClassNameIdResolver()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/util/
DStdConverter.java26 public JavaType getInputType(TypeFactory typeFactory) { in getInputType() argument
27 return _findConverterType(typeFactory).containedType(0); in getInputType()
31 public JavaType getOutputType(TypeFactory typeFactory) { in getOutputType() argument
32 return _findConverterType(typeFactory).containedType(1); in getOutputType()
DConverter.java37 public JavaType getInputType(TypeFactory typeFactory); in getInputType() argument
47 public JavaType getOutputType(TypeFactory typeFactory); in getOutputType() argument
/external/jackson-databind/attic/
DTypeBindings.java68 public TypeBindings(TypeFactory typeFactory, ClassStack stack, Class<?> cc) in TypeBindings() argument
70 this(typeFactory, null, stack, cc, null); in TypeBindings()
73 public TypeBindings(TypeFactory typeFactory, ClassStack stack, JavaType type) in TypeBindings() argument
75 this(typeFactory, null, stack, type.getRawClass(), type); in TypeBindings()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/module/
DTestTypeModifierNameResolution.java35 …c JavaType modifyType(JavaType type, Type jdkType, TypeBindings context, TypeFactory typeFactory) { in modifyType() argument
37 return typeFactory.constructType(MyType.class); in modifyType()
DTestTypeModifiers.java195 …ic JavaType modifyType(JavaType type, Type jdkType, TypeBindings bindings, TypeFactory typeFactory) in modifyType() argument
217 .typeFactory(TypeFactory.defaultInstance().withModifier(new MyTypeModifier()))
/external/bcc/src/cc/frontends/p4/compiler/
DebpfProgram.py7 import typeFactory
49 self.typeFactory = typeFactory.EbpfTypeFactory(config)
93 h, indexVarName, self.typeFactory)
96 metadata = ebpfInstance.EbpfMetadata(h, self.typeFactory)
99 header = ebpfInstance.EbpfHeader(h, self.typeFactory)
274 for t in self.typeFactory.type_map.values():
DebpfInstance.py8 import typeFactory
75 assert isinstance(factory, typeFactory.EbpfTypeFactory)
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/
DTypeModifier.java35 TypeFactory typeFactory); in modifyType() argument
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/impl/
DJavaUtilCollectionsDeserializers.java171 public JavaType getInputType(TypeFactory typeFactory) { in getInputType() argument
176 public JavaType getOutputType(TypeFactory typeFactory) { in getOutputType() argument
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/introspect/
DAnnotatedMethodCollector.java43 AnnotatedMethodMap collect(TypeFactory typeFactory, TypeResolutionContext tc, in collect() argument
55 new TypeResolutionContext.Basic(typeFactory, type.getBindings()), in collect()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/cfg/
DMapperBuilder.java350 public B typeFactory(TypeFactory f) {