HomeSort by relevance Sort by last modified time
    Searched refs:AUTO (Results 1 - 25 of 62) sorted by null

1 2 3

  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/camera/
CameraPairwiseTest.java 62 public enum Flash { ON, OFF, AUTO };
64 public enum WhiteBalance { DAYLIGHT, FLUORESCENT, CLOUDY, INCANDESCENT, AUTO };
65 public enum SceneMode { SUNSET, ACTION, PARTY, NIGHT, AUTO };
130 * Flash: Auto / Exposure: None / WB: Daylight
135 genericPairwiseTestCase(Flash.AUTO, Exposure.NONE, WhiteBalance.DAYLIGHT, SceneMode.SUNSET,
141 * Scene: Auto / Pic: Large / Geo: on
145 genericPairwiseTestCase(Flash.ON, Exposure.MIN, WhiteBalance.FLUORESCENT, SceneMode.AUTO,
150 * Flash: Off / Exposure: Max / WB: Auto
155 genericPairwiseTestCase(Flash.OFF, Exposure.MAX, WhiteBalance.AUTO, SceneMode.NIGHT,
161 * Scene: Auto / Pic: Med / Geo: of
    [all...]
  /frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
CameraAgentFactory.java 59 AUTO,
87 Log.w(TAG, "null API level request, so assuming AUTO");
88 choice = CameraApi.AUTO;
90 if (choice == CameraApi.AUTO) {
AndroidCamera2Capabilities.java 90 if (supports(FocusMode.AUTO)) {
122 mSupportedFlashModes.add(FlashMode.AUTO);
168 return FocusMode.AUTO;
196 return SceneMode.AUTO;
248 return WhiteBalance.AUTO;
AndroidCameraCapabilities.java 74 if (supports(FocusMode.AUTO)) {
133 mSupportedSceneModes.add(SceneMode.AUTO);
179 mSupportedFlashModes.add(FlashMode.AUTO);
198 mSupportedFocusModes.add(FocusMode.AUTO);
221 mSupportedWhiteBalances.add(WhiteBalance.AUTO);
CameraCapabilities.java 74 * Continuous auto focus mode intended for taking pictures.
77 AUTO,
79 * Continuous auto focus mode intended for taking pictures.
84 * Continuous auto focus mode intended for video recording.
123 AUTO,
135 * Constant emission of light during preview, auto-focus and snapshot.
158 AUTO,
250 AUTO,
AndroidCamera2Settings.java 170 return FlashMode.AUTO;
333 case AUTO: {
369 case AUTO: {
407 case AUTO: {
485 case AUTO: {
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
gzip_stream.h 61 AUTO = 0,
73 Format format = AUTO,
gzip_stream.cc 81 case GzipInputStream::AUTO: windowBitsFormat = 32; break;
  /external/chromium_org/v8/test/mjsunit/runtime-gen/
loadfromsuper.js 2 // AUTO-GENERATED BY tools/generate-runtime-tests.py, DO NOT MODIFY
  /external/protobuf/src/google/protobuf/io/
gzip_stream.h 60 AUTO = 0,
72 Format format = AUTO,
gzip_stream.cc 95 case AUTO: windowBitsFormat = 32; break;
zero_copy_stream_unittest.cc 358 GzipInputStream gzin(&input, GzipInputStream::AUTO);
370 GzipInputStream gzin(&input, GzipInputStream::AUTO);
  /frameworks/ex/camera2/portability/tests/src/com/android/ex/camera2/portability/
Camera2PortabilityTest.java 74 assertEquals(strfy.focusModeFromString(null), FocusMode.AUTO);
77 assertEquals(strfy.whiteBalanceFromString(null), WhiteBalance.AUTO);
88 assertEquals(strfy.focusModeFromString("crap"), FocusMode.AUTO);
91 assertEquals(strfy.whiteBalanceFromString("crap"), WhiteBalance.AUTO);
120 set.setFocusMode(FocusMode.AUTO);
134 set.setSceneMode(SceneMode.AUTO);
166 set.setWhiteBalance(WhiteBalance.AUTO);
197 assertEquals(intstr.focusModeFromInt(CONTROL_AF_MODE_AUTO), FocusMode.AUTO);
207 assertEquals(intstr.sceneModeFromInt(CONTROL_SCENE_MODE_DISABLED), SceneMode.AUTO);
225 assertEquals(intstr.whiteBalanceFromInt(CONTROL_AWB_MODE_AUTO), WhiteBalance.AUTO);
    [all...]
  /packages/apps/Camera2/src/com/android/camera/one/
OneCamera.java 42 * Auto focus system status; 1:1 mapping from camera2 AF_STATE.
71 * Auto focus system mode.
74 * <li>{@link #AUTO}</li>
81 AUTO
209 * Called when state of auto focus system changes.
211 * @param state Current auto focus state.
227 AUTO, OFF, ON
239 public Flash flashMode = Flash.AUTO;
275 * Meters and triggers auto focus scan with ROI around tap point.
  /packages/apps/Camera2/src/com/android/camera/hardware/
HardwareSpecImpl.java 79 return (capabilities.supports(CameraCapabilities.FlashMode.AUTO) || capabilities.supports
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
AndroidLaunchConfiguration.java 38 AUTO,
183 return value ? TargetMode.AUTO : TargetMode.MANUAL;
EmulatorConfigTab.java 331 boolean auto = mAutoTargetButton.getSelection();
332 mPreferredAvdSelector.setEnabled(auto);
333 mPreferredAvdLabel.setEnabled(auto);
397 mAutoTargetButton.setSelection(mode == TargetMode.AUTO);
559 return TargetMode.AUTO;
573 return TargetMode.AUTO;
LaunchConfigDelegate.java 52 public static final TargetMode DEFAULT_TARGET_MODE = TargetMode.AUTO;
  /external/chromium_org/media/blink/
buffered_data_source.h 58 AUTO,
buffered_data_source_unittest.cc 114 preload_(BufferedDataSource::AUTO) {
527 EXPECT_EQ(BufferedDataSource::AUTO, preload());
665 EXPECT_EQ(BufferedDataSource::AUTO, preload());
698 EXPECT_EQ(BufferedDataSource::AUTO, preload());
734 EXPECT_EQ(BufferedDataSource::AUTO, preload());
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
typedefs.h 276 #define AUTO (-1) /* Auto = -1 */
  /packages/apps/Camera2/src/com/android/camera/
FocusOverlayManager.java 350 // Auto focus at the center of the preview.
360 /** Returns width of auto focus region in pixels. */
442 // If auto focus was in progress, it would have been stopped.
493 // Otherwise, focus mode stays at auto and the tap area passed to the
518 Log.v(TAG, "no capabilities, returning default AUTO focus mode");
519 return CameraCapabilities.FocusMode.AUTO;
523 Log.v(TAG, "in tap to focus, returning AUTO focus mode");
525 mFocusMode = CameraCapabilities.FocusMode.AUTO;
546 // focus mode. Fall back to auto.
547 if (mCapabilities.supports(CameraCapabilities.FocusMode.AUTO)) {
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
CameraMetadataTest.java 521 AUTO
541 AeAntibandingMode.AUTO);
547 AeAntibandingMode.AUTO
576 AeAntibandingMode.AUTO);
582 AeAntibandingMode.AUTO
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
thumbnail_loader.js 77 * in a container, when loading a thumbnail in FillMode.AUTO mode.
91 AUTO: 3 // Try to fill, but if incompatible aspect ratio, then fit.
377 case ThumbnailLoader.FillMode.AUTO:
  /packages/apps/Camera2/src/com/android/camera/one/v2/
OneCameraZslImpl.java 300 // Listen for changes to auto focus state and dispatch to
415 case AUTO:
461 if (params.flashMode == Flash.ON || params.flashMode == Flash.AUTO) {
468 // 1. Send a request to trigger the Auto Exposure Precapture
497 // We may get here if, for example, the auto focus is in the
704 case AUTO:
    [all...]

Completed in 788 milliseconds

1 2 3