| /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/ | 
| D | TypeSafeDiagnosingMatcher.java | 25     protected abstract boolean matchesSafely(T item, Description mismatchDescription);  in matchesSafely()62     public final void describeMismatch(Object item, Description mismatchDescription) {  in describeMismatch()
 66         matchesSafely((T) item, mismatchDescription);  in describeMismatch()  local
 
 | 
| D | DiagnosingMatcher.java | 16     public final void describeMismatch(Object item, Description mismatchDescription) {  in describeMismatch()20     protected abstract boolean matches(Object item, Description mismatchDescription);  in matches()
 
 | 
| D | Matcher.java | 48     void describeMismatch(Object item, Description mismatchDescription);  in describeMismatch()
 | 
| /external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/collection/ | 
| D | IsIterableContainingInRelativeOrder.java | 21 … protected boolean matchesSafely(Iterable<? extends E> iterable, Description mismatchDescription) {  in matchesSafely()33         private final Description mismatchDescription;  field in IsIterableContainingInRelativeOrder.MatchSeriesInRelativeOrder
 37 …ic MatchSeriesInRelativeOrder(List<Matcher<? super F>> matchers, Description mismatchDescription) {  in MatchSeriesInRelativeOrder()
 
 | 
| D | IsIterableContainingInAnyOrder.java | 22     protected boolean matchesSafely(Iterable<? extends T> items, Description mismatchDescription) {  in matchesSafely()42       private final Description mismatchDescription;  field in IsIterableContainingInAnyOrder.Matching
 44       public Matching(Collection<Matcher<? super S>> matchers, Description mismatchDescription) {  in Matching()
 
 | 
| D | IsIterableContainingInOrder.java | 22 … protected boolean matchesSafely(Iterable<? extends E> iterable, Description mismatchDescription) {  in matchesSafely()40         private final Description mismatchDescription;  field in IsIterableContainingInOrder.MatchSeries
 43         public MatchSeries(List<Matcher<? super F>> matchers, Description mismatchDescription) {  in MatchSeries()
 
 | 
| D | IsArrayContaining.java | 32     public void describeMismatchSafely(T[] item, Description mismatchDescription) {  in describeMismatchSafely()33         super.describeMismatch(Arrays.asList(item), mismatchDescription);  in describeMismatchSafely()  local
 
 | 
| D | IsArrayContainingInAnyOrder.java | 29     public void describeMismatchSafely(E[] item, Description mismatchDescription) {  in describeMismatchSafely()30       iterableMatcher.describeMismatch(Arrays.asList(item), mismatchDescription);  in describeMismatchSafely()  local
 
 | 
| D | IsArrayContainingInOrder.java | 30     public void describeMismatchSafely(E[] item, Description mismatchDescription) {  in describeMismatchSafely()31       iterableMatcher.describeMismatch(asList(item), mismatchDescription);  in describeMismatchSafely()  local
 
 | 
| D | IsEmptyIterable.java | 17 …  public void describeMismatchSafely(Iterable<? extends E> iter, Description mismatchDescription) {  in describeMismatchSafely()
 | 
| D | IsEmptyCollection.java | 20 …public void describeMismatchSafely(Collection<? extends E> item, Description mismatchDescription) {  in describeMismatchSafely()
 | 
| D | IsArray.java | 32     public void describeMismatchSafely(T[] actual, Description mismatchDescription) {  in describeMismatchSafely()
 | 
| /external/mockito/src/test/java/org/mockito/internal/hamcrest/ | 
| D | MatcherGenericTypeExtractorTest.java | 59         public void describeMismatch(Object item, Description mismatchDescription) {}  in describeMismatch()68         public void describeMismatch(Object item, Description mismatchDescription) {}  in describeMismatch()
 78         public void describeMismatch(Object item, Description mismatchDescription) {}  in describeMismatch()
 89         public void describeMismatch(Object item, Description mismatchDescription) {}  in describeMismatch()
 
 | 
| /external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/number/ | 
| D | IsNaN.java | 21     public void describeMismatchSafely(Double item, Description mismatchDescription) {  in describeMismatchSafely()
 | 
| D | BigDecimalCloseTo.java | 26   public void describeMismatchSafely(BigDecimal item, Description mismatchDescription) {  in describeMismatchSafely()
 | 
| D | IsCloseTo.java | 29     public void describeMismatchSafely(Double item, Description mismatchDescription) {  in describeMismatchSafely()
 | 
| /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/ | 
| D | Every.java | 15 …  public boolean matchesSafely(Iterable<? extends T> collection, Description mismatchDescription) {  in matchesSafely()
 | 
| D | Is.java | 35     public void describeMismatch(Object item, Description mismatchDescription) {  in describeMismatch()
 | 
| D | SubstringMatcher.java | 26     public void describeMismatchSafely(String item, Description mismatchDescription) {  in describeMismatchSafely()
 | 
| /external/hamcrest/hamcrest-core/src/test/java/org/hamcrest/ | 
| D | TypeSafeMatcherTest.java | 18         public void describeMismatchSafely(String item, Description mismatchDescription) {  in describeMismatchSafely()
 | 
| /external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/text/ | 
| D | IsEqualIgnoringCase.java | 30     public void describeMismatchSafely(String item, Description mismatchDescription) {  in describeMismatchSafely()
 | 
| D | StringContainsInOrder.java | 31     public void describeMismatchSafely(String item, Description mismatchDescription) {  in describeMismatchSafely()
 | 
| D | IsEqualIgnoringWhiteSpace.java | 32     public void describeMismatchSafely(String item, Description mismatchDescription) {  in describeMismatchSafely()
 | 
| /external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/object/ | 
| D | IsCompatibleType.java | 20     public void describeMismatchSafely(Class<?> cls, Description mismatchDescription) {  in describeMismatchSafely()
 | 
| D | IsEventFrom.java | 23     public boolean matchesSafely(EventObject item, Description mismatchDescription) {  in matchesSafely()
 |