Home
last modified time | relevance | path

Searched refs:expectedType (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/core/java/android/transition/
DTransitionInflater.java195 private Object createCustom(AttributeSet attrs, Class expectedType, String tag) { in createCustom() argument
207 .asSubclass(expectedType); in createCustom()
217 throw new InflateException("Could not instantiate " + expectedType + " class " + in createCustom()
220 throw new InflateException("Could not instantiate " + expectedType + " class " + in createCustom()
223 throw new InflateException("Could not instantiate " + expectedType + " class " + in createCustom()
226 throw new InflateException("Could not instantiate " + expectedType + " class " + in createCustom()
229 throw new InflateException("Could not instantiate " + expectedType + " class " + in createCustom()
/frameworks/base/media/java/android/media/
DMetadata.java535 private void checkType(final int key, final int expectedType) { in checkType() argument
541 if (type != expectedType) { in checkType()
542 throw new IllegalStateException("Wrong type " + expectedType + " but got " + type); in checkType()
/frameworks/av/include/camera/
DCameraMetadata.h216 status_t checkType(uint32_t tag, uint8_t expectedType);
/frameworks/av/camera/
DCameraMetadata.cpp171 status_t CameraMetadata::checkType(uint32_t tag, uint8_t expectedType) { in checkType() argument
177 if ( CC_UNLIKELY(tagType != expectedType) ) { in checkType()
182 camera_metadata_type_names[expectedType]); in checkType()