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

  /external/chromium_org/third_party/WebKit/Source/core/page/
PageScaleConstraints.cpp 55 if (!other.layoutSize.isEmpty())
56 layoutSize = other.layoutSize;
97 return layoutSize == other.layoutSize
PageScaleConstraints.h 39 FloatSize layoutSize;
  /external/chromium_org/third_party/WebKit/Source/web/tests/
ViewportTest.cpp 134 constraints.fitToContentsWidth(constraints.layoutSize.width(), initialWidth);
149 EXPECT_EQ(320, constraints.layoutSize.width());
150 EXPECT_EQ(352, constraints.layoutSize.height());
168 EXPECT_EQ(980, constraints.layoutSize.width());
169 EXPECT_EQ(352, constraints.layoutSize.height());
187 EXPECT_EQ(320, constraints.layoutSize.width());
188 EXPECT_EQ(352, constraints.layoutSize.height());
206 EXPECT_EQ(160, constraints.layoutSize.width());
207 EXPECT_EQ(176, constraints.layoutSize.height());
225 EXPECT_EQ(640, constraints.layoutSize.width())
    [all...]
WebFrameTest.cpp 801 EXPECT_EQ(fixedLayoutWidth, toLocalFrame(webViewHelper.webViewImpl()->page()->mainFrame())->view()->layoutSize().width());
802 EXPECT_EQ(fixedLayoutHeight, toLocalFrame(webViewHelper.webViewImpl()->page()->mainFrame())->view()->layoutSize().height());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
ImageQualityController.cpp 63 InterpolationQuality ImageQualityController::chooseInterpolationQuality(GraphicsContext* context, RenderObject* object, Image* image, const void* layer, const LayoutSize& layoutSize)
68 if (shouldPaintAtLowQuality(context, object, image, layer, layoutSize))
100 void ImageQualityController::set(RenderObject* object, LayerSizeMap* innerMap, const void* layer, const LayoutSize& size)
145 bool ImageQualityController::shouldPaintAtLowQuality(GraphicsContext* context, RenderObject* object, Image* image, const void *layer, const LayoutSize& layoutSize)
158 LayoutSize oldSize;
173 LayoutSize scaledImageSize = currentTransform.mapSize(image->size());
174 LayoutSize scaledLayoutSize = currentTransform.mapSize(roundedIntSize(layoutSize));
    [all...]
FastTextAutosizer.cpp 519 IntSize layoutSize = mainFrame->view()->layoutSize();
520 m_pageInfo.m_layoutWidth = horizontalWritingMode ? layoutSize.width() : layoutSize.height();
    [all...]
RenderView.cpp 183 ASSERT(layoutDeltaMatches(LayoutSize()));
275 getTransformFromContainer(0, LayoutSize(), t);
302 LayoutSize offsetForFixedPosition;
303 LayoutSize offset;
323 getTransformFromContainer(container, LayoutSize(), t);
339 getTransformFromContainer(0, LayoutSize(), t);
    [all...]
TextAutosizer.cpp 214 windowInfo.minLayoutSize = mainFrame->view()->layoutSize();
216 windowInfo.minLayoutSize = windowInfo.minLayoutSize.shrunkTo(toLocalFrame(frame)->view()->layoutSize());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
PageScaleConstraintsSet.cpp 182 float adjustedLayoutSizeWidth = m_pageDefinedConstraints.layoutSize.width();
183 float adjustedLayoutSizeHeight = m_pageDefinedConstraints.layoutSize.height();
233 m_pageDefinedConstraints.layoutSize.setWidth(adjustedLayoutSizeWidth);
234 m_pageDefinedConstraints.layoutSize.setHeight(adjustedLayoutSizeHeight);
WebViewImpl.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaValues.cpp 36 int viewportWidth = frame->view()->layoutSize(IncludeScrollbars).width();
43 int viewportHeight = frame->view()->layoutSize(IncludeScrollbars).height();
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ViewportDescription.cpp 198 result.layoutSize.setWidth(resultWidth);
199 result.layoutSize.setHeight(resultHeight);
Element.cpp 605 return adjustLayoutUnitForAbsoluteZoom(view->layoutSize().width(), *renderView);
626 return adjustLayoutUnitForAbsoluteZoom(view->layoutSize().height(), *renderView);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ViewHierarchy.java 248 LayoutPoint layoutSize = imageSize.toLayout();
251 return new ViewInfo(VIEW_MERGE, children.get(0), 0, 0, layoutSize.x, layoutSize.y);
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameView.cpp 247 m_size = LayoutSize();
898 if (!m_firstLayout && m_size.height() != layoutSize().height() && body->renderer()->enclosingBox()->stretchesToViewport())
921 m_lastViewportSize = layoutSize(IncludeScrollbars);
    [all...]
FrameView.h 106 IntSize layoutSize(IncludeScrollbarsInRect = ExcludeScrollbars) const;
418 LayoutSize m_size;
  /cts/tests/tests/widget/src/android/widget/cts/
GridViewTest.java 759 int layoutSize = (int)(50 * mContext.getResources().getDisplayMetrics().density);
760 imageView.setLayoutParams(new GridView.LayoutParams(layoutSize, layoutSize));
  /external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.cpp 906 constraints.fitToContentsWidth(constraints.layoutSize.width(), availableWidth);
    [all...]

Completed in 330 milliseconds