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

/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/av/camera/
H A DCameraMetadata.cpp171 status_t CameraMetadata::checkType(uint32_t tag, uint8_t expectedType) { argument
177 if ( CC_UNLIKELY(tagType != expectedType) ) {
182 camera_metadata_type_names[expectedType]);
/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);

Completed in 477 milliseconds