/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/ |
D | MapLikeType.java | 27 protected final JavaType _valueType; field in MapLikeType 42 _valueType = valueT; in MapLikeType() 51 _valueType = valueT; in MapLikeType() 94 _superInterfaces, _keyType, _valueType, _valueHandler, in _narrow() 106 _superInterfaces, keyType, _valueType, _valueHandler, in withKeyType() 112 if (_valueType == contentType) { in withContentType() 123 _superInterfaces, _keyType, _valueType, _valueHandler, h, in withTypeHandler() 130 _superInterfaces, _keyType, _valueType.withTypeHandler(h), in withContentTypeHandler() 137 _superInterfaces, _keyType, _valueType, h, _typeHandler, in withValueHandler() 144 _superInterfaces, _keyType, _valueType.withValueHandler(h), in withContentValueHandler() [all …]
|
D | MapType.java | 64 _superClass, _superInterfaces, _keyType, _valueType, in _narrow() 71 _superClass, _superInterfaces, _keyType, _valueType, _valueHandler, h, _asStatic); in withTypeHandler() 78 _superClass, _superInterfaces, _keyType, _valueType.withTypeHandler(h), in withContentTypeHandler() 85 _superClass, _superInterfaces, _keyType, _valueType, h, _typeHandler, _asStatic); in withValueHandler() 91 _superClass, _superInterfaces, _keyType, _valueType.withValueHandler(h), in withContentValueHandler() 101 … _superClass, _superInterfaces, _keyType.withStaticTyping(), _valueType.withStaticTyping(), in withStaticTyping() 107 if (_valueType == contentType) { in withContentType() 120 keyType, _valueType, _valueHandler, _typeHandler, _asStatic); in withKeyType() 127 superClass, superInterfaces, _keyType, _valueType, in refine() 141 _superClass, _superInterfaces, _keyType.withTypeHandler(h), _valueType, in withKeyTypeHandler() [all …]
|
/external/flatbuffers/dart/lib/src/ |
D | reference.dart | 15 final ValueType _valueType; 22 _valueType = valueType ?? ValueTypeUtils.fromInt(packedType >> 2); 39 bool get isNull => _valueType == ValueType.Null; 43 ValueTypeUtils.isNumber(_valueType) || 44 ValueTypeUtils.isIndirectNumber(_valueType); 48 _valueType == ValueType.Float || _valueType == ValueType.IndirectFloat; 55 _valueType == ValueType.String || _valueType == ValueType.Key; 58 bool get isBool => _valueType == ValueType.Bool; 61 bool get isBlob => _valueType == ValueType.Blob; 64 bool get isVector => ValueTypeUtils.isAVector(_valueType); [all …]
|
/external/jackson-databind/attic/ |
D | MappingIteratorDeserializer.java | 15 protected final JavaType _valueType; field in MappingIteratorDeserializer 25 _valueType = valueType; in MappingIteratorDeserializer() 33 JsonDeserializer<Object> deser = ctxt.findContextualValueDeserializer(_valueType, prop); in createContextual() 35 : new MappingIteratorDeserializer(_valueType, deser); in createContextual() 43 MappingIterator<Object> mit = new MappingIterator<Object>(_valueType, p, ctxt, in deserialize()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/impl/ |
D | MapEntrySerializer.java | 46 protected final JavaType _entryType, _keyType, _valueType; field in MapEntrySerializer 114 _valueType = valueType; in MapEntrySerializer() 141 _valueType = src._valueType; in MapEntrySerializer() 211 if (_valueTypeIsStatic && !_valueType.isJavaLangObject()) { in createContextual() 212 ser = provider.findContentValueSerializer(_valueType, property); in createContextual() 233 valueToSuppress = BeanUtil.getDefaultValue(_valueType); in createContextual() 243 valueToSuppress = _valueType.isReferenceType() ? MARKER_FOR_EMPTY : null; in createContextual() 287 return _valueType; in getContentType() 385 if (_valueType.hasGenericTypes()) { in serializeDynamic() 387 provider.constructSpecializedType(_valueType, cc), provider); in serializeDynamic()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ |
D | ObjectReader.java | 96 protected final JavaType _valueType; field in ObjectReader 185 _valueType = valueType; in ObjectReader() 210 _valueType = valueType; in ObjectReader() 231 _valueType = base._valueType; in ObjectReader() 251 _valueType = base._valueType; in ObjectReader() 266 _valueType = base._valueType; in ObjectReader() 333 return new MappingIterator<T>(_valueType, p, ctxt, in _newIterator() 357 ctxt.reportInputMismatch(_valueType, in _initForReading() 617 _valueType, _rootDeserializer, _valueToUpdate, in with() 704 return _new(this, _config, _valueType, _rootDeserializer, _valueToUpdate, in with() [all …]
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/std/ |
D | MapSerializer.java | 74 protected final JavaType _valueType; field in MapSerializer 189 _valueType = valueType; in MapSerializer() 233 _valueType = src._valueType; in MapSerializer() 270 _valueType = src._valueType; in MapSerializer() 293 _valueType = src._valueType; in MapSerializer() 508 if (_valueTypeIsStatic && !_valueType.isJavaLangObject()) { in createContextual() 509 ser = provider.findContentValueSerializer(_valueType, property); in createContextual() 570 valueToSuppress = BeanUtil.getDefaultValue(_valueType); in createContextual() 580 valueToSuppress = _valueType.isReferenceType() ? MARKER_FOR_EMPTY : null; in createContextual() 620 return _valueType; in getContentType() [all …]
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/ |
D | ValueInstantiator.java | 469 protected final Class<?> _valueType; field in ValueInstantiator.Base 472 _valueType = type; in Base() 476 _valueType = type.getRawClass(); in Base() 481 return _valueType.getName(); in getValueTypeDesc() 486 return _valueType; in getValueClass()
|
/external/flatbuffers/ts/flexbuffers/ |
D | reference.ts | 111 const _valueType = typedVectorElementType(this.valueType); constant 112 _packedType = packedType(_valueType, BitWidth.WIDTH8); 114 const _valueType = fixedTypedVectorElementType(this.valueType); constant 115 _packedType = packedType(_valueType, BitWidth.WIDTH8);
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/std/ |
D | StdDeserializer.java | 68 final protected JavaType _valueType; field in StdDeserializer 72 _valueType = null; in StdDeserializer() 78 _valueType = valueType; in StdDeserializer() 89 _valueType = src._valueType; in StdDeserializer() 116 public JavaType getValueType() { return _valueType; } in getValueType() 132 if (_valueType != null) { in getValueType() 133 return _valueType; in getValueType()
|
D | MapDeserializer.java | 859 private final Class<?> _valueType; field in MapDeserializer.MapReferringAccumulator 867 _valueType = valueType; in MapReferringAccumulator() 883 MapReferring id = new MapReferring(this, reference, _valueType, key); in handleUnresolvedReference()
|