HomeSort by relevance Sort by last modified time
    Searched refs:expectedType (Results 1 - 25 of 28) sorted by null

1 2

  /external/junit/src/org/junit/internal/matchers/
TypeSafeMatcher.java 15 private Class<?> expectedType;
24 expectedType = findExpectedType(getClass());
45 protected TypeSafeMatcher(Class<T> expectedType) {
46 this.expectedType = expectedType;
57 && expectedType.isInstance(item)
  /external/icu4c/test/intltest/
dcfmtest.h 40 const UnicodeString &expectedType,
dcfmtest.cpp 302 const UnicodeString &expectedType,
332 expectedType.extract(0, 1, expectedTypeC, 2, US_INV);
340 lineNum, InvariantStringPiece(expectedType).data());
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/util/
TypedUriMatcherImplTest.java 94 private void assertUriTypeMatch(UriType expectedType, String uri) {
95 assertEquals(expectedType, mTypedUriMatcherImpl.match(Uri.parse(uri)));