HomeSort by relevance Sort by last modified time
    Searched refs:deviceDPI (Results 1 - 14 of 14) sorted by null

  /external/webkit/Source/WebKit/gtk/webkit/
webkitviewportattributesprivate.h 37 int deviceDPI;
webkitviewportattributes.cpp 424 viewport->priv->deviceDPI = 160; // It is the dpi of the original iPhone and Android devices.
457 g_value_set_int(value, priv->deviceDPI);
511 priv->deviceDPI = g_value_get_int(value);
537 ViewportAttributes attributes = computeViewportAttributes(arguments, priv->desktopWidth, priv->deviceWidth, priv->deviceHeight, priv->deviceDPI, IntSize(priv->availableWidth, priv->availableHeight));
  /external/webkit/Source/WebCore/dom/
ViewportArguments.h 101 ViewportAttributes computeViewportAttributes(ViewportArguments args, int desktopWidth, int deviceWidth, int deviceHeight, int deviceDPI, IntSize visibleViewport);
ViewportArguments.cpp 44 ViewportAttributes computeViewportAttributes(ViewportArguments args, int desktopWidth, int deviceWidth, int deviceHeight, int deviceDPI, IntSize visibleViewport)
55 args.targetDensityDpi = deviceDPI;
69 result.devicePixelRatio = float(deviceDPI / args.targetDensityDpi);
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
DumpRenderTreeSupportGtk.h 58 static void dumpConfigurationForViewport(WebKitWebView* webView, gint deviceDPI, gint deviceWidth, gint deviceHeight, gint availableWidth, gint availableHeight);
DumpRenderTreeSupportGtk.cpp 639 void DumpRenderTreeSupportGtk::dumpConfigurationForViewport(WebKitWebView* webView, gint deviceDPI, gint deviceWidth, gint deviceHeight, gint availableWidth, gint availableHeight)
644 ViewportAttributes attrs = computeViewportAttributes(arguments, /* default layout width for non-mobile pages */ 980, deviceWidth, deviceHeight, deviceDPI, IntSize(availableWidth, availableHeight));
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
DumpRenderTreeSupportQt.h 190 static QString viewportAsText(QWebPage*, int deviceDPI, const QSize& deviceSize, const QSize& availableSize);
DumpRenderTreeSupportQt.cpp 734 QString DumpRenderTreeSupportQt::viewportAsText(QWebPage* page, int deviceDPI, const QSize& deviceSize, const QSize& availableSize)
742 /* device-dpi */ deviceDPI,
    [all...]
  /external/webkit/Tools/DumpRenderTree/qt/
LayoutTestControllerQt.h 117 void dumpConfigurationForViewport(int deviceDPI, int deviceWidth, int deviceHeight, int availableWidth, int availableHeight);
LayoutTestControllerQt.cpp 239 void LayoutTestController::dumpConfigurationForViewport(int deviceDPI, int deviceWidth, int deviceHeight, int availableWidth, int availableHeight)
241 QString res = DumpRenderTreeSupportQt::viewportAsText(m_drt->webPage(), deviceDPI, QSize(deviceWidth, deviceHeight), QSize(availableWidth, availableHeight));
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qwkpage.cpp 553 static int deviceDPI = 160;
565 WebCore::ViewportAttributes conf = WebCore::computeViewportAttributes(d->viewportArguments, desktopWidth, deviceWidth, deviceHeight, deviceDPI, availableSize);
  /external/webkit/Tools/DumpRenderTree/
LayoutTestController.h 307 void dumpConfigurationForViewport(int deviceDPI, int deviceWidth, int deviceHeight, int availableWidth, int availableHeight);
LayoutTestController.cpp 153 double deviceDPI = JSValueToNumber(context, arguments[0], exception);
165 controller->dumpConfigurationForViewport(static_cast<int>(deviceDPI), static_cast<int>(deviceWidth), static_cast<int>(deviceHeight), static_cast<int>(availableWidth), static_cast<int>(availableHeight));
    [all...]
  /external/webkit/Tools/DumpRenderTree/gtk/
LayoutTestControllerGtk.cpp     [all...]

Completed in 261 milliseconds