Searched refs:WhiteBalance (Results 1 - 14 of 14) sorted by relevance

/frameworks/ex/camera2/portability/tests/src/com/android/ex/camera2/portability/
H A DCamera2PortabilityTest.java35 import com.android.ex.camera2.portability.CameraCapabilities.WhiteBalance;
46 * {@link SceneMode}, and {@link WhiteBalance}.
60 for(WhiteBalance val : WhiteBalance.values()) {
68 * {@link WhiteBalance} when given a {@code null}.
76 assertEquals(strfy.whiteBalanceFromString(null), WhiteBalance.AUTO);
82 * {@link WhiteBalance} when given an unrecognized string.
90 assertEquals(strfy.whiteBalanceFromString("crap"), WhiteBalance.AUTO);
106 * {@code FocusMode}, {@code SceneMode}, and {@code WhiteBalance} to the
165 set.setWhiteBalance(WhiteBalance
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/camera/
H A DCameraPairwiseTest.java58 public enum WhiteBalance { DAYLIGHT, FLUORESCENT, CLOUDY, INCANDESCENT, AUTO }; enum in class:CameraPairwiseTest
129 genericPairwiseTestCase(Flash.AUTO, Exposure.NONE, WhiteBalance.DAYLIGHT, SceneMode.SUNSET,
139 genericPairwiseTestCase(Flash.ON, Exposure.MIN, WhiteBalance.FLUORESCENT, SceneMode.AUTO,
149 genericPairwiseTestCase(Flash.OFF, Exposure.MAX, WhiteBalance.AUTO, SceneMode.NIGHT,
159 genericPairwiseTestCase(Flash.OFF, Exposure.MAX, WhiteBalance.CLOUDY, SceneMode.AUTO,
169 genericPairwiseTestCase(Flash.AUTO, Exposure.MAX, WhiteBalance.INCANDESCENT,
179 genericPairwiseTestCase(Flash.ON, Exposure.NONE, WhiteBalance.CLOUDY, SceneMode.AUTO,
189 genericPairwiseTestCase(Flash.AUTO, Exposure.MIN, WhiteBalance.AUTO, SceneMode.ACTION,
199 genericPairwiseTestCase(Flash.ON, Exposure.MIN, WhiteBalance.AUTO, SceneMode.ACTION,
209 genericPairwiseTestCase(Flash.OFF, Exposure.MIN, WhiteBalance
[all...]
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DAndroidCamera2Capabilities.java149 WhiteBalance equiv = whiteBalanceFromInt(bal);
243 public static WhiteBalance whiteBalanceFromInt(int wb) {
246 return WhiteBalance.AUTO;
248 return WhiteBalance.CLOUDY_DAYLIGHT;
250 return WhiteBalance.DAYLIGHT;
252 return WhiteBalance.FLUORESCENT;
254 return WhiteBalance.INCANDESCENT;
256 return WhiteBalance.SHADE;
258 return WhiteBalance.TWILIGHT;
260 return WhiteBalance
[all...]
H A DCameraCapabilities.java54 protected final EnumSet<WhiteBalance> mSupportedWhiteBalances =
55 EnumSet.noneOf(WhiteBalance.class);
246 public enum WhiteBalance { enum in class:CameraCapabilities
437 public String stringify(WhiteBalance wb) {
450 public WhiteBalance whiteBalanceFromString(String val) {
452 return WhiteBalance.values()[0];
455 return WhiteBalance.valueOf(toEnumCase(val));
457 return WhiteBalance.values()[0];
612 public final Set<WhiteBalance> getSupportedWhiteBalance() {
613 return new HashSet<WhiteBalance>(mSupportedWhiteBalance
[all...]
H A DAndroidCameraCapabilities.java221 mSupportedWhiteBalances.add(WhiteBalance.AUTO);
223 mSupportedWhiteBalances.add(WhiteBalance.CLOUDY_DAYLIGHT);
225 mSupportedWhiteBalances.add(WhiteBalance.DAYLIGHT);
227 mSupportedWhiteBalances.add(WhiteBalance.FLUORESCENT);
229 mSupportedWhiteBalances.add(WhiteBalance.INCANDESCENT);
231 mSupportedWhiteBalances.add(WhiteBalance.SHADE);
233 mSupportedWhiteBalances.add(WhiteBalance.TWILIGHT);
235 mSupportedWhiteBalances.add(WhiteBalance.WARM_FLUORESCENT);
H A DCameraSettings.java55 protected CameraCapabilities.WhiteBalance mWhiteBalance;
428 public void setWhiteBalance(CameraCapabilities.WhiteBalance whiteBalance) {
432 public CameraCapabilities.WhiteBalance getWhiteBalance() {
H A DAndroidCamera2Settings.java33 import com.android.ex.camera2.portability.CameraCapabilities.WhiteBalance;
/frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
H A DWhiteBalance.java25 public class WhiteBalance extends TestBase { class in inherits:TestBase
H A DImageProcessingActivity.java351 mTest = new WhiteBalance();
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
H A DWhiteBalance.java24 public class WhiteBalance extends TestBase { class in inherits:TestBase
H A DIPTestList.java177 return new WhiteBalance();
/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
H A DWhiteBalance.java25 public class WhiteBalance extends TestBase { class in inherits:TestBase
H A DIPTestListJB.java182 return new WhiteBalance();
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DExifInterface.java510 public static interface WhiteBalance { interface in class:ExifInterface

Completed in 350 milliseconds