Searched defs:frameRect (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/third_party/WebKit/public/web/
H A DWebRemoteFrameClient.h31 const WebRect& frameRect,
30 initializeChildFrame( const WebRect& frameRect, float scaleFactor) argument
H A DWebFrameClient.h557 virtual void initializeChildFrame(const WebRect& frameRect, float scaleFactor) { } argument
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DFrameSelectionTest.cpp132 IntRect frameRect = frameView.frameRect(); local
133 frameRect.setWidth(frameRect.width() + 1);
134 frameRect.setHeight(frameRect.height() + 1);
135 dummyPageHolder().frameView().setFrameRect(frameRect);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderFullScreen.cpp186 void RenderFullScreen::createPlaceholder(PassRefPtr<RenderStyle> style, const LayoutRect& frameRect) argument
189 style->setWidth(Length(frameRect.width(), Fixed));
191 style->setHeight(Length(frameRect.height(), Fixed));
H A DFloatingObjects.h76 const LayoutRect& frameRect() const { ASSERT(isPlaced()); return m_frameRect; } function in class:blink::FloatingObject
77 void setFrameRect(const LayoutRect& frameRect) { ASSERT(!isInPlacedTree()); m_frameRect = frameRect; } argument
H A DFloatingObjects.cpp63 FloatingObject::FloatingObject(RenderBox* renderer, Type type, const LayoutRect& frameRect, bool shouldPaint, bool isDescendant) argument
66 , m_frameRect(frameRect)
89 return adoptPtr(new FloatingObject(renderer(), type(), LayoutRect(frameRect().location() - offset, frameRect().size()), shouldPaint, isDescendant));
301 return FloatingObjectInterval(floatingObject->frameRect().pixelSnappedY(), floatingObject->frameRect().pixelSnappedMaxY(), floatingObject);
302 return FloatingObjectInterval(floatingObject->frameRect().pixelSnappedX(), floatingObject->frameRect().pixelSnappedMaxX(), floatingObject);
530 return String::format("%p (%dx%d %dx%d)", floatingObject, floatingObject->frameRect().pixelSnappedX(), floatingObject->frameRect()
[all...]
H A DInlineFlowBox.cpp1069 LayoutRect frameRect = roundedFrameRect(); local
1070 LayoutUnit minX = frameRect.x();
1071 LayoutUnit minY = frameRect.y();
1072 LayoutUnit width = frameRect.width();
1073 LayoutUnit height = frameRect.height();
H A DRenderBox.h177 LayoutRect frameRect() const { return m_frameRect; } function in class:blink::RenderBox
/external/chromium_org/third_party/WebKit/Source/core/plugins/
H A DPluginOcclusionSupport.cpp129 static void addTreeToOcclusions(const RenderObject* renderer, const IntRect& frameRect, Vector<IntRect>& occlusions) argument
133 if (renderer->isBox() && intersectsRect(renderer, frameRect))
136 addTreeToOcclusions(child, frameRect, occlusions);
151 void getPluginOcclusions(Element* element, Widget* parentWidget, const IntRect& frameRect, Vector<IntRect>& occlusions) argument
183 if (isHTMLIFrameElement(*element) && intersectsRect(iframeRenderer, frameRect)) {
200 addTreeToOcclusions(elements[i]->renderer(), frameRect, occlusions);
/external/pdfium/core/src/fxge/Microsoft SDK/include/
H A DGdiPlusMetaFile.h108 IN const RectF & frameRect,
117 referenceHdc, type, &frameRect, frameUnit,
126 IN const Rect & frameRect,
135 referenceHdc, type, &frameRect, frameUnit,
162 IN const RectF & frameRect,
171 referenceHdc, type, &frameRect, frameUnit,
181 IN const Rect & frameRect,
190 referenceHdc, type, &frameRect, frameUnit,
217 IN const RectF & frameRect,
226 referenceHdc, type, &frameRect, frameUni
106 Metafile( IN HDC referenceHdc, IN const RectF & frameRect, IN MetafileFrameUnit frameUnit = MetafileFrameUnitGdi, IN EmfType type = EmfTypeEmfPlusDual, IN const WCHAR * description = NULL ) argument
124 Metafile( IN HDC referenceHdc, IN const Rect & frameRect, IN MetafileFrameUnit frameUnit = MetafileFrameUnitGdi, IN EmfType type = EmfTypeEmfPlusDual, IN const WCHAR * description = NULL ) argument
159 Metafile( IN const WCHAR* fileName, IN HDC referenceHdc, IN const RectF & frameRect, IN MetafileFrameUnit frameUnit = MetafileFrameUnitGdi, IN EmfType type = EmfTypeEmfPlusDual, IN const WCHAR * description = NULL ) argument
178 Metafile( IN const WCHAR* fileName, IN HDC referenceHdc, IN const Rect & frameRect, IN MetafileFrameUnit frameUnit = MetafileFrameUnitGdi, IN EmfType type = EmfTypeEmfPlusDual, IN const WCHAR * description = NULL ) argument
214 Metafile( IN IStream * stream, IN HDC referenceHdc, IN const RectF & frameRect, IN MetafileFrameUnit frameUnit = MetafileFrameUnitGdi, IN EmfType type = EmfTypeEmfPlusDual, IN const WCHAR * description = NULL ) argument
233 Metafile( IN IStream * stream, IN HDC referenceHdc, IN const Rect & frameRect, IN MetafileFrameUnit frameUnit = MetafileFrameUnitGdi, IN EmfType type = EmfTypeEmfPlusDual, IN const WCHAR * description = NULL ) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTextFormControlElementTest.cpp91 IntRect frameRect = frameView.frameRect(); local
92 frameRect.setWidth(frameRect.width() + 1);
93 frameRect.setHeight(frameRect.height() + 1);
94 page().frameView().setFrameRect(frameRect);
/external/chromium_org/third_party/WebKit/Source/platform/
H A DWidget.h56 int x() const { return frameRect().x(); }
57 int y() const { return frameRect().y(); }
58 int width() const { return frameRect().width(); }
59 int height() const { return frameRect().height(); }
60 IntSize size() const { return frameRect().size(); }
61 IntPoint location() const { return frameRect().location(); }
64 const IntRect& frameRect() const { return m_frame; } function in class:blink::Widget
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebScrollbarThemeClientImpl.cpp95 IntRect WebScrollbarThemeClientImpl::frameRect() const function in class:blink::WebScrollbarThemeClientImpl
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
H A DGIFImageDecoder.cpp309 IntRect frameRect = frameContext->frameRect(); local
311 // Make sure the frameRect doesn't extend outside the buffer.
312 if (frameRect.maxX() > size().width())
313 frameRect.setWidth(size().width() - frameRect.x());
314 if (frameRect.maxY() > size().height())
315 frameRect.setHeight(size().height() - frameRect.y());
317 buffer.setOriginalFrameRect(frameRect);
[all...]
H A DGIFImageReader.h222 blink::IntRect frameRect() const { return blink::IntRect(m_xOffset, m_yOffset, m_width, m_height); } function in struct:GIFFrameContext
/external/chromium_org/third_party/WebKit/Source/web/
H A DScrollbarGroup.cpp37 ScrollbarGroup::ScrollbarGroup(FrameView* frameView, const IntRect& frameRect) argument
39 , m_frameRect(frameRect)
126 void ScrollbarGroup::setFrameRect(const IntRect& frameRect) argument
128 m_frameRect = frameRect;
H A DWebPluginContainerImpl.cpp101 void WebPluginContainerImpl::setFrameRect(const IntRect& frameRect) argument
103 Widget::setFrameRect(frameRect);
113 if (!frameRect().intersects(damageRect))
402 calculateGeometry(frameRect(), windowRect, clipRect, cutOutRects);
408 m_scrollbarGroup->setFrameRect(frameRect());
648 m_scrollbarGroup = adoptPtr(new ScrollbarGroup(m_element->document().frame()->view(), frameRect()));
930 void WebPluginContainerImpl::calculateGeometry(const IntRect& frameRect, argument
935 windowRect = toScrollView(parent())->contentsToWindow(frameRect);
941 getPluginOcclusions(m_element, this->parent(), frameRect, cutOutRects);
944 cutOutRects[i].move(-frameRect
[all...]

Completed in 5341 milliseconds