Searched refs:zoom (Results 1 - 21 of 21) sorted by relevance

/external/opencore/codecs_v2/utilities/colorconvert/include/
H A Dccrgb24torgb16.h54 int32 zoom(uint8 *src, uint8 *dst, DisplayProperties *disp);
/external/webkit/WebKit/android/plugins/
H A DPluginWidgetAndroid.h113 space) and the current zoom level.
115 void setVisibleScreen(const ANPRectI& visibleScreenRect, float zoom);
H A DPluginWidgetAndroid.cpp342 void PluginWidgetAndroid::setVisibleScreen(const ANPRectI& visibleDocRect, float zoom) { argument
346 visibleDocRect.bottom, zoom);
348 // TODO update the bitmap size based on the zoom? (for kBitmap_ANPDrawingModel)
354 m_zoomLevel = zoom;
/external/v8/test/mjsunit/
H A Dfor-in.js40 assertArrayEquals(["x", "y", "zoom"], props({x:1, y:2, zoom:3}), "xyzoom");
/external/webkit/WebCore/dom/
H A DEventNames.h100 macro(zoom) \
H A DElement.cpp249 // time (or store an additional bit in the RenderStyle to indicate that a zoom was specified).
253 // a differing zoom, and then we divide our result by it to eliminate the zoom.
257 zoomFactor = prev->style()->zoom();
263 zoomFactor = prev->style()->zoom();
/external/webkit/WebCore/rendering/
H A DRenderImage.cpp130 // Make sure to use the unzoomed image size, since if a full page zoom is in effect, the image
522 float zoom = style()->effectiveZoom(); local
523 int mapX = lroundf((x - tx - this->x() - contentBox.x()) / zoom);
524 int mapY = lroundf((y - ty - this->y() - contentBox.y()) / zoom);
/external/skia/src/core/
H A DSkPaint.cpp813 SkRect* bounds, SkScalar zoom) const
829 if (zoom)
831 zoomMatrix.setScale(zoom, zoom);
984 SkScalar SkPaint::getFontMetrics(FontMetrics* metrics, SkScalar zoom) const
997 if (zoom)
999 zoomMatrix.setScale(zoom, zoom);
/external/webkit/WebCore/css/
H A DCSSPropertyNames.in149 zoom
H A DCSSComputedStyleDeclaration.cpp925 // This is imperfect, because it doesn't include the zoom factor and the real computation
926 // for how high to be in pixels does include things like minimum font size and the zoom factor.
927 // On the other hand, since font-size doesn't include the zoom factor, we really can't do
1189 return CSSPrimitiveValue::create(style->zoom(), CSSPrimitiveValue::CSS_NUMBER);
H A DCSSStyleSelector.cpp4321 // Reset the zoom in effect before we do anything. This allows the setZoom method to accurately compute a new
4322 // zoom in effect.
4326 HANDLE_INHERIT_AND_INITIAL(zoom, Zoom)
4336 float docZoom = m_checker.m_document->renderer()->style()->zoom();
4518 // Handle the zoom factor.
/external/qemu/distrib/sdl-1.2.12/src/video/Xext/Xxf86vm/
H A DXF86VMode.c766 SDL_NAME(XF86VidModeSwitchMode)(dpy, screen, zoom)
769 int zoom;
781 req->zoom = zoom;
/external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/
H A Dxf86vmstr.h350 CARD16 zoom B16;
/external/opencore/codecs_v2/utilities/colorconvert/src/
H A Dccrgb24torgb16.cpp47 //default no zoom
87 if (_mRotation&0x1) /* zoom and rotate */
91 else /* zoom only */
94 mPtrConv = &CCRGB24toRGB16::zoom;
105 else /* no zoom, no rotate, SetMode(1) = SetMode(0) */
130 // for zoom, need extra line of RGB_FORMAT buffer for processing otherwise memory will corrupt.
384 int32 CCRGB24toRGB16::zoom(uint8 *src, uint8 *dst, DisplayProperties *disp) function in class:CCRGB24toRGB16
/external/webkit/SunSpider/tests/parse-only/
H A Djquery-1.3.2.js613 var exclude = /z-?index|font-?weight|opacity|zoom|line-?height/i,
1043 // Force it by setting the zoom level
1044 elem.zoom = 1;
H A Dconcat-jquery-mootools-prototype.js613 var exclude = /z-?index|font-?weight|opacity|zoom|line-?height/i,
1043 // Force it by setting the zoom level
1044 elem.zoom = 1;
6520 if (!this.currentStyle || !this.currentStyle.hasLayout) this.style.zoom = 1;
6618 zIndex: '@', 'zoom': '@', fontWeight: '@', textIndent: '@px', opacity: '@'
10630 offsetParent.setStyle({ zoom: 1 });
10674 (!currentStyle && element.style.zoom == 'normal'))
10675 element.style.zoom = 1;
H A Dprototype-1.6.0.3.js2251 offsetParent.setStyle({ zoom: 1 });
2295 (!currentStyle && element.style.zoom == 'normal'))
2296 element.style.zoom = 1;
H A Dmootools-1.2.2-core-nc.js2144 if (!this.currentStyle || !this.currentStyle.hasLayout) this.style.zoom = 1;
2242 zIndex: '@', 'zoom': '@', fontWeight: '@', textIndent: '@px', opacity: '@'
/external/webkit/WebCore/page/
H A DFrameView.cpp660 m_lastZoomFactor = root->style()->zoom();
910 // FIXME: need to decide which <svg> to focus on, and zoom to that one
1438 float currentZoomFactor = root->style()->zoom();
/external/webkit/WebCore/rendering/style/
H A DRenderStyle.h456 float zoom() const { return visual->m_zoom; } function in class:WebCore::RenderStyle
852 void setZoom(float f) { SET_VAR(visual, m_zoom, f); setEffectiveZoom(effectiveZoom() * zoom()); }
/external/webkit/WebCore/page/animation/
H A DAnimationBase.cpp635 gPropertyWrappers->append(new PropertyWrapper<float>(CSSPropertyZoom, &RenderStyle::zoom, &RenderStyle::setZoom));

Completed in 310 milliseconds