Searched refs:frameRect (Results 1 - 25 of 68) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/core/plugins/
H A DIFrameShimSupport.h30 void getPluginOcclusions(Element*, Widget* parentWidget, const IntRect& frameRect, Vector<IntRect>& occlusions);
H A DIFrameShimSupport.cpp122 void getPluginOcclusions(Element* element, Widget* parentWidget, const IntRect& frameRect, Vector<IntRect>& occlusions) argument
154 && iframeRenderer->absoluteBoundingBoxRectIgnoringTransforms().intersects(frameRect)
/external/chromium_org/third_party/WebKit/Source/core/platform/
H A DWidget.h55 int x() const { return frameRect().x(); }
56 int y() const { return frameRect().y(); }
57 int width() const { return frameRect().width(); }
58 int height() const { return frameRect().height(); }
59 IntSize size() const { return frameRect().size(); }
60 IntPoint location() const { return frameRect().location(); }
63 const IntRect& frameRect() const { return m_frame; } function in class:WebCore::Widget
H A DScrollView.cpp473 IntRect oldRect(m_horizontalScrollbar->frameRect());
479 if (!m_scrollbarsSuppressed && oldRect != m_horizontalScrollbar->frameRect())
492 IntRect oldRect(m_verticalScrollbar->frameRect());
498 if (!m_scrollbarsSuppressed && oldRect != m_verticalScrollbar->frameRect())
726 if (m_horizontalScrollbar && m_horizontalScrollbar->shouldParticipateInHitTesting() && m_horizontalScrollbar->frameRect().contains(viewPoint))
728 if (m_verticalScrollbar && m_verticalScrollbar->shouldParticipateInHitTesting() && m_verticalScrollbar->frameRect().contains(viewPoint))
735 IntRect oldRect = frameRect();
769 IntRect scrollbarRect = scrollbar->frameRect();
965 horizontalOverhangRect = frameRect();
970 horizontalOverhangRect = frameRect();
[all...]
H A DScrollbarThemeClient.h53 virtual IntRect frameRect() const = 0;
H A DScrollbar.h66 virtual IntRect frameRect() const { return Widget::frameRect(); } function in class:WebCore::Scrollbar
/external/chromium/chrome/browser/ui/cocoa/tab_contents/
H A Dtab_contents_controller.h23 frameRect:(NSRect)frameRect;
/external/chromium_org/third_party/WebKit/Source/core/platform/mac/
H A DScrollbarThemeMacOverlayAPI.mm94 CGRect frameRect = scrollbar->frameRect();
97 [scrollbarPainter setBoundsSize: NSSizeFromCGSize(frameRect.size)];
99 NSRect trackRect = NSMakeRect(0, 0, frameRect.size.width, frameRect.size.height);
111 CGRect frameRect = scrollbar->frameRect();
121 [scrollbarPainter setBoundsSize: NSSizeFromCGSize(scrollbar->frameRect().size())];
183 return scrollbar->frameRect();
H A DScrollbarThemeMacNonOverlayAPI.mm96 trackInfo.bounds = scrollbar->frameRect();
122 trackInfo.bounds = IntRect(IntPoint(), scrollbar->frameRect().size());
124 IntRect bufferRect(scrollbar->frameRect());
126 bufferRect.move(-scrollbar->frameRect().x(), -scrollbar->frameRect().y());
166 WebKit::WebRect(scrollbar->frameRect()),
171 context->drawImageBuffer(imageBuffer.get(), scrollbar->frameRect().location());
297 return scrollbar->frameRect();
/external/chromium_org/third_party/WebKit/Source/core/platform/mock/
H A DScrollbarThemeMock.cpp37 return scrollbar->frameRect();
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderFullScreen.h42 void createPlaceholder(PassRefPtr<RenderStyle>, const LayoutRect& frameRect);
H A DRenderMeter.cpp58 IntSize frameSize = theme()->meterSizeForBounds(this, pixelSnappedIntRect(frameRect()));
66 LayoutRect frame = frameRect();
H A DRenderFullScreen.cpp173 void RenderFullScreen::createPlaceholder(PassRefPtr<RenderStyle> style, const LayoutRect& frameRect) argument
176 style->setWidth(Length(frameRect.width(), Fixed));
178 style->setHeight(Length(frameRect.height(), Fixed));
H A DRenderScrollbarTheme.cpp86 return scrollbar->frameRect();
118 toRenderScrollbar(scrollbar)->paintPart(context, ScrollbarBGPart, scrollbar->frameRect());
/external/qemu/distrib/sdl-1.2.15/src/video/quartz/
H A DSDL_QuartzWindow.h36 - (void)setFrame:(NSRect)frameRect display:(BOOL)flag;
H A DSDL_QuartzWindow.m105 - (void)setFrame:(NSRect)frameRect display:(BOOL)flag
116 [ super setFrame:frameRect display:flag ];
122 [ super setFrame:frameRect display:flag ];
/external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/gif/
H A DGIFImageDecoder.cpp305 IntRect frameRect = frameContext->frameRect(); local
307 // Make sure the frameRect doesn't extend outside the buffer.
308 if (frameRect.maxX() > size().width())
309 frameRect.setWidth(size().width() - frameRect.x());
310 if (frameRect.maxY() > size().height())
311 frameRect.setHeight(size().height() - frameRect.y());
313 buffer.setOriginalFrameRect(frameRect);
[all...]
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAccessibilityScrollbar.cpp52 return m_scrollbar->frameRect();
/external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/webp/
H A DWEBPImageDecoder.cpp276 IntRect frameRect(frame.x_offset, frame.y_offset, frame.width, frame.height);
278 // Make sure the frameRect doesn't extend outside the buffer.
279 if (frameRect.maxX() > size().width())
280 frameRect.setWidth(size().width() - frame.x_offset);
281 if (frameRect.maxY() > size().height())
282 frameRect.setHeight(size().height() - frame.y_offset);
283 buffer.setOriginalFrameRect(frameRect);
290 m_frameBackgroundHasAlpha = !frameRect.contains(IntRect(IntPoint(), size()));
401 const IntRect& frameRect = buffer.originalFrameRect(); local
402 ASSERT_WITH_SECURITY_IMPLICATION(width == frameRect
514 const IntRect& frameRect = buffer.originalFrameRect(); local
[all...]
/external/chromium/chrome/browser/ui/cocoa/extensions/
H A Dbrowser_action_button.h64 - (void)setFrame:(NSRect)frameRect animate:(BOOL)animate;
/external/chromium_org/chrome/browser/ui/cocoa/extensions/
H A Dbrowser_action_button.h60 - (void)setFrame:(NSRect)frameRect animate:(BOOL)animate;
/external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
H A DScrollbarThemeChromiumOverlay.cpp93 IntRect rect = scrollbar->frameRect();
/external/chromium_org/third_party/WebKit/Source/web/
H A DScrollbarGroup.cpp39 ScrollbarGroup::ScrollbarGroup(FrameView* frameView, const IntRect& frameRect) argument
41 , m_frameRect(frameRect)
134 void ScrollbarGroup::setFrameRect(const IntRect& frameRect) argument
136 m_frameRect = frameRect;
H A DWebPluginScrollbarImpl.cpp127 return m_scrollbar->frameRect().location();
132 return m_scrollbar->frameRect().size();
199 IntRect oldRect = m_scrollbar->frameRect();
282 if (!m_scrollbar->frameRect().contains(mousedown.x, mousedown.y))
304 if (m_scrollbar->frameRect().contains(mousemove.x, mousemove.y)
H A DWebPluginContainerImpl.h177 void calculateGeometry(const WebCore::IntRect& frameRect,
182 void windowCutOutRects(const WebCore::IntRect& frameRect,

Completed in 1094 milliseconds

123