Searched refs:IntMatcher (Results 1 – 4 of 4) sorted by relevance
59 private class IntMatcher extends BaseMatcher<Integer> { class in HamcrestMatchersTest68 when(mock.intArgumentReturningInt(argThat(new IntMatcher()))).thenReturn(5); in supports_primitive_matchers()
22 private class IntMatcher extends BaseMatcher<Integer> { class in MatcherGenericTypeExtractorTest98 assertEquals(Integer.class, genericTypeOfMatcher(IntMatcher.class)); in findsGenericType()
115 struct IntMatcher final : public ValueMatcher<T, kOpcode> {116 explicit IntMatcher(Node* node) : ValueMatcher<T, kOpcode>(node) {} in IntMatcher() function138 typedef IntMatcher<int32_t, IrOpcode::kInt32Constant> Int32Matcher;139 typedef IntMatcher<uint32_t, IrOpcode::kInt32Constant> Uint32Matcher;140 typedef IntMatcher<int64_t, IrOpcode::kInt64Constant> Int64Matcher;141 typedef IntMatcher<uint64_t, IrOpcode::kInt64Constant> Uint64Matcher;
197 HamcrestArgumentMatcher argumentMatcher = new HamcrestArgumentMatcher(new IntMatcher()); in shouldMatchAnyVarargEvenIfMatcherIsWrappedInHamcrestMatcher()207 class IntMatcher extends BaseMatcher<Integer> implements VarargMatcher { class in MatcherApplicationStrategyTest