Home
last modified time | relevance | path

Searched refs:_asStatic (Results 1 – 8 of 8) sorted by relevance

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/
DMapType.java65 _valueHandler, _typeHandler, _asStatic); in _narrow()
71 _superClass, _superInterfaces, _keyType, _valueType, _valueHandler, h, _asStatic); in withTypeHandler()
79 _valueHandler, _typeHandler, _asStatic); in withContentTypeHandler()
85 _superClass, _superInterfaces, _keyType, _valueType, h, _typeHandler, _asStatic); in withValueHandler()
92 _valueHandler, _typeHandler, _asStatic); in withContentValueHandler()
97 if (_asStatic) { in withStaticTyping()
111 _keyType, contentType, _valueHandler, _typeHandler, _asStatic); in withContentType()
120 keyType, _valueType, _valueHandler, _typeHandler, _asStatic); in withKeyType()
128 _valueHandler, _typeHandler, _asStatic); in refine()
142 _valueHandler, _typeHandler, _asStatic); in withKeyTypeHandler()
[all …]
DCollectionType.java68 _superClass, _superInterfaces, _elementType, null, null, _asStatic); in _narrow()
77 contentType, _valueHandler, _typeHandler, _asStatic); in withContentType()
83 _superClass, _superInterfaces, _elementType, _valueHandler, h, _asStatic); in withTypeHandler()
91 _valueHandler, _typeHandler, _asStatic); in withContentTypeHandler()
97 _superClass, _superInterfaces, _elementType, h, _typeHandler, _asStatic); in withValueHandler()
104 _valueHandler, _typeHandler, _asStatic); in withContentValueHandler()
109 if (_asStatic) { in withStaticTyping()
122 _valueHandler, _typeHandler, _asStatic); in refine()
DMapLikeType.java95 _typeHandler, _asStatic); in _narrow()
107 _typeHandler, _asStatic); in withKeyType()
117 _typeHandler, _asStatic); in withContentType()
124 _asStatic); in withTypeHandler()
131 _valueHandler, _typeHandler, _asStatic); in withContentTypeHandler()
138 _asStatic); in withValueHandler()
145 _valueHandler, _typeHandler, _asStatic); in withContentValueHandler()
173 if (_asStatic) { in withStaticTyping()
185 _keyType, _valueType, _valueHandler, _typeHandler, _asStatic); in refine()
268 _valueHandler, _typeHandler, _asStatic); in withKeyTypeHandler()
[all …]
DReferenceType.java99 contentType, _anchorType, _valueHandler, _typeHandler, _asStatic); in withContentType()
109 _referencedType, _anchorType, _valueHandler, h, _asStatic); in withTypeHandler()
120 _valueHandler, _typeHandler, _asStatic); in withContentTypeHandler()
130 h, _typeHandler,_asStatic); in withValueHandler()
141 _valueHandler, _typeHandler, _asStatic); in withContentValueHandler()
146 if (_asStatic) { in withStaticTyping()
159 _valueHandler, _typeHandler, _asStatic); in refine()
186 _valueHandler, _typeHandler, _asStatic); in _narrow()
DCollectionLikeType.java97 _valueHandler, _typeHandler, _asStatic); in _narrow()
106 contentType, _valueHandler, _typeHandler, _asStatic); in withContentType()
112 _superClass, _superInterfaces, _elementType, _valueHandler, h, _asStatic); in withTypeHandler()
120 _valueHandler, _typeHandler, _asStatic); in withContentTypeHandler()
126 _superClass, _superInterfaces, _elementType, h, _typeHandler, _asStatic); in withValueHandler()
133 _valueHandler, _typeHandler, _asStatic); in withContentValueHandler()
151 if (_asStatic) { in withStaticTyping()
164 _valueHandler, _typeHandler, _asStatic); in refine()
DSimpleType.java138 _valueHandler, _typeHandler, _asStatic); in _narrow()
144 _superInterfaces, _valueHandler, _typeHandler, _asStatic); in _narrow()
149 null, _valueHandler, _typeHandler, _asStatic); in _narrow()
156 new JavaType[] { this }, _valueHandler, _typeHandler, _asStatic); in _narrow()
161 new JavaType[] { superb }, _valueHandler, _typeHandler, _asStatic); in _narrow()
179 …turn new SimpleType(_class, _bindings, _superClass, _superInterfaces, _valueHandler, h, _asStatic); in withTypeHandler()
193 …eturn new SimpleType(_class, _bindings, _superClass, _superInterfaces, h, _typeHandler, _asStatic); in withValueHandler()
204 return _asStatic ? this : new SimpleType(_class, _bindings, in withStaticTyping()
DArrayType.java55 _valueHandler, _typeHandler, _asStatic); in withContentType()
64 return new ArrayType(_componentType, _bindings, _emptyArray, _valueHandler, h, _asStatic); in withTypeHandler()
74 _valueHandler, _typeHandler, _asStatic); in withContentTypeHandler()
82 return new ArrayType(_componentType, _bindings, _emptyArray, h, _typeHandler,_asStatic); in withValueHandler()
91 _valueHandler, _typeHandler, _asStatic); in withContentValueHandler()
96 if (_asStatic) { in withStaticTyping()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DJavaType.java64 protected final boolean _asStatic; field in JavaType
84 _asStatic = asStatic; in JavaType()
98 _asStatic = base._asStatic; in JavaType()
366 public final boolean useStaticType() { return _asStatic; } in useStaticType()