Home
last modified time | relevance | path

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

/external/easymock/src/org/easymock/
DEasyMock.java214 reportMatcher(Any.ANY); in anyBoolean()
224 reportMatcher(Any.ANY); in anyByte()
234 reportMatcher(Any.ANY); in anyChar()
244 reportMatcher(Any.ANY); in anyInt()
254 reportMatcher(Any.ANY); in anyLong()
264 reportMatcher(Any.ANY); in anyFloat()
274 reportMatcher(Any.ANY); in anyDouble()
284 reportMatcher(Any.ANY); in anyShort()
295 reportMatcher(Any.ANY); in anyObject()
309 reportMatcher(new GreaterOrEqual<T>(value)); in geq()
[all …]
/external/mockito/src/main/java/org/mockito/
DArgumentMatchers.java165 reportMatcher(Any.ANY); in anyObject()
207 reportMatcher(new InstanceOf.VarArgAware(type, "<any " + type.getCanonicalName() + ">")); in any()
222 reportMatcher(new InstanceOf(type)); in isA()
282 reportMatcher(new InstanceOf(Boolean.class, "<any boolean>")); in anyBoolean()
305 reportMatcher(new InstanceOf(Byte.class, "<any byte>")); in anyByte()
328 reportMatcher(new InstanceOf(Character.class, "<any char>")); in anyChar()
351 reportMatcher(new InstanceOf(Integer.class, "<any integer>")); in anyInt()
374 reportMatcher(new InstanceOf(Long.class, "<any long>")); in anyLong()
397 reportMatcher(new InstanceOf(Float.class, "<any float>")); in anyFloat()
420 reportMatcher(new InstanceOf(Double.class, "<any double>")); in anyDouble()
[all …]
DAdditionalMatchers.java54 reportMatcher(new GreaterOrEqual<T>(value)); in geq()
68 reportMatcher(new GreaterOrEqual<Byte>(value)); in geq()
82 reportMatcher(new GreaterOrEqual<Double>(value)); in geq()
96 reportMatcher(new GreaterOrEqual<Float>(value)); in geq()
110 reportMatcher(new GreaterOrEqual<Integer>(value)); in geq()
124 reportMatcher(new GreaterOrEqual<Long>(value)); in geq()
138 reportMatcher(new GreaterOrEqual<Short>(value)); in geq()
152 reportMatcher(new LessOrEqual<T>(value)); in leq()
166 reportMatcher(new LessOrEqual<Byte>(value)); in leq()
180 reportMatcher(new LessOrEqual<Double>(value)); in leq()
[all …]
/external/mockito/src/main/java/org/mockito/hamcrest/
DMockitoHamcrest.java61 reportMatcher(matcher); in argThat()
75 reportMatcher(matcher); in charThat()
89 reportMatcher(matcher); in booleanThat()
103 reportMatcher(matcher); in byteThat()
117 reportMatcher(matcher); in shortThat()
131 reportMatcher(matcher); in intThat()
145 reportMatcher(matcher); in longThat()
159 reportMatcher(matcher); in floatThat()
173 reportMatcher(matcher); in doubleThat()
177 private static <T> void reportMatcher(Matcher<T> matcher) { in reportMatcher() method in MockitoHamcrest
[all …]
/external/mockito/src/main/java/org/mockito/internal/progress/
DArgumentMatcherStorageImpl.java27 public void reportMatcher(ArgumentMatcher<?> matcher) { in reportMatcher() method in ArgumentMatcherStorageImpl
46 reportMatcher(new And(m1, m2)); in reportAnd()
55 reportMatcher(new Or(m1, m2)); in reportOr()
63 reportMatcher(new Not(m)); in reportNot()
DArgumentMatcherStorage.java15 void reportMatcher(ArgumentMatcher<?> matcher); in reportMatcher() method
/external/easymock/src/org/easymock/internal/
DLastControl.java47 public static void reportMatcher(IArgumentMatcher matcher) { in reportMatcher() method in LastControl
/external/protobuf/java/core/src/test/java/com/google/protobuf/
DServiceTest.java283 EasyMock.reportMatcher(new WrapsCallback(callback)); in wrapsCallback()