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

  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/win/
NetscapePluginWin.cpp 128 clipRectInPluginWindowCoordinates.move(-m_frameRect.x(), -m_frameRect.y());
135 ::MoveWindow(m_window, m_frameRect.x(), m_frameRect.y(), m_frameRect.width(), m_frameRect.height(), TRUE);
155 windowpos.x = m_frameRect.x();
156 windowpos.y = m_frameRect.y();
157 windowpos.cx = m_frameRect.width();
158 windowpos.cy = m_frameRect.height()
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/x11/
NetscapePluginX11.cpp 191 m_drawable = XCreatePixmap(display, rootWindowID(), m_frameRect.width(), m_frameRect.height(), displayDepth());
215 painter->translate(m_frameRect.x(), m_frameRect.y());
229 exposedRect.intersect(m_frameRect);
230 exposedRect.move(-m_frameRect.x(), -m_frameRect.y());
249 painter->translate(-m_frameRect.x(), -m_frameRect.y());
344 setXButtonEventFields(xEvent, event, m_frameRect.location())
    [all...]
  /external/webkit/Source/WebKit2/PluginProcess/mac/
PluginControllerProxyMac.mm 77 [pluginLayer setFrame:CGRectMake(0, 0, m_frameRect.width(), m_frameRect.height())];
  /external/webkit/Source/WebCore/rendering/
RenderBox.h 47 int x() const { return m_frameRect.x(); }
48 int y() const { return m_frameRect.y(); }
49 int width() const { return m_frameRect.width(); }
50 int height() const { return m_frameRect.height(); }
52 void setX(int x) { m_frameRect.setX(x); }
53 void setY(int y) { m_frameRect.setY(y); }
54 void setWidth(int width) { m_frameRect.setWidth(width); }
55 void setHeight(int height) { m_frameRect.setHeight(height); }
100 IntPoint location() const { return m_frameRect.location(); }
102 IntSize size() const { return m_frameRect.size();
    [all...]
RenderBlock.h 400 , m_frameRect(frameRect)
415 int x() const { ASSERT(isPlaced()); return m_frameRect.x(); }
416 int maxX() const { ASSERT(isPlaced()); return m_frameRect.maxX(); }
417 int y() const { ASSERT(isPlaced()); return m_frameRect.y(); }
418 int maxY() const { ASSERT(isPlaced()); return m_frameRect.maxY(); }
419 int width() const { return m_frameRect.width(); }
420 int height() const { return m_frameRect.height(); }
422 void setX(int x) { m_frameRect.setX(x); }
423 void setY(int y) { m_frameRect.setY(y); }
424 void setWidth(int width) { m_frameRect.setWidth(width);
    [all...]
RenderBox.cpp     [all...]
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NetscapePlugin.cpp 113 rect = IntRect(0, 0, m_frameRect.width(), m_frameRect.height());
364 m_npWindow.x = m_frameRect.x();
365 m_npWindow.y = m_frameRect.y();
367 m_npWindow.width = m_frameRect.width();
368 m_npWindow.height = m_frameRect.height();
516 if (!supportsSnapshotting() || m_frameRect.isEmpty())
521 RefPtr<ShareableBitmap> bitmap = ShareableBitmap::createShareable(m_frameRect.size(), ShareableBitmap::SupportsAlpha);
524 context->translate(-m_frameRect.x(), -m_frameRect.y())
    [all...]
NetscapePlugin.h 201 WebCore::IntRect m_frameRect;
  /external/webkit/Source/WebKit2/PluginProcess/
PluginControllerProxy.cpp 152 graphicsContext->translate(-m_frameRect.x(), -m_frameRect.y());
187 dirtyRect.move(m_frameRect.x(), m_frameRect.y());
190 dirtyRect.intersect(m_frameRect);
367 m_frameRect = frameRect;
474 if (m_frameRect.isEmpty())
477 m_dirtyRect = m_frameRect;
PluginControllerProxy.h 153 WebCore::IntRect m_frameRect;
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginProxy.cpp 137 m_pluginBackingStore->paint(*graphicsContext, IntPoint(), IntRect(0, 0, m_frameRect.width(), m_frameRect.height()));
143 dirtyRectInPluginCoordinates.move(-m_frameRect.x(), -m_frameRect.y());
174 m_frameRect = frameRect;
462 if (paintedRect == m_frameRect)
466 paintedRectPluginCoordinates.move(-m_frameRect.x(), -m_frameRect.y());
PluginProxy.h 130 WebCore::IntRect m_frameRect;
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/mac/
NetscapePluginMac.mm 387 context->translate(m_frameRect.x(), m_frameRect.y());
398 event.data.draw.x = dirtyRect.x() - m_frameRect.x();
399 event.data.draw.y = dirtyRect.y() - m_frameRect.y();
502 NPCocoaEvent event = initializeMouseEvent(mouseEvent, m_frameRect.location());
569 event.data.mouse.pluginX = wheelEvent.position().x() - m_frameRect.x();
570 event.data.mouse.pluginY = wheelEvent.position().y() - m_frameRect.y();
598 fillInCocoaEventFromMouseEvent(event, mouseEvent, m_frameRect.location());
624 fillInCocoaEventFromMouseEvent(event, mouseEvent, m_frameRect.location());

Completed in 101 milliseconds