Home
last modified time | relevance | path

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

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/impl/
DFilteredBeanPropertyWriter.java67 Class<?> activeView = prov.getActiveView(); in serializeAsField() local
68 if (activeView == null || _view.isAssignableFrom(activeView)) { in serializeAsField()
79 Class<?> activeView = prov.getActiveView(); in serializeAsElement() local
80 if (activeView == null || _view.isAssignableFrom(activeView)) { in serializeAsElement()
91 Class<?> activeView = provider.getActiveView(); in depositSchemaProperty() local
92 if (activeView == null || _view.isAssignableFrom(activeView)) { in depositSchemaProperty()
160 private final boolean _inView(Class<?> activeView) in _inView() argument
162 if (activeView == null) { in _inView()
167 if (_views[i].isAssignableFrom(activeView)) { in _inView()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/util/
DViewMatcher.java13 public boolean isVisibleForView(Class<?> activeView) { return false; } in isVisibleForView() argument
42 public boolean isVisibleForView(Class<?> activeView) { in isVisibleForView() argument
43 return (activeView == _view) || _view.isAssignableFrom(activeView); in isVisibleForView()
57 public boolean isVisibleForView(Class<?> activeView) in isVisibleForView() argument
61 if ((activeView == view) || view.isAssignableFrom(activeView)) { in isVisibleForView()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/
DBuilderBasedDeserializer.java367 final Class<?> activeView = _needViewProcesing ? ctxt.getActiveView() : null; in _deserializeUsingPropertyBased() local
379 if ((activeView != null) && !creatorProp.visibleInView(activeView)) { in _deserializeUsingPropertyBased()
548 Object bean, Class<?> activeView) in deserializeWithView() argument
558 if (!prop.visibleInView(activeView)) { in deserializeWithView()
602 final Class<?> activeView = _needViewProcesing ? ctxt.getActiveView() : null; in deserializeWithUnwrapped() local
608 if (activeView != null && !prop.visibleInView(activeView)) { in deserializeWithUnwrapped()
714 final Class<?> activeView = _needViewProcesing ? ctxt.getActiveView() : null; in deserializeWithUnwrapped() local
720 if (activeView != null && !prop.visibleInView(activeView)) { in deserializeWithUnwrapped()
767 final Class<?> activeView = _needViewProcesing ? ctxt.getActiveView() : null; in deserializeWithExternalTypeId() local
779 if (activeView != null && !prop.visibleInView(activeView)) { in deserializeWithExternalTypeId()
DBeanDeserializer.java430 final Class<?> activeView = _needViewProcesing ? ctxt.getActiveView() : null; in _deserializeUsingPropertyBased() local
446 if ((activeView != null) && !creatorProp.visibleInView(activeView)) { in _deserializeUsingPropertyBased()
651 Object bean, Class<?> activeView) in deserializeWithView() argument
661 if (!prop.visibleInView(activeView)) { in deserializeWithView()
708 final Class<?> activeView = _needViewProcesing ? ctxt.getActiveView() : null; in deserializeWithUnwrapped() local
715 if ((activeView != null) && !prop.visibleInView(activeView)) { in deserializeWithUnwrapped()
767 final Class<?> activeView = _needViewProcesing ? ctxt.getActiveView() : null; in deserializeWithUnwrapped() local
773 if (activeView != null && !prop.visibleInView(activeView)) { in deserializeWithUnwrapped()
951 final Class<?> activeView = _needViewProcesing ? ctxt.getActiveView() : null; in deserializeWithExternalTypeId() local
963 if (activeView != null && !prop.visibleInView(activeView)) { in deserializeWithExternalTypeId()
DSettableBeanProperty.java426 public boolean visibleInView(Class<?> activeView) { in visibleInView() argument
427 return (_viewMatcher == null) || _viewMatcher.isVisibleForView(activeView); in visibleInView()
731 … public boolean visibleInView(Class<?> activeView) { return delegate.visibleInView(activeView); } in visibleInView() argument
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/impl/
DBeanAsArrayBuilderDeserializer.java218 Class<?> activeView = _needViewProcesing ? ctxt.getActiveView() : null; in _deserializeNonVanilla() local
232 if (activeView == null || prop.visibleInView(activeView)) { in _deserializeNonVanilla()
276 final Class<?> activeView = _needViewProcesing ? ctxt.getActiveView() : null; in _deserializeUsingPropertyBased() local
286 if ((activeView != null) && !prop.visibleInView(activeView)) { in _deserializeUsingPropertyBased()
DBeanAsArrayDeserializer.java234 Class<?> activeView = _needViewProcesing ? ctxt.getActiveView() : null; in _deserializeNonVanilla() local
249 if (activeView == null || prop.visibleInView(activeView)) { in _deserializeNonVanilla()
294 final Class<?> activeView = _needViewProcesing ? ctxt.getActiveView() : null; in _deserializeUsingPropertyBased() local
302 if ((activeView != null) && !prop.visibleInView(activeView)) { in _deserializeUsingPropertyBased()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DObjectReader.java829 public ObjectReader withView(Class<?> activeView) { in withView() argument
830 return _with(_config.withView(activeView)); in withView()