Searched refs:_mapperFeatures (Results 1 – 4 of 4) sorted by relevance
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ |
D | SerializationConfig.java | 366 : new SerializationConfig(this, _mapperFeatures, newSerFeatures, in with() 382 : new SerializationConfig(this, _mapperFeatures, newSerFeatures, in with() 398 : new SerializationConfig(this, _mapperFeatures, newSerFeatures, in withFeatures() 411 : new SerializationConfig(this, _mapperFeatures, newSerFeatures, in without() 427 : new SerializationConfig(this, _mapperFeatures, newSerFeatures, in without() 443 : new SerializationConfig(this, _mapperFeatures, newSerFeatures, in withoutFeatures() 464 new SerializationConfig(this, _mapperFeatures, _serFeatures, in with() 485 new SerializationConfig(this, _mapperFeatures, _serFeatures, in withFeatures() 501 new SerializationConfig(this, _mapperFeatures, _serFeatures, in without() 522 new SerializationConfig(this, _mapperFeatures, _serFeatures, in withoutFeatures() [all …]
|
D | DeserializationConfig.java | 361 new DeserializationConfig(this, _mapperFeatures, newDeserFeatures, in with() 378 new DeserializationConfig(this, _mapperFeatures, newDeserFeatures, in with() 394 new DeserializationConfig(this, _mapperFeatures, newDeserFeatures, in withFeatures() 407 new DeserializationConfig(this, _mapperFeatures, newDeserFeatures, in without() 424 new DeserializationConfig(this, _mapperFeatures, newDeserFeatures, in without() 440 new DeserializationConfig(this, _mapperFeatures, newDeserFeatures, in withoutFeatures() 462 new DeserializationConfig(this, _mapperFeatures, _deserFeatures, in with() 483 new DeserializationConfig(this, _mapperFeatures, _deserFeatures, in withFeatures() 499 new DeserializationConfig(this, _mapperFeatures, _deserFeatures, in without() 520 new DeserializationConfig(this, _mapperFeatures, _deserFeatures, in withoutFeatures() [all …]
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/cfg/ |
D | MapperConfig.java | 58 protected final int _mapperFeatures; field in MapperConfig 74 _mapperFeatures = mapperFeatures; in MapperConfig() 80 _mapperFeatures = mapperFeatures; in MapperConfig() 86 _mapperFeatures = src._mapperFeatures; in MapperConfig() 92 _mapperFeatures = src._mapperFeatures; in MapperConfig() 144 return f.enabledIn(_mapperFeatures); in isEnabled() 154 return (_mapperFeatures & featureMask) == featureMask; in hasMapperFeatures()
|
D | MapperConfigBase.java | 292 int newMapperFlags = _mapperFeatures; in with() 296 if (newMapperFlags == _mapperFeatures) { in with() 310 int newMapperFlags = _mapperFeatures; in without() 314 if (newMapperFlags == _mapperFeatures) { in without() 326 newMapperFlags = _mapperFeatures | feature.getMask(); in with() 328 newMapperFlags = _mapperFeatures & ~feature.getMask(); in with() 330 if (newMapperFlags == _mapperFeatures) { in with() 682 if ((_mapperFeatures & AUTO_DETECT_MASK) != AUTO_DETECT_MASK) { in getDefaultVisibilityChecker()
|