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

1 2 3 4 5 6 7 8 91011>>

  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
TypeSafeDiagnosingMatcher.java 19 private final Class<?> expectedType;
30 * @param expectedType The expectedType of the actual value.
32 protected TypeSafeDiagnosingMatcher(Class<?> expectedType) {
33 this.expectedType = expectedType;
42 this.expectedType = typeFinder.findExpectedType(getClass());
56 && expectedType.isInstance(item)
63 if (item == null || !expectedType.isInstance(item)) {
TypeSafeMatcher.java 16 final private Class<?> expectedType;
28 * @param expectedType The expectedType of the actual value.
30 protected TypeSafeMatcher(Class<?> expectedType) {
31 this.expectedType = expectedType;
40 this.expectedType = typeFinder.findExpectedType(getClass());
66 && expectedType.isInstance(item)
75 } else if (! expectedType.isInstance(item)) {
  /external/junit/src/main/java/org/junit/internal/matchers/
TypeSafeMatcher.java 18 private Class<?> expectedType;
27 expectedType = findExpectedType(getClass());
48 protected TypeSafeMatcher(Class<T> expectedType) {
49 this.expectedType = expectedType;
60 && expectedType.isInstance(item)
  /external/guice/core/src/com/google/inject/internal/
ProviderInternalFactory.java 49 Class<?> expectedType = dependency.getKey().getTypeLiteral().getRawType();
53 errors, context.getInjectorOptions(), expectedType);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
RegionTest.java 395 Region.RegionType expectedType = Region.RegionType.valueOf(data[2]);
400 if ( !expectedType.equals(r.getType())) {
401 errln("Unexpected region type for Region.getInstance(\"" + inputID + "\"); Expected: " + expectedType + " Got: " + r.getType());
426 Region.RegionType expectedType = Region.RegionType.valueOf(data[2]);
431 if ( !expectedType.equals(r.getType())) {
432 errln("Unexpected region type for Region.getInstance(" + inputID + "); Expected: " + expectedType + " Got: " + r.getType());
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
RegionTest.java 394 Region.RegionType expectedType = Region.RegionType.valueOf(data[2]);
399 if ( !expectedType.equals(r.getType())) {
400 errln("Unexpected region type for Region.getInstance(\"" + inputID + "\"); Expected: " + expectedType + " Got: " + r.getType());
425 Region.RegionType expectedType = Region.RegionType.valueOf(data[2]);
430 if ( !expectedType.equals(r.getType())) {
431 errln("Unexpected region type for Region.getInstance(" + inputID + "); Expected: " + expectedType + " Got: " + r.getType());
  /external/icu/icu4c/source/test/intltest/
regiontst.cpp 399 URegionType expectedType;
444 if ( type != data.expectedType) {
445 dataerrln("Unexpected region type for Region::getInstance(\"%s\"); Expected: %d Got: %d",data.inputID,data.expectedType,type);
454 URegionType expectedType;
488 if ( data.expectedType != type) {
489 dataerrln("Unexpected region type for Region.getInstance(%d)); Expected: %d Got: %d",data.inputID,data.expectedType,type);
    [all...]
  /cts/tests/signature/tests/src/android/signature/cts/tests/
JDiffClassDescriptionTest.java 43 private FailureType expectedType;
46 public ExpectFailure(FailureType expectedType) {
47 this.expectedType = expectedType;
52 if (type == expectedType) {
  /prebuilts/tools/common/m2/repository/com/google/auto/auto-common/0.3/
auto-common-0.3.jar 
  /external/deqp/framework/opengl/simplereference/
sglrReferenceContext.cpp 628 Texture::Type expectedType = Texture::TYPE_LAST;
631 case GL_TEXTURE_1D: expectedType = Texture::TYPE_1D; break;
632 case GL_TEXTURE_2D: expectedType = Texture::TYPE_2D; break;
633 case GL_TEXTURE_CUBE_MAP: expectedType = Texture::TYPE_CUBE_MAP; break;
634 case GL_TEXTURE_2D_ARRAY: expectedType = Texture::TYPE_2D_ARRAY; break;
635 case GL_TEXTURE_3D: expectedType = Texture::TYPE_3D; break;
636 case GL_TEXTURE_CUBE_MAP_ARRAY: expectedType = Texture::TYPE_CUBE_MAP_ARRAY; break;
640 RC_IF_ERROR(texObj->getType() != expectedType, GL_INVALID_OPERATION, RC_RET_VOID);
    [all...]
  /libcore/dalvik/src/main/java/dalvik/system/
EmulatedStackFrame.java 354 final Class<?> expectedType = (argumentIdx == RETURN_VALUE_IDX) ?
357 if (expectedType != type) {
359 ", expected: " + expectedType);
458 public void putNextReference(Object value, Class<?> expectedType) {
459 checkType(expectedType);
518 public <T> T nextReference(Class<T> expectedType) {
519 checkType(expectedType);
  /external/dagger2/lib/
auto-common-1.0-20151022.071545-39.jar 
  /prebuilts/tools/common/m2/repository/com/google/auto/auto-common/0.4/
auto-common-0.4.jar 
  /prebuilts/tools/common/m2/repository/com/google/auto/auto-common/0.6/
auto-common-0.6.jar 
  /prebuilts/tools/common/m2/repository/com/google/auto/auto-common/0.7/
auto-common-0.7.jar 
  /prebuilts/tools/common/fest/
fest-reflect-1.2.jar 
  /prebuilts/tools/common/intellij-core/171.2455.10/
picocontainer.jar 
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
TextViewBindingAdapterTest.java 59 int expectedType = InputType.TYPE_CLASS_NUMBER;
61 expectedType |= InputType.TYPE_NUMBER_FLAG_SIGNED;
64 expectedType |= InputType.TYPE_NUMBER_FLAG_DECIMAL;
66 return expectedType;
  /libcore/luni/src/test/java/libcore/java/lang/
ProcessBuilderTest.java 406 private static void assertRedirectFileAndType(File expectedFile, Type expectedType,
409 assertEquals(redirect.toString(), expectedType, redirect.type());
  /packages/apps/Contacts/tests/src/com/android/contacts/model/
RawContactDeltaListTests.java 192 final String expectedType = getTypeString(expected);
194 assertEquals("Unexpected type", expectedType, foundType);
  /external/clang/lib/CodeGen/
CGDecl.cpp 371 llvm::Type *expectedType = addr->getType();
403 llvm::ConstantExpr::getPointerBitCastOrAddrSpaceCast(var, expectedType);
    [all...]
  /frameworks/base/core/java/android/util/proto/
ProtoOutputStream.java     [all...]
  /libcore/luni/src/test/java/libcore/java/lang/invoke/
MethodHandlesTest.java 213 MethodType expectedType = MethodType.methodType(String.class,
216 assertEquals(expectedType, handle.type());
    [all...]
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-library/1.1/
hamcrest-library-1.1.jar 
  /prebuilts/devtools/tools/lib/
hamcrest-core-1.3.jar 

Completed in 705 milliseconds

1 2 3 4 5 6 7 8 91011>>