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

  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginProxy.h 130 WebCore::IntRect m_frameRect;
  /external/webkit/Source/WebKit2/PluginProcess/
PluginControllerProxy.h 153 WebCore::IntRect m_frameRect;
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NetscapePlugin.h 201 WebCore::IntRect m_frameRect;
  /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...]

Completed in 185 milliseconds