/external/chromium_org/third_party/WebKit/Source/core/fetch/ |
ImageResourceClient.h | 36 static ResourceClientType expectedType() { return ImageType; } 37 virtual ResourceClientType resourceClientType() const { return expectedType(); }
|
ResourceClient.h | 48 static ResourceClientType expectedType() { return BaseResourceType; } 49 virtual ResourceClientType resourceClientType() const { return expectedType(); }
|
StyleSheetResourceClient.h | 39 static ResourceClientType expectedType() { return StyleSheetType; } 40 virtual ResourceClientType resourceClientType() const { return expectedType(); }
|
ResourceClientWalker.h | 54 ASSERT(T::expectedType() == ResourceClient::expectedType() || next->resourceClientType() == T::expectedType());
|
DocumentResource.h | 61 static ResourceClientType expectedType() { return DocumentType; } 62 virtual ResourceClientType resourceClientType() const { return expectedType(); }
|
FontResource.h | 83 static ResourceClientType expectedType() { return FontType; } 84 virtual ResourceClientType resourceClientType() const { return expectedType(); }
|
RawResource.h | 92 static ResourceClientType expectedType() { return RawResourceType; } 93 virtual ResourceClientType resourceClientType() const { return expectedType(); }
|
XSLStyleSheetResource.cpp | 53 ASSERT(c->resourceClientType() == StyleSheetResourceClient::expectedType());
|
CSSStyleSheetResource.cpp | 60 ASSERT(c->resourceClientType() == StyleSheetResourceClient::expectedType());
|
FontResource.cpp | 66 ASSERT(c->resourceClientType() == FontResourceClient::expectedType());
|
/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/chromium_org/third_party/angle/tests/preprocessor_tests/ |
char_test.cpp | 52 int expectedType = pp::Token::LAST; 63 expectedType = pp::Token::IDENTIFIER; 68 expectedType = pp::Token::CONST_INT; 73 expectedType = str[0]; 90 EXPECT_EQ(expectedType, token.type);
|
/external/chromium_org/third_party/icu/source/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());
|
/external/icu4c/test/intltest/ |
dcfmtest.h | 40 const UnicodeString &expectedType,
|
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);
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/util/ |
TypedUriMatcherImplTest.java | 91 private void assertUriTypeMatch(UriType expectedType, String uri) { 92 assertEquals(expectedType, mTypedUriMatcherImpl.match(Uri.parse(uri)));
|
/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
GenericExceptionsTest.java | 91 private <T> T getOnlyValue(Object[] array, Class<T> expectedType) { 92 assertEquals("Expected a " + expectedType.getName() + " but was " + Arrays.toString(array), 94 assertTrue("Expected a " + expectedType.getName() + " but was " + array[0], 95 expectedType.isInstance(array[0])); 96 return expectedType.cast(array[0]);
|
/frameworks/testing/androidtestlib/src/com/android/test/runner/junit4/ |
AndroidJUnit4ClassRunner.java | 91 Class<?> expectedType) { 97 if (!expectedType.isAssignableFrom(instrField.getType())) { 101 getTestClass().getName(), expectedType.getName())));
|
/cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/testtype/ |
TestPackageXmlParserTest.java | 142 private void assertTestType(String expectedType, String xml) throws ParseException { 146 assertEquals(expectedType, def.getTestType());
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
TraceEventDispatcher.cpp | 147 const TraceEvent::TraceValueUnion& TraceEventDispatcher::TraceEvent::parameter(const char* name, unsigned char expectedType) const 151 if (index == kNotFound || m_argumentTypes[index] != expectedType) {
|
/frameworks/base/media/java/android/media/ |
Metadata.java | 535 private void checkType(final int key, final int expectedType) { 541 if (type != expectedType) { 542 throw new IllegalStateException("Wrong type " + expectedType + " but got " + type);
|
/cts/tests/SignatureTest/tests/src/android/tests/sigtest/tests/ |
JDiffClassDescriptionTest.java | 37 private FAILURE_TYPE expectedType; 40 public ExpectFailure(FAILURE_TYPE expectedType) { 41 this.expectedType = expectedType; 45 if (type == expectedType) {
|
/external/mockito/src/org/mockito/exceptions/ |
Reporter.java | 476 public void wrongTypeOfReturnValue(String expectedType, String actualType, String methodName) { 479 methodName + "() should return " + expectedType, [all...] |
/frameworks/av/include/camera/ |
CameraMetadata.h | 216 status_t checkType(uint32_t tag, uint8_t expectedType);
|