Home
last modified time | relevance | path

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

/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
DAndroidCameraCapabilities.java63 mSupportedFeatures.add(Feature.ZOOM); in AndroidCameraCapabilities()
66 mSupportedFeatures.add(Feature.VIDEO_SNAPSHOT); in AndroidCameraCapabilities()
69 mSupportedFeatures.add(Feature.AUTO_EXPOSURE_LOCK); in AndroidCameraCapabilities()
72 mSupportedFeatures.add(Feature.AUTO_WHITE_BALANCE_LOCK); in AndroidCameraCapabilities()
77 mSupportedFeatures.add(Feature.FOCUS_AREA); in AndroidCameraCapabilities()
81 mSupportedFeatures.add(Feature.METERING_AREA); in AndroidCameraCapabilities()
DCameraCapabilities.java56 protected final EnumSet<Feature> mSupportedFeatures = EnumSet.noneOf(Feature.class); field in CameraCapabilities
485 mSupportedFeatures.addAll(src.mSupportedFeatures); in CameraCapabilities()
624 return new HashSet<Feature>(mSupportedFeatures); in getSupportedFeature()
628 return (ft != null && mSupportedFeatures.contains(ft)); in supports()
DAndroidCamera2Capabilities.java93 mSupportedFeatures.add(Feature.FOCUS_AREA); in AndroidCamera2Capabilities()
97 mSupportedFeatures.add(Feature.METERING_AREA); in AndroidCamera2Capabilities()
101 mSupportedFeatures.add(Feature.ZOOM); in AndroidCamera2Capabilities()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ims/
DImsResolver.java185 private final HashSet<ImsFeatureConfiguration.FeatureSlotPair> mSupportedFeatures; field in ImsResolver.ImsServiceInfo
188 mSupportedFeatures = new HashSet<>(); in ImsServiceInfo()
193 mSupportedFeatures.add(new ImsFeatureConfiguration.FeatureSlotPair(i, feature)); in addFeatureForAllSlots()
198 mSupportedFeatures.clear(); in replaceFeatures()
199 mSupportedFeatures.addAll(newFeatures); in replaceFeatures()
204 return mSupportedFeatures; in getSupportedFeatures()
215 if (!mSupportedFeatures.equals(that.mSupportedFeatures)) { in equals()
238 + printFeatures(mSupportedFeatures); in toString()