Searched defs:zoom (Results 1 - 5 of 5) sorted by relevance

/frameworks/av/services/camera/libcameraservice/camera2/
H A DParameters.h115 int zoom; member in struct:android::camera2::Parameters
160 // Number of zoom steps to simulate
H A DParameters.cpp711 zoom = 0;
712 params.set(CameraParameters::KEY_ZOOM, zoom);
721 float zoom = 1.f; local
722 float zoomIncrement = (maxDigitalZoom.data.f[0] - zoom) /
728 zoomRatios += String8::format("%d", static_cast<int>(zoom * 100));
729 zoom += zoomIncrement;
1526 validatedParams.zoom = newParams.getInt(CameraParameters::KEY_ZOOM);
1527 if (validatedParams.zoom < 0
1528 || validatedParams.zoom >= (int)NUM_ZOOM_STEPS) {
1529 ALOGE("%s: Requested zoom leve
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebSettings.java188 * Sets whether the WebView should support zooming using its on-screen zoom
189 * controls and gestures. The particular zoom mechanisms that should be used
194 * @param support whether the WebView should support zoom
201 * Gets whether the WebView supports zoom.
203 * @return true if the WebView supports zoom
231 * Sets whether the WebView should use its built-in zoom mechanisms. The
232 * built-in zoom mechanisms comprise on-screen zoom controls, which are
237 * The built-in mechanisms are the only currently supported zoom
240 * @param enabled whether the WebView should use its built-in zoom mechanism
487 setDefaultZoom(ZoomDensity zoom) argument
[all...]
H A DZoomManager.java32 * The ZoomManager is responsible for maintaining the WebView's current zoom
33 * level state. It is also responsible for managing the on-screen zoom controls
36 * Currently, there are two methods for animating the zoom of a WebView.
39 * length animation where the final zoom scale is known at startup. This type of
56 // Widgets responsible for the on-screen zoom functions of the WebView.
62 * default zoom scale.
84 * picture from webkit and use that width to enter into zoom overview mode.
89 * When in the zoom overview mode, the page's width is fully fit to the
93 * mode, but this value should only be modified by changes to the zoom
101 * These variables track the center point of the zoom an
404 private boolean zoom(float zoomMultiplier) { method in class:ZoomManager
[all...]
H A DWebSettingsClassic.java668 * Set the double-tap zoom of the page in percent. Default is 100.
669 * @param doubleTapZoom A percent value for increasing or decreasing the double-tap zoom.
679 * Get the double-tap zoom of the page in percent.
680 * @return A percent value describing the double-tap zoom.
690 public void setDefaultZoom(ZoomDensity zoom) { argument
691 if (mDefaultZoom != zoom) {
692 mDefaultZoom = zoom;
693 mWebView.adjustDefaultZoomDensity(zoom.value);
1572 * the UI to zoom in and out of an image, so it is set false by default.

Completed in 126 milliseconds