Searched defs:expectedType (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/tests/net/java/android/net/
H A DMacAddressTest.java39 int expectedType; field in class:MacAddressTest.AddrTypeTestCase
41 static AddrTypeTestCase of(int expectedType, int... addr) { argument
43 t.expectedType = expectedType;
66 Arrays.toString(t.addr), t.expectedType, got);
67 assertEquals(msg, t.expectedType, got);
/frameworks/base/core/java/android/transition/
H A DTransitionInflater.java199 private Object createCustom(AttributeSet attrs, Class expectedType, String tag) { argument
211 .asSubclass(expectedType);
221 throw new InflateException("Could not instantiate " + expectedType + " class " +
224 throw new InflateException("Could not instantiate " + expectedType + " class " +
227 throw new InflateException("Could not instantiate " + expectedType + " class " +
230 throw new InflateException("Could not instantiate " + expectedType + " class " +
233 throw new InflateException("Could not instantiate " + expectedType + " class " +
/frameworks/support/transition/src/main/java/androidx/transition/
H A DTransitionInflater.java192 private Object createCustom(AttributeSet attrs, Class expectedType, String tag) { argument
205 .asSubclass(expectedType);
216 throw new InflateException("Could not instantiate " + expectedType + " class "
/frameworks/base/services/tests/servicestests/src/com/android/server/devicepolicy/
H A DSystemUpdatePolicyTest.java396 private void assertInstallationOption(int expectedType, long expectedTime, long now, argument
398 assertEquals(expectedType, p.getInstallationOptionAt(now).getType());
/frameworks/base/media/java/android/media/
H A DMetadata.java543 private void checkType(final int key, final int expectedType) { argument
549 if (type != expectedType) {
550 throw new IllegalStateException("Wrong type " + expectedType + " but got " + type);
/frameworks/av/camera/
H A DCameraMetadata.cpp172 status_t CameraMetadata::checkType(uint32_t tag, uint8_t expectedType) { argument
178 if ( CC_UNLIKELY(tagType != expectedType) ) {
183 camera_metadata_type_names[expectedType]);

Completed in 127 milliseconds