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.java36 import com.android.ex.camera2.portability.CameraCapabilities.WhiteBalance;
47 * {@link SceneMode}, and {@link WhiteBalance}.
61 for(WhiteBalance val : WhiteBalance.values()) {
69 * {@link WhiteBalance} when given a {@code null}.
77 assertEquals(strfy.whiteBalanceFromString(null), WhiteBalance.AUTO);
83 * {@link WhiteBalance} when given an unrecognized string.
91 assertEquals(strfy.whiteBalanceFromString("crap"), WhiteBalance.AUTO);
107 * {@code FocusMode}, {@code SceneMode}, and {@code WhiteBalance} to the
166 set.setWhiteBalance(WhiteBalance
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/camera/
H A DCameraPairwiseTest.java64 public enum WhiteBalance { DAYLIGHT, FLUORESCENT, CLOUDY, INCANDESCENT, AUTO }; enum in class:CameraPairwiseTest
135 genericPairwiseTestCase(Flash.AUTO, Exposure.NONE, WhiteBalance.DAYLIGHT, SceneMode.SUNSET,
145 genericPairwiseTestCase(Flash.ON, Exposure.MIN, WhiteBalance.FLUORESCENT, SceneMode.AUTO,
155 genericPairwiseTestCase(Flash.OFF, Exposure.MAX, WhiteBalance.AUTO, SceneMode.NIGHT,
165 genericPairwiseTestCase(Flash.OFF, Exposure.MAX, WhiteBalance.CLOUDY, SceneMode.AUTO,
175 genericPairwiseTestCase(Flash.AUTO, Exposure.MAX, WhiteBalance.INCANDESCENT,
185 genericPairwiseTestCase(Flash.ON, Exposure.NONE, WhiteBalance.CLOUDY, SceneMode.AUTO,
195 genericPairwiseTestCase(Flash.AUTO, Exposure.MIN, WhiteBalance.AUTO, SceneMode.ACTION,
205 genericPairwiseTestCase(Flash.ON, Exposure.MIN, WhiteBalance.AUTO, SceneMode.ACTION,
215 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);
245 public static WhiteBalance whiteBalanceFromInt(int wb) {
248 return WhiteBalance.AUTO;
250 return WhiteBalance.CLOUDY_DAYLIGHT;
252 return WhiteBalance.DAYLIGHT;
254 return WhiteBalance.FLUORESCENT;
256 return WhiteBalance.INCANDESCENT;
258 return WhiteBalance.SHADE;
260 return WhiteBalance.TWILIGHT;
262 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/java/tests/ImageProcessing2/src/com/android/rs/image/
H A DWhiteBalance.java23 public class WhiteBalance extends TestBase { class in inherits:TestBase
H A DImageProcessingActivity2.java311 mTest = new WhiteBalance();
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
H A DWhiteBalance.java23 public class WhiteBalance extends TestBase { class in inherits:TestBase
H A DIPTestListJB.java175 return new WhiteBalance();
/frameworks/rs/java/tests/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/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DExifInterface.java510 public static interface WhiteBalance { interface in class:ExifInterface

Completed in 544 milliseconds