HomeSort by relevance Sort by last modified time
    Searched defs:zoom (Results 1 - 25 of 47) sorted by null

1 2

  /hardware/ti/omap4xxx/camera/OMXCameraAdapter/
OMXZoom.cpp 20 * This file contains functionality for handling zoom configurations.
60 //Immediate zoom should not be avaialable while smooth zoom is running
63 int zoom = params.getInt(CameraParameters::KEY_ZOOM); local
64 if( ( zoom >= 0 ) && ( zoom < ZOOM_STAGES ) )
66 mTargetZoomIdx = zoom;
68 //Immediate zoom should be applied instantly ( CTS requirement )
77 CAMHAL_LOGDB("Zoom by App %d", zoom);
    [all...]
  /external/eigen/demos/opengl/
camera.cpp 174 void Camera::zoom(float d) function in class:Camera
  /external/webkit/Source/WebKit/efl/ewk/
ewk_tiled_backing_store.h 41 #define TILE_SIZE_AT_ZOOM(SIZE, ZOOM) ((int)roundf((SIZE) * (ZOOM)))
69 EINA_INLIST; /**< sibling tiles at same (i, j) but other zoom */
82 const float zoom; /**< zoom level contents were rendered at */ member in struct:_Ewk_Tile
104 EAPI Eina_Bool ewk_tiled_backing_store_zoom_set(Evas_Object *o, float *zoom, Evas_Coord cx, Evas_Coord cy, Evas_Coord *offx, Evas_Coord *offy);
105 EAPI Eina_Bool ewk_tiled_backing_store_zoom_weak_set(Evas_Object *o, float zoom, Evas_Coord cx, Evas_Coord cy);
122 EAPI Eina_Bool ewk_tiled_backing_store_pre_render_region(Evas_Object *o, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h, float zoom);
123 EAPI Eina_Bool ewk_tiled_backing_store_pre_render_relative_radius(Evas_Object *o, unsigned int n, float zoom);
ewk_tiled_model.c 227 * Create a new tile of given size, zoom level and colorspace.
241 Ewk_Tile *ewk_tile_new(Evas *evas, Evas_Coord w, Evas_Coord h, float zoom, Evas_Colorspace cspace)
270 DBG("size: %dx%d (%d), zoom: %f, cspace=%d",
271 w, h, area, (double)zoom, cspace);
296 f = (float *)&t->zoom;
297 *f = zoom;
506 float zoom; member in struct:_Ewk_Tile_Unused_Cache::__anon18001
541 void ewk_tile_unused_cache_lock_area(Ewk_Tile_Unused_Cache *tuc, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h, float zoom)
550 tuc->locked.zoom = zoom;
    [all...]
ewk_view.h 63 * - "zoom,animated,end", void: requested animated zoom is finished.
111 Eina_Bool (*zoom_set)(Ewk_View_Smart_Data *sd, float zoom, Evas_Coord cx, Evas_Coord cy);
112 Eina_Bool (*zoom_weak_set)(Ewk_View_Smart_Data *sd, float zoom, Evas_Coord cx, Evas_Coord cy);
116 Eina_Bool (*pre_render_region)(Ewk_View_Smart_Data *sd, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h, float zoom);
117 Eina_Bool (*pre_render_relative_radius)(Ewk_View_Smart_Data *sd, unsigned int n, float zoom);
284 float current; /**< if > 0.0, then doing animated zoom. */
285 } zoom; member in struct:_Ewk_View_Smart_Data::__anon18014
388 EAPI Eina_Bool ewk_view_zoom_set(Evas_Object *o, float zoom, Evas_Coord cx, Evas_Coord cy);
393 EAPI Eina_Bool ewk_view_zoom_weak_set(Evas_Object *o, float zoom, Evas_Coord cx, Evas_Coord cy)
    [all...]
ewk_tiled_backing_store.c 63 float zoom; member in struct:_Ewk_Tiled_Backing_Store_Item::__anon17983
71 float zoom; member in struct:_Ewk_Tiled_Backing_Store_Pre_Render_Request
84 float zoom; member in struct:_Ewk_Tiled_Backing_Store_Data::__anon17984::__anon17985
143 static inline void _ewk_tiled_backing_store_item_request_add(Ewk_Tiled_Backing_Store_Data *priv, Ewk_Tiled_Backing_Store_Item *it, int m_col, int m_row, float zoom);
182 static Ewk_Tile *_ewk_tiled_backing_store_tile_new(Ewk_Tiled_Backing_Store_Data *priv, unsigned long col, unsigned long row, float zoom)
192 (priv->model.matrix, evas, col, row, zoom);
267 static inline Eina_Bool _ewk_tiled_backing_store_pre_render_request_add(Ewk_Tiled_Backing_Store_Data *priv, unsigned long col, unsigned long row, float zoom, Ewk_Tiled_Backing_Store_Pre_Render_Priority priority)
282 r->zoom = zoom;
336 float zoom; local
387 float zoom; local
511 const float zoom = priv->view.tile.zoom; local
    [all...]
ewk_view.cpp 148 } zoom; member in struct:_Ewk_View_Private_Data::__anon18008
626 // viewport meta tag is implemented using zoom. When scale zoom is supported by webkit-efl,
627 // this functionality will be modified by the scale zoom patch.
883 static Eina_Bool _ewk_view_smart_zoom_set(Ewk_View_Smart_Data* sd, float zoom, Evas_Coord cx, Evas_Coord cy)
902 ret = ewk_frame_zoom_set(sd->main_frame, zoom);
918 static Eina_Bool _ewk_view_smart_pre_render_region(Ewk_View_Smart_Data* sd, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h, float zoom)
920 WRN("not supported by engine. sd=%p area=%d,%d+%dx%d, zoom=%f",
921 sd, x, y, w, h, zoom);
925 static Eina_Bool _ewk_view_smart_pre_render_relative_radius(Ewk_View_Smart_Data* sd, unsigned int n, float zoom)
    [all...]
  /packages/apps/Camera/src/com/android/camera/ui/
ZoomRenderer.java 55 void onZoomValueChanged(int index); // only for immediate zoom
134 int zoom = mMinZoom + (int) ((mCircleSize - mMinCircle) * (mMaxZoom - mMinZoom) / (mMaxCircle - mMinCircle)); local
135 mListener.onZoomValueChanged(zoom);
  /packages/apps/Gallery2/src/com/android/camera/ui/
ZoomRenderer.java 55 void onZoomValueChanged(int index); // only for immediate zoom
134 int zoom = mMinZoom + (int) ((mCircleSize - mMinCircle) * (mMaxZoom - mMinZoom) / (mMaxCircle - mMinCircle)); local
135 mListener.onZoomValueChanged(zoom);
  /external/skia/src/effects/
SkMagnifierImageFilter.cpp 183 const GrMagnifierEffect& zoom = GetEffectFromStage<GrMagnifierEffect>(stage); local
184 uman.set2f(fOffsetVar, zoom.x_offset(), zoom.y_offset());
185 uman.set2f(fZoomVar, zoom.x_zoom(), zoom.y_zoom());
186 uman.set2f(fInsetVar, zoom.x_inset(), zoom.y_inset());
187 fEffectMatrix.setData(uman, zoom.getMatrix(), stage.getCoordChangeMatrix(), zoom.texture(0));
191 const GrMagnifierEffect& zoom = GetEffectFromStage<GrMagnifierEffect>(stage) local
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderImage.cpp 419 float zoom = style()->effectiveZoom(); local
420 int mapX = lroundf((x - tx - this->x() - contentBox.x()) / zoom);
421 int mapY = lroundf((y - ty - this->y() - contentBox.y()) / zoom);
  /external/chromium/chrome/browser/ui/views/
wrench_menu.cc 377 // ZoomView contains the various zoom controls: two buttons to increase/decrease
378 // the zoom, a label showing the current zoom percent, and a button to go
482 // Zoom buttons don't close the menu.
500 int zoom = 100; local
502 zoom = selected_tab->GetZoomPercent(&enable_increment, &enable_decrement);
507 zoom)));
512 // Calculates the max width the zoom string can be.
545 // Button for incrementing the zoom.
548 // Label showing zoom as a percent
    [all...]
  /external/webkit/Tools/EWebLauncher/
main.c 65 // the zoom values are chosen to be like in Mozilla Firefox 3
278 info(" Fail to set zoom range. minScale = %f, maxScale = %f\n", app->viewport.minScale, app->viewport.maxScale);
315 info("WebCore Zoom=%f, currentZoomLevel=%d\n", currentZoom, currentZoomLevel);
579 info("Zoom out (F7) was pressed.\n");
583 info("Zoom in (F8) was pressed.\n");
595 float zoom = zoomLevels[currentZoomLevel] / 100.0; local
603 ewk_view_pre_render_region(obj, x, y, w, h, zoom);
605 info("Pre-render 1 extra column/row with current zoom");
  /frameworks/av/services/camera/libcameraservice/camera2/
Parameters.h 114 int zoom; member in struct:android::camera2::Parameters
159 // Number of zoom steps to simulate
Parameters.cpp 720 zoom = 0;
721 params.set(CameraParameters::KEY_ZOOM, zoom);
730 float zoom = 1.f; local
731 float zoomIncrement = (maxDigitalZoom.data.f[0] - zoom) /
737 zoomRatios += String8::format("%d", static_cast<int>(zoom * 100));
738 zoom += zoomIncrement;
    [all...]
  /frameworks/base/core/java/android/webkit/
ZoomManager.java 32 * 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 and they are used t
404 private boolean zoom(float zoomMultiplier) { method in class:ZoomManager
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
CropImage.java 768 float zoom = Math.min(z1, z2); local
769 zoom = zoom * this.getScale();
770 zoom = Math.max(1F, zoom);
772 if ((Math.abs(zoom - getScale()) / zoom) > .1) {
776 zoomTo(zoom, coordinates[0], coordinates[1], 300F);
  /hardware/samsung_slsi/exynos5/include/
ExynosCamera.h 141 int zoom; member in struct:android::ExynosCameraInfo
475 //! Gets the maximum zoom value allowed for snapshot.
554 //! Gets current zoom value.
558 //! Gets max zoom ratio
567 //! Returns true if smooth zoom is supported.
576 //! Returns true if zoom is supported.
682 //! Sets current zoom value.
780 bool m_setZoom(int fd, int zoom, int w, int h);
781 bool m_setCrop(int fd, int w, int h, int zoom);
786 int zoom);
    [all...]
  /hardware/ti/omap4xxx/test/CameraHal/
camera_test_menu.cpp 321 Zoom zoom[] = { variable
332 size_t length_Zoom = ARRAY_SIZE(zoom);
1179 params.set(CameraParameters::KEY_ZOOM, zoom[zoomIDX].idx);
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BrowserSettings.java 96 // The initial value in the text zoom range
99 // The size of a single step in the text zoom range, in percent
101 // The initial value in the double tap zoom range
104 // The size of a single step in the double tap zoom range, in percent
204 * Update from TextSize enum to zoom percent
689 String zoom = mPrefs.getString(PREF_DEFAULT_ZOOM, "MEDIUM"); local
690 return ZoomDensity.valueOf(zoom);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageGeometry.java 176 float zoom = computeScale(bounds.width(), bounds.height()); local
177 setLocalScale(zoom);
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
ScreenViewer.java 68 private int zoom = 8; field in class:ScreenViewer
157 zoomSlider = buildSlider(panel, "Zoom:", "2x", "24x", 2, 24, 8, 2);
161 zoom = ((JSlider) event.getSource()).getValue();
286 g2.scale(zoom, zoom);
303 grid = new BufferedImage(width + zoom + 1, height + zoom + 1,
318 width += zoom;
319 height += zoom;
321 for (int x = zoom; x <= width; x += zoom)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutCanvas.java 122 new QualifiedName(AdtPlugin.PLUGIN_ID, "zoom");//$NON-NLS-1$
235 * When set, performs a zoom-to-fit when the next rendering image arrives.
276 String zoom = AdtPlugin.getFileProperty(file, NAME_ZOOM); local
277 if (zoom != null) {
279 double initialScale = Double.parseDouble(zoom);
285 // Ignore - use zoom=100%
335 // Update the zoom level in the canvas when you toggle the zoom
805 * Returns the zoom scale factor of the canvas (the amount the full
830 // Clear the zoom setting if it is almost identical to 1.
    [all...]
  /packages/apps/Email/src/com/android/email/activity/
MessageViewFragmentBase.java 112 // The different levels of zoom: read from the Preferences.
514 * Returns the zoom scale (in percent) which is a combination of the user setting
521 int zoom = Preferences.getPreferences(mContext).getTextZoom(); local
526 return (int)(Float.valueOf(sZoomSizes[zoom]) * density * 100);
    [all...]
  /prebuilts/devtools/tools/lib/
jfreechart-swt-1.0.9.jar 

Completed in 552 milliseconds

1 2