HomeSort by relevance Sort by last modified time
    Searched refs:WhiteBalance (Results 1 - 20 of 20) sorted by null

  /frameworks/ex/camera2/portability/tests/src/com/android/ex/camera2/portability/
Camera2PortabilityTest.java 36 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.AUTO)
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/camera/
CameraPairwiseTest.java 64 public enum WhiteBalance { DAYLIGHT, FLUORESCENT, CLOUDY, INCANDESCENT, AUTO };
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.AUTO, SceneMode.NIGHT
    [all...]
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
WhiteBalance.java 22 public class WhiteBalance extends TestBase {
IPTestListJB.java 177 return new WhiteBalance();
  /frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
AndroidCamera2Capabilities.java 149 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.WARM_FLUORESCENT
    [all...]
CameraCapabilities.java 54 protected final EnumSet<WhiteBalance> mSupportedWhiteBalances =
55 EnumSet.noneOf(WhiteBalance.class);
246 public enum WhiteBalance {
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>(mSupportedWhiteBalances)
    [all...]
AndroidCameraCapabilities.java 221 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);
CameraSettings.java 55 protected CameraCapabilities.WhiteBalance mWhiteBalance;
428 public void setWhiteBalance(CameraCapabilities.WhiteBalance whiteBalance) {
429 mWhiteBalance = whiteBalance;
432 public CameraCapabilities.WhiteBalance getWhiteBalance() {
AndroidCamera2Settings.java 33 import com.android.ex.camera2.portability.CameraCapabilities.WhiteBalance;
119 Integer whiteBalance = mTemplateSettings.get(CONTROL_AWB_MODE);
120 if (whiteBalance != null) {
121 mWhiteBalance = AndroidCamera2Capabilities.whiteBalanceFromInt(whiteBalance);
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
WhiteBalance.java 23 public class WhiteBalance extends TestBase {
ImageProcessingActivity2.java 311 mTest = new WhiteBalance();
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
WhiteBalance.java 25 public class WhiteBalance extends TestBase {
ImageProcessingActivity.java 351 mTest = new WhiteBalance();
  /external/jhead/
makernote.c 128 int WhiteBalance = Get16u(ValuePtr + 7*sizeof(unsigned short));
129 switch(WhiteBalance){
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/imageinfo/imageinfo/
exif.js 74 0xA403 : "WhiteBalance", // 1 = auto white balance, 2 = manual
251 WhiteBalance : {
510 case "WhiteBalance" :
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
ExifInterface.java 510 public static interface WhiteBalance {
    [all...]
  /packages/apps/Camera2/src/com/android/camera/exif/
ExifInterface.java 510 public static interface WhiteBalance {
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
ExifInterface.java 510 public static interface WhiteBalance {
    [all...]
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/exif/
ExifInterface.java 510 public static interface WhiteBalance {
    [all...]
  /packages/apps/Mms/src/com/android/mms/exif/
ExifInterface.java 510 public static interface WhiteBalance {
    [all...]

Completed in 926 milliseconds