HomeSort by relevance Sort by last modified time
    Searched defs:zoom (Results 1 - 25 of 31) 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...]
  /packages/apps/Launcher2/src/com/android/launcher2/
AllAppsView.java 23 public void zoomed(float zoom);
28 public void zoom(float zoom, boolean animate); method in interface:AllAppsView
  /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::__anon13540
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::__anon13553
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::__anon13522
71 float zoom; member in struct:_Ewk_Tiled_Backing_Store_Pre_Render_Request
84 float zoom; member in struct:_Ewk_Tiled_Backing_Store_Data::__anon13523::__anon13524
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::__anon13547
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...]
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/
PixelPerfectControls.java 88 Label zoom = new Label(this, SWT.NONE); local
89 zoom.setText("Zoom:");
94 zoom.setLayoutData(zoomData);
114 zoomLeftData.left = new FormAttachment(zoom, 2);
  /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...]
  /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
397 private boolean zoom(float zoomMultiplier) { method in class:ZoomManager
    [all...]
  /development/samples/GlobalTime/src/com/android/globaltime/
GLView.java 151 * <li> z - zoom (frustum size)
238 "Zoom",
740 addMessage("z - zoom");
801 * Zoom in by a given number of steps. A negative value of steps
804 * @param steps the number of steps to zoom by.
806 public void zoom(int steps) { method in class:GLView
813 * clipping planes are set at -+(aspectRatio*zoom), the bottom and
814 * top clipping planes are set at -+zoom, and the near and far
  /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");
  /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/ti/omap4xxx/test/CameraHal/
camera_test_menu.cpp 325 Zoom zoom[] = { variable
336 size_t length_Zoom = ARRAY_SIZE(zoom);
1177 params.set(CameraParameters::KEY_ZOOM, zoom[zoomIDX].idx);
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BrowserSettings.java 93 // The initial value in the text zoom range
96 // The size of a single step in the text zoom range, in percent
98 // The initial value in the double tap zoom range
101 // The size of a single step in the double tap zoom range, in percent
187 * Update from TextSize enum to zoom percent
631 String zoom = mPrefs.getString(PREF_DEFAULT_ZOOM, "MEDIUM"); local
632 return ZoomDensity.valueOf(zoom);
  /sdk/draw9patch/src/com/android/draw9patch/ui/
ImageEditorPanel.java 161 label.setText("Zoom: ");
658 private int zoom = DEFAULT_ZOOM; field in class:ImageEditorPanel.ImageViewer
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
ScreenViewer.java 69 private int zoom = 8; field in class:ScreenViewer
158 zoomSlider = buildSlider(panel, "Zoom:", "2x", "24x", 2, 24, 8, 2);
162 zoom = ((JSlider) event.getSource()).getValue();
287 g2.scale(zoom, zoom);
304 grid = new BufferedImage(width + zoom + 1, height + zoom + 1,
319 width += zoom;
320 height += zoom;
322 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 117 new QualifiedName(AdtPlugin.PLUGIN_ID, "zoom");//$NON-NLS-1$
218 * When set, performs a zoom-to-fit when the next rendering image arrives.
242 String zoom = AdtPlugin.getFileProperty(file, NAME_ZOOM); local
243 if (zoom != null) {
245 double initialScale = Double.parseDouble(zoom);
251 // Ignore - use zoom=100%
614 // Clear the zoom setting if it is almost identical to 1.0
623 * which means that this function will zoom out if necessary to show the
624 * rendered image, but it will never zoom in.
    [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...]
  /prebuilt/common/jfreechart/
jfreechart-1.0.9-swt.jar 
jfreechart-1.0.9.jar 
  /external/webkit/Source/WebCore/rendering/style/
RenderStyle.h 490 float zoom() const { return visual->m_zoom; } function in class:WebCore::RenderStyle
    [all...]
  /prebuilt/darwin-x86_64/swt/
swt.jar 
  /prebuilt/sdk/10/
android.jar 

Completed in 502 milliseconds

1 2