Home
last modified time | relevance | path

Searched refs:shouldIgnore (Results 1 – 19 of 19) sorted by relevance

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/util/
DIgnorePropertiesUtil.java16 …public static boolean shouldIgnore(Object value, Collection<String> toIgnore, Collection<String> t… in shouldIgnore() method in IgnorePropertiesUtil
105 public boolean shouldIgnore(Object propertyName) { in shouldIgnore() method in IgnorePropertiesUtil.Checker
/external/robolectric-shadows/robolectric/src/main/java/org/robolectric/junit/rules/
DExpectedLogMessagesRule.java113 public void ignoreMissingLoggedTags(boolean shouldIgnore) {
114 shouldIgnoreMissingLoggedTags = shouldIgnore;
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/
DBuilderBasedDeserializer.java417 if (IgnorePropertiesUtil.shouldIgnore(propName, _ignorableProps, _includableProps)) { in _deserializeUsingPropertyBased()
620 if (IgnorePropertiesUtil.shouldIgnore(propName, _ignorableProps, _includableProps)) { in deserializeWithUnwrapped()
686 if (IgnorePropertiesUtil.shouldIgnore(propName, _ignorableProps, _includableProps)) { in deserializeUsingPropertyBasedWithUnwrapped()
731 if (IgnorePropertiesUtil.shouldIgnore(propName, _ignorableProps, _includableProps)) { in deserializeWithUnwrapped()
791 if (IgnorePropertiesUtil.shouldIgnore(propName, _ignorableProps, _includableProps)) { in deserializeWithExternalTypeId()
DBeanDeserializer.java497 if (IgnorePropertiesUtil.shouldIgnore(propName, _ignorableProps, _includableProps)) { in _deserializeUsingPropertyBased()
727 if (IgnorePropertiesUtil.shouldIgnore(propName, _ignorableProps, _includableProps)) { in deserializeWithUnwrapped()
784 if (IgnorePropertiesUtil.shouldIgnore(propName, _ignorableProps, _includableProps)) { in deserializeWithUnwrapped()
883 if (IgnorePropertiesUtil.shouldIgnore(propName, _ignorableProps, _includableProps)) { in deserializeUsingPropertyBasedWithUnwrapped()
975 if (IgnorePropertiesUtil.shouldIgnore(propName, _ignorableProps, _includableProps)) { in deserializeWithExternalTypeId()
1066 if (IgnorePropertiesUtil.shouldIgnore(propName, _ignorableProps, _includableProps)) { in deserializeUsingPropertyBasedWithExternalTypeId()
DBeanDeserializerBuilder.java357 return IgnorePropertiesUtil.shouldIgnore(name, _ignorableProps, _includableProps); in hasIgnorable()
DBeanDeserializerBase.java501 … if (IgnorePropertiesUtil.shouldIgnore(prop.getName(), _ignorableProps, _includableProps)) { in resolve()
1654 if (IgnorePropertiesUtil.shouldIgnore(propName, _ignorableProps, _includableProps)) { in handleUnknownVanilla()
1682 if (IgnorePropertiesUtil.shouldIgnore(propName, _ignorableProps, _includableProps)) { in handleUnknownProperty()
DBeanDeserializerFactory.java694 if (IgnorePropertiesUtil.shouldIgnore(name, ignored, included)) { in filterBeanProps()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/std/
DMapSerializer.java794 if ((_inclusionChecker != null) && _inclusionChecker.shouldIgnore(keyElem)) { in serializeFields()
836 if ((_inclusionChecker != null) && _inclusionChecker.shouldIgnore(keyElem)) { in serializeOptionalFields()
890 if ((_inclusionChecker != null) && _inclusionChecker.shouldIgnore(keyElem)) { in serializeFieldsUsing()
933 if ((_inclusionChecker != null) && _inclusionChecker.shouldIgnore(keyElem)) { in serializeFilteredFields()
995 if ((_inclusionChecker != null) && _inclusionChecker.shouldIgnore(keyElem)) { in serializeTypedFields()
1053 if ((_inclusionChecker != null) && _inclusionChecker.shouldIgnore(keyElem)) { in serializeFilteredAnyProperties()
DBeanSerializerBase.java202 if (IgnorePropertiesUtil.shouldIgnore(bpw.getName(), toIgnore, toInclude)) { in BeanSerializerBase()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/std/
DMapDeserializer.java534 if ((_inclusionChecker != null) && _inclusionChecker.shouldIgnore(keyStr)) { in _readAndBind()
596 if ((_inclusionChecker != null) && _inclusionChecker.shouldIgnore(key)) { in _readAndBindStringKeyMap()
648 if ((_inclusionChecker != null) && _inclusionChecker.shouldIgnore(key)) { in _deserializeUsingCreator()
737 if ((_inclusionChecker != null) && _inclusionChecker.shouldIgnore(keyStr)) { in _readAndUpdate()
804 if ((_inclusionChecker != null) && _inclusionChecker.shouldIgnore(key)) { in _readAndUpdateStringKeyMap()
/external/robolectric-shadows/junit/src/main/java/org/robolectric/internal/
DSandboxTestRunner.java124 if (shouldIgnore(method)) {
346 protected boolean shouldIgnore(FrameworkMethod method) {
/external/llvm-project/clang-tools-extra/clangd/
DSelection.cpp169 bool shouldIgnore(const syntax::Token &Tok) { in shouldIgnore() function
240 if (shouldIgnore(Sel[I]) || PPIgnored[I]) in SelectionTester()
792 if (shouldIgnore(Tok)) in pointBounds()
/external/llvm-project/clang/lib/Analysis/
DThreadSafety.cpp1300 if (Entry->shouldIgnore()) in addLock()
1339 if (Cp.shouldIgnore()) in removeLock()
1376 if (!Cp.shouldIgnore()) in getMutexIDs()
1388 if (!Cp.shouldIgnore()) in getMutexIDs()
1639 } else if (Cp.shouldIgnore()) { in warnIfMutexNotHeld()
1697 } else if (Cp.shouldIgnore()) { in warnIfMutexHeld()
/external/clang/lib/Analysis/
DThreadSafety.cpp1186 if (Entry->shouldIgnore()) in addLock()
1226 if (Cp.shouldIgnore()) in removeLock()
1261 if (!Cp.shouldIgnore()) in getMutexIDs()
1273 if (!Cp.shouldIgnore()) in getMutexIDs()
1511 } else if (Cp.shouldIgnore()) { in warnIfMutexNotHeld()
1570 } else if (Cp.shouldIgnore()) { in warnIfMutexHeld()
/external/llvm-project/clang/include/clang/Analysis/Analyses/
DThreadSafetyCommon.h321 bool shouldIgnore() const { return CapExpr == nullptr; } in shouldIgnore() function
/external/clang/include/clang/Analysis/Analyses/
DThreadSafetyCommon.h305 bool shouldIgnore() const { return CapExpr == nullptr; } in shouldIgnore() function
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/impl/
DBeanPropertyMap.java412 if (!IgnorePropertiesUtil.shouldIgnore(prop.getName(), toExclude, toInclude)) { in withoutProperties()
/external/robolectric-shadows/robolectric/src/main/java/org/robolectric/
DRobolectricTestRunner.java329 @Override protected boolean shouldIgnore(FrameworkMethod method) { in shouldIgnore() method in RobolectricTestRunner
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/
DBeanSerializerFactory.java653 if (IgnorePropertiesUtil.shouldIgnore(it.next().getName(), ignored, included)) { in filterBeanProperties()