Searched refs:deviceSize (Results 1 - 8 of 8) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/dom/
H A DViewportArguments.cpp78 ViewportAttributes ViewportArguments::resolve(const FloatSize& initialViewportSize, const FloatSize& deviceSize, int defaultWidth) const argument
93 resultWidth = deviceSize.width();
96 resultWidth = deviceSize.height();
102 resultHeight = deviceSize.width();
105 resultHeight = deviceSize.height();
112 resultMinWidth = deviceSize.width();
115 resultMinWidth = deviceSize.height();
121 resultMaxWidth = deviceSize.width();
124 resultMaxWidth = deviceSize.height();
130 resultMinHeight = deviceSize
253 convertToUserSpace(const FloatSize& deviceSize, float devicePixelRatio) argument
264 FloatSize deviceSize = convertToUserSpace(FloatSize(deviceWidth, deviceHeight), devicePixelRatio); local
[all...]
H A DViewportArguments.h97 ViewportAttributes resolve(const FloatSize& initialViewportSize, const FloatSize& deviceSize, int defaultWidth) const;
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nstouch.py18 self.assertResultHasType(NSTouch.deviceSize, NSSize.__typestr__)
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/PyObjCTest/
H A Dtest_nstouch.py22 self.assertResultHasType(NSTouch.deviceSize, NSSize.__typestr__)
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLCanvasElement.cpp527 FloatSize HTMLCanvasElement::convertDeviceToLogical(const FloatSize& deviceSize) const
529 float width = ceilf(deviceSize.width() / m_deviceScaleFactor);
530 float height = ceilf(deviceSize.height() / m_deviceScaleFactor);
571 FloatSize deviceSize = convertLogicalToDevice(logicalSize); local
572 if (!deviceSize.isExpressibleAsIntSize())
575 if (deviceSize.width() * deviceSize.height() > MaxCanvasArea)
578 IntSize bufferSize(deviceSize.width(), deviceSize.height());
659 FloatSize deviceSize local
[all...]
/macosx-10.10/hfs-285/CopyHFSMeta/
H A Dhfsmeta.h20 off_t deviceSize; // The size of the entire device member in struct:VolumeDescriptor
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/efl/
H A DEwkView.cpp507 const WKSize& deviceSize = WKViewGetSize(wkView()); local
511 WKViewSetSize(wkView(), deviceSize); local
556 FloatSize uiSize = deviceSize();
561 inline IntSize EwkView::deviceSize() const function in class:EwkView
600 if (deviceSize().isEmpty())
835 m_evasGLSurface = EvasGLSurface::create(m_evasGL.get(), &evasGLConfig, deviceSize());
847 WKPoint boundsEnd = WKViewUserViewportToScene(wkView(), WKPointMake(deviceSize().width(), deviceSize().height()));
H A DEwkView.h201 WebCore::IntSize deviceSize() const;

Completed in 319 milliseconds