Home
last modified time | relevance | path

Searched refs:_bindings (Results 1 – 13 of 13) sorted by relevance

/external/jackson-databind/attic/
DTypeBindings.java46 protected Map<String,JavaType> _bindings; field in TypeBindings
120 if (_bindings == null) { in findType()
123 JavaType t = _bindings.get(name); in findType()
170 if (_bindings == null || _bindings.size() == 0) { in addBinding()
171 _bindings = new LinkedHashMap<String,JavaType>(); in addBinding()
173 _bindings.put(name, type); in addBinding()
178 if (_bindings == null) { in typesAsArray()
181 if (_bindings.size() == 0) { in typesAsArray()
184 return _bindings.values().toArray(new JavaType[_bindings.size()]); in typesAsArray()
195 if (_bindings == null) { in getBindingCount()
[all …]
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/
DMapType.java63 return new MapType(subclass, _bindings, in _narrow()
70 return new MapType(_class, _bindings, in withTypeHandler()
77 return new MapType(_class, _bindings, in withContentTypeHandler()
84 return new MapType(_class, _bindings, in withValueHandler()
90 return new MapType(_class, _bindings, in withContentValueHandler()
100 return new MapType(_class, _bindings, in withStaticTyping()
110 return new MapType(_class, _bindings, _superClass, _superInterfaces, in withContentType()
119 return new MapType(_class, _bindings, _superClass, _superInterfaces, in withKeyType()
140 return new MapType(_class, _bindings, in withKeyTypeHandler()
147 return new MapType(_class, _bindings, in withKeyValueHandler()
DSimpleType.java137 return new SimpleType(subclass, _bindings, this, _superInterfaces, in _narrow()
143 return new SimpleType(subclass, _bindings, this, in _narrow()
148 return new SimpleType(subclass, _bindings, superb, in _narrow()
155 return new SimpleType(subclass, _bindings, null, in _narrow()
160 return new SimpleType(subclass, _bindings, null, in _narrow()
179 …return new SimpleType(_class, _bindings, _superClass, _superInterfaces, _valueHandler, h, _asStati… in withTypeHandler()
193 …return new SimpleType(_class, _bindings, _superClass, _superInterfaces, h, _typeHandler, _asStatic… in withValueHandler()
204 return _asStatic ? this : new SimpleType(_class, _bindings, in withStaticTyping()
221 final int count = _bindings.size(); in buildCanonicalName()
258 final int count = _bindings.size(); in getGenericSignature()
[all …]
DCollectionType.java67 return new CollectionType(subclass, _bindings, in _narrow()
76 return new CollectionType(_class, _bindings, _superClass, _superInterfaces, in withContentType()
82 return new CollectionType(_class, _bindings, in withTypeHandler()
89 return new CollectionType(_class, _bindings, in withContentTypeHandler()
96 return new CollectionType(_class, _bindings, in withValueHandler()
102 return new CollectionType(_class, _bindings, in withContentValueHandler()
112 return new CollectionType(_class, _bindings, in withStaticTyping()
DMapLikeType.java93 return new MapLikeType(subclass, _bindings, _superClass, in _narrow()
105 return new MapLikeType(_class, _bindings, _superClass, in withKeyType()
115 return new MapLikeType(_class, _bindings, _superClass, in withContentType()
122 return new MapLikeType(_class, _bindings, _superClass, in withTypeHandler()
129 return new MapLikeType(_class, _bindings, _superClass, in withContentTypeHandler()
136 return new MapLikeType(_class, _bindings, _superClass, in withValueHandler()
143 return new MapLikeType(_class, _bindings, _superClass, in withContentValueHandler()
176 return new MapLikeType(_class, _bindings, _superClass, in withStaticTyping()
266 return new MapLikeType(_class, _bindings, _superClass, in withKeyTypeHandler()
272 return new MapLikeType(_class, _bindings, _superClass, in withKeyValueHandler()
DReferenceType.java98 return new ReferenceType(_class, _bindings, _superClass, _superInterfaces, in withContentType()
108 return new ReferenceType(_class, _bindings, _superClass, _superInterfaces, in withTypeHandler()
118 return new ReferenceType(_class, _bindings, _superClass, _superInterfaces, in withContentTypeHandler()
128 return new ReferenceType(_class, _bindings, in withValueHandler()
139 return new ReferenceType(_class, _bindings, in withContentValueHandler()
149 return new ReferenceType(_class, _bindings, _superClass, _superInterfaces, in withStaticTyping()
157 return new ReferenceType(rawType, _bindings, in refine()
184 return new ReferenceType(subclass, _bindings, in _narrow()
DTypeBase.java33 protected final TypeBindings _bindings; field in TypeBase
48 _bindings = (bindings == null) ? NO_BINDINGS : bindings; in TypeBase()
62 _bindings = base._bindings; in TypeBase()
87 return _bindings; in getBindings()
92 return _bindings.size(); in containedTypeCount()
97 return _bindings.getBoundType(index); in containedType()
103 return _bindings.getBoundName(index); in containedTypeName()
DArrayType.java54 return new ArrayType(contentType, _bindings, emptyInstance, in withContentType()
64 return new ArrayType(_componentType, _bindings, _emptyArray, _valueHandler, h, _asStatic); in withTypeHandler()
73 return new ArrayType(_componentType.withTypeHandler(h), _bindings, _emptyArray, in withContentTypeHandler()
82 return new ArrayType(_componentType, _bindings, _emptyArray, h, _typeHandler,_asStatic); in withValueHandler()
90 return new ArrayType(_componentType.withValueHandler(h), _bindings, _emptyArray, in withContentValueHandler()
99 return new ArrayType(_componentType.withStaticTyping(), _bindings, in withStaticTyping()
DCollectionLikeType.java95 return new CollectionLikeType(subclass, _bindings, in _narrow()
105 return new CollectionLikeType(_class, _bindings, _superClass, _superInterfaces, in withContentType()
111 return new CollectionLikeType(_class, _bindings, in withTypeHandler()
118 return new CollectionLikeType(_class, _bindings, in withContentTypeHandler()
125 return new CollectionLikeType(_class, _bindings, in withValueHandler()
131 return new CollectionLikeType(_class, _bindings, in withContentValueHandler()
154 return new CollectionLikeType(_class, _bindings, in withStaticTyping()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/introspect/
DTypeResolutionContext.java22 private final TypeBindings _bindings; field in TypeResolutionContext.Basic
26 _bindings = b; in Basic()
37 return _typeFactory.constructType(type, _bindings); in resolveType()
DAnnotatedClassResolver.java38 private final TypeBindings _bindings; field in AnnotatedClassResolver
54 _bindings = type.getBindings(); in AnnotatedClassResolver()
70 _bindings = TypeBindings.emptyBindings(); in AnnotatedClassResolver()
146 _bindings, _intr, _mixInResolver, _config.getTypeFactory(), in resolveFully()
155 _bindings, _intr, _mixInResolver, _config.getTypeFactory(), in resolveWithoutSuperTypes()
DAnnotatedClass.java46 final protected TypeBindings _bindings; field in AnnotatedClass
145 _bindings = bindings; in AnnotatedClass()
173 _bindings = TypeBindings.emptyBindings(); in AnnotatedClass()
229 return _typeFactory.constructType(type, _bindings); in resolveType()
/external/llvm-project/lldb/source/Host/windows/
DEditLineWin.cpp35 static std::vector<el_binding *> _bindings; variable
88 for (int i = 0; i < _bindings.size(); i++) { in runBind()
89 el_binding *bind = _bindings[i]; in runBind()
260 _bindings.push_back(binding); in el_set()
269 for (auto bind : _bindings) { in el_set()