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

  /external/chromium_org/third_party/WebKit/Source/core/dom/
ViewportArguments.cpp 29 #include "core/dom/ViewportArguments.h"
42 if (value1 == ViewportArguments::ValueAuto)
45 if (value2 == ViewportArguments::ValueAuto)
53 ASSERT(value != ViewportArguments::ValueDeviceWidth);
54 ASSERT(value != ViewportArguments::ValueDeviceHeight);
57 if (value != ViewportArguments::ValueAuto)
64 ASSERT(value != ViewportArguments::ValueDeviceWidth);
65 ASSERT(value != ViewportArguments::ValueDeviceHeight);
68 if (value != ViewportArguments::ValueAuto)
73 float ViewportArguments::resolveViewportLength(const Length& length, const FloatSize& initialViewportSize, Direction direc (…)
    [all...]
ViewportArguments.h 48 struct ViewportArguments {
74 ViewportArguments(Type type = Implicit)
103 bool operator==(const ViewportArguments& other) const
121 bool operator!=(const ViewportArguments& other) const
Document.h 45 #include "core/dom/ViewportArguments.h"
292 void setViewportArguments(const ViewportArguments& viewportArguments) { m_viewportArguments = viewportArguments; }
293 ViewportArguments viewportArguments() const { return m_viewportArguments; }
743 void processViewport(const String& features, ViewportArguments::Type origin);
    [all...]
Document.cpp 665 processViewport("width=device-width, height=device-height", ViewportArguments::XHTMLMobileProfile);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
ViewportStyleResolver.cpp 38 #include "core/dom/ViewportArguments.h"
81 ViewportArguments arguments(ViewportArguments::CSSDeviceAdaptation);
101 float defaultValue = ViewportArguments::ValueAuto;
138 return ViewportArguments::ValueLandscape;
140 return ViewportArguments::ValuePortrait;
144 return ViewportArguments::ValueExtendToZoom;
  /external/chromium_org/third_party/WebKit/Source/core/page/
PageScaleConstraintsSet.h 35 #include "core/dom/ViewportArguments.h"
51 void updatePageDefinedConstraints(const ViewportArguments&, IntSize viewSize, int layoutFallbackWidth);
52 void adjustForAndroidWebViewQuirks(const ViewportArguments&, IntSize viewSize, int layoutFallbackWidth, float deviceScaleFactor, bool supportTargetDensityDPI, bool wideViewportQuirkEnabled, bool useWideViewport, bool loadWithOverviewMode);
PageScaleConstraintsSet.cpp 52 void PageScaleConstraintsSet::updatePageDefinedConstraints(const ViewportArguments& arguments, IntSize viewSize, int layoutFallbackWidth)
106 static float computeDeprecatedTargetDensityDPIFactor(const ViewportArguments& arguments, float deviceScaleFactor)
108 if (arguments.deprecatedTargetDensityDPI == ViewportArguments::ValueDeviceDPI)
112 if (arguments.deprecatedTargetDensityDPI == ViewportArguments::ValueLowDPI)
114 else if (arguments.deprecatedTargetDensityDPI == ViewportArguments::ValueMediumDPI)
116 else if (arguments.deprecatedTargetDensityDPI == ViewportArguments::ValueHighDPI)
118 else if (arguments.deprecatedTargetDensityDPI != ViewportArguments::ValueAuto)
133 void PageScaleConstraintsSet::adjustForAndroidWebViewQuirks(const ViewportArguments& arguments, IntSize viewSize, int layoutFallbackWidth, float deviceScaleFactor, bool supportTargetDensityDPI, bool wideViewportQuirkEnabled, bool useWideViewport, bool loadWithOverviewMode)
144 if (useWideViewport || arguments.width == ViewportArguments::ValueDeviceWidth)
172 const float nonWideScale = arguments.zoom < 1 && arguments.width != ViewportArguments::ValueDeviceWidth ? -1 : oldInitialScale
    [all...]
Chrome.h 52 struct ViewportArguments;
127 void dispatchViewportPropertiesDidChange(const ViewportArguments&) const;
ChromeClient.h 82 struct ViewportArguments;
163 virtual void dispatchViewportPropertiesDidChange(const ViewportArguments&) const { }
Page.h 24 #include "core/dom/ViewportArguments.h"
111 ViewportArguments viewportArguments() const;
Page.cpp 166 ViewportArguments Page::viewportArguments() const
168 return mainFrame() && mainFrame()->document() ? mainFrame()->document()->viewportArguments() : ViewportArguments();
Chrome.cpp 375 void Chrome::dispatchViewportPropertiesDidChange(const ViewportArguments& arguments) const
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLMetaElement.cpp 80 document()->processViewport(contentValue, ViewportArguments::ViewportMeta);
84 document()->processViewport("width=device-width", ViewportArguments::HandheldFriendlyMeta);
86 document()->processViewport("width=device-width, initial-scale=1", ViewportArguments::MobileOptimizedMeta);
  /external/chromium_org/third_party/WebKit/Source/web/
ChromeClientImpl.h 129 virtual void dispatchViewportPropertiesDidChange(const WebCore::ViewportArguments&) const;
WebViewImpl.cpp     [all...]
WebViewImpl.h 452 void updatePageDefinedPageScaleConstraints(const WebCore::ViewportArguments&);
    [all...]
ChromeClientImpl.cpp 606 void ChromeClientImpl::dispatchViewportPropertiesDidChange(const ViewportArguments& arguments) const
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_dom.target.darwin-arm.mk 174 third_party/WebKit/Source/core/dom/ViewportArguments.cpp \
webcore_dom.target.darwin-mips.mk 174 third_party/WebKit/Source/core/dom/ViewportArguments.cpp \
webcore_dom.target.darwin-x86.mk 174 third_party/WebKit/Source/core/dom/ViewportArguments.cpp \
webcore_dom.target.linux-arm.mk 174 third_party/WebKit/Source/core/dom/ViewportArguments.cpp \
webcore_dom.target.linux-mips.mk 174 third_party/WebKit/Source/core/dom/ViewportArguments.cpp \
webcore_dom.target.linux-x86.mk 174 third_party/WebKit/Source/core/dom/ViewportArguments.cpp \
  /external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.cpp 61 #include "core/dom/ViewportArguments.h"
945 ViewportArguments arguments = page->viewportArguments();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebFrameTest.cpp 373 WebCore::ViewportArguments arguments = document->viewportArguments();
    [all...]

Completed in 493 milliseconds