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

1 2 3 4 5

  /external/webkit/Source/WebCore/plugins/
IFrameShimSupport.h 30 void getPluginOcclusions(Element*, Widget* parentWidget, const IntRect& frameRect, Vector<IntRect>& occlusions);
IFrameShimSupport.cpp 122 void getPluginOcclusions(Element* element, Widget* parentWidget, const IntRect& frameRect, Vector<IntRect>& occlusions)
154 && iframeRenderer->absoluteBoundingBoxRect().intersects(frameRect)
  /external/webkit/Source/WebKit2/PluginProcess/qt/
PluginControllerProxyQt.cpp 48 void PluginControllerProxy::platformGeometryDidChange(const IntRect& frameRect, const IntRect&)
  /external/webkit/Source/WebCore/rendering/
RenderMeter.cpp 50 setWidth(theme()->meterSizeForBounds(this, frameRect()).width());
56 setHeight(theme()->meterSizeForBounds(this, frameRect()).height());
  /external/chromium/chrome/browser/ui/cocoa/tab_contents/
tab_contents_controller.h 23 frameRect:(NSRect)frameRect;
  /external/webkit/Source/WebCore/platform/brew/
WidgetBrew.cpp 45 IntRect Widget::frameRect() const
  /external/webkit/Source/WebCore/platform/gtk/
ScrollViewGtk.cpp 112 int horizontalPageStep = max(max<int>(frameRect().width() * Scrollbar::minFractionToStepWhenPaging(), frameRect().width() - Scrollbar::maxOverlapBetweenPages()), 1);
118 resetValues ? 0 : frameRect().width());
151 int verticalPageStep = max(max<int>(frameRect().width() * Scrollbar::minFractionToStepWhenPaging(), frameRect().width() - Scrollbar::maxOverlapBetweenPages()), 1);
157 resetValues ? 0 : frameRect().height());
  /external/webkit/Source/WebKit/mac/Carbon/
CarbonWindowFrame.m 86 + (NSRect)contentRectForFrameRect:(NSRect)frameRect styleMask:(NSUInteger)style {
89 return frameRect;
191 - (NSRect)dragRectForFrameRect:(NSRect)frameRect {
197 dragRect.origin.y = NSMaxY(frameRect) - dragRect.size.height;
198 dragRect.size.width = frameRect.size.width;
199 dragRect.origin.x = frameRect.origin.x;
  /external/webkit/Source/WebCore/platform/chromium/
WidgetChromium.cpp 77 IntRect Widget::frameRect() const
  /external/webkit/Source/WebCore/platform/win/
WidgetWin.cpp 91 IntRect Widget::frameRect() const
  /external/qemu/distrib/sdl-1.2.12/src/video/quartz/
SDL_QuartzWindow.h 28 - (void)setFrame:(NSRect)frameRect display:(BOOL)flag;
SDL_QuartzWindow.m 106 - (void)setFrame:(NSRect)frameRect display:(BOOL)flag
117 [ super setFrame:frameRect display:flag ];
123 [ super setFrame:frameRect display:flag ];
  /external/webkit/Source/WebCore/platform/
Widget.h 153 int x() const { return frameRect().x(); }
154 int y() const { return frameRect().y(); }
155 int width() const { return frameRect().width(); }
156 int height() const { return frameRect().height(); }
157 IntSize size() const { return frameRect().size(); }
158 IntPoint pos() const { return frameRect().location(); }
162 virtual IntRect frameRect() const;
ScrollView.cpp 574 IntRect oldRect(m_horizontalScrollbar->frameRect());
580 if (!m_scrollbarsSuppressed && oldRect != m_horizontalScrollbar->frameRect())
595 IntRect oldRect(m_verticalScrollbar->frameRect());
601 if (!m_scrollbarsSuppressed && oldRect != m_verticalScrollbar->frameRect())
805 if (m_horizontalScrollbar && m_horizontalScrollbar->frameRect().contains(viewPoint))
807 if (m_verticalScrollbar && m_verticalScrollbar->frameRect().contains(viewPoint))
838 IntRect oldRect = frameRect();
887 IntRect scrollbarRect = scrollbar->frameRect();
    [all...]
  /external/webkit/Source/WebCore/platform/image-decoders/gif/
GIFImageDecoder.cpp 327 IntRect frameRect(frameReader->x_offset, frameReader->y_offset, frameReader->width, frameReader->height);
329 // Make sure the frameRect doesn't extend outside the buffer.
330 if (frameRect.maxX() > size().width())
331 frameRect.setWidth(size().width() - frameReader->x_offset);
332 if (frameRect.maxY() > size().height())
333 frameRect.setHeight(size().height() - frameReader->y_offset);
336 int left = upperBoundScaledX(frameRect.x());
337 int right = lowerBoundScaledX(frameRect.maxX(), left);
338 int top = upperBoundScaledY(frameRect.y());
339 int bottom = lowerBoundScaledY(frameRect.maxY(), top)
    [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorFrontendClientLocal.cpp 129 FloatRect frameRect = m_frontendPage->chrome()->windowRect();
130 frameRect.move(x, y);
131 m_frontendPage->chrome()->setWindowRect(frameRect);
  /external/webkit/Source/WebCore/accessibility/
AccessibilityScrollbar.cpp 56 return m_scrollbar->frameRect();
  /external/webkit/Source/WebCore/platform/qt/
WidgetQt.cpp 62 IntRect Widget::frameRect() const
  /external/webkit/Source/WebKit2/UIProcess/
FindIndicator.h 47 WebCore::FloatRect frameRect() const;
  /external/webkit/Source/WebKit/chromium/src/
WebPluginContainerImpl.cpp 86 void WebPluginContainerImpl::setFrameRect(const IntRect& frameRect)
88 Widget::setFrameRect(frameRect);
101 if (!frameRect().intersects(damageRect))
306 calculateGeometry(frameRect(), windowRect, clipRect, cutOutRects);
554 void WebPluginContainerImpl::calculateGeometry(const IntRect& frameRect,
560 parent()->contentsToWindow(frameRect.location()), frameRect.size());
566 getPluginOcclusions(m_element, this->parent(), frameRect, cutOutRects);
569 cutOutRects[i].move(-frameRect.x(), -frameRect.y())
    [all...]
WebPluginContainerImpl.h 138 void calculateGeometry(const WebCore::IntRect& frameRect,
143 void windowCutOutRects(const WebCore::IntRect& frameRect,
  /external/webkit/Source/WebKit/win/WebCoreSupport/
EmbeddedWidget.cpp 85 if (rect != frameRect())
102 m_windowRect = IntRect(frameView->contentsToWindow(frameRect().location()), frameRect().size());
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginProxy.cpp 170 void PluginProxy::geometryDidChange(const IntRect& frameRect, const IntRect& clipRect)
174 m_frameRect = frameRect;
178 m_connection->connection()->send(Messages::PluginControllerProxy::GeometryDidChange(frameRect, clipRect, pluginBackingStoreHandle), m_pluginInstanceID, CoreIPC::DispatchMessageEvenWhenWaitingForSyncReply);
184 m_backingStore = ShareableBitmap::create(frameRect.size(), ShareableBitmap::SupportsAlpha);
186 } else if (frameRect.size() != m_backingStore->size()) {
188 if (!m_backingStore->resize(frameRect.size()))
198 m_pluginBackingStore = ShareableBitmap::createShareable(frameRect.size(), ShareableBitmap::SupportsAlpha);
211 m_connection->connection()->send(Messages::PluginControllerProxy::GeometryDidChange(frameRect, clipRect, pluginBackingStoreHandle), m_pluginInstanceID, CoreIPC::DispatchMessageEvenWhenWaitingForSyncReply);
  /external/chromium/chrome/browser/ui/cocoa/extensions/
browser_action_button.h 64 - (void)setFrame:(NSRect)frameRect animate:(BOOL)animate;
  /external/webkit/Source/WebCore/platform/android/
WidgetAndroid.cpp 50 IntRect Widget::frameRect() const

Completed in 507 milliseconds

1 2 3 4 5