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

  /external/chromium_org/third_party/WebKit/Source/core/testing/
LayerRect.h 52 ClientRect* layerRelativeRect() const { return m_rect.get(); }
57 , m_rect(rect)
62 RefPtr<ClientRect> m_rect; member in class:WebCore::LayerRect
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ClientRect.h 45 float top() const { return m_rect.y(); }
46 float right() const { return m_rect.maxX(); }
47 float bottom() const { return m_rect.maxY(); }
48 float left() const { return m_rect.x(); }
49 float width() const { return m_rect.width(); }
50 float height() const { return m_rect.height(); }
57 FloatRect m_rect; member in class:WebCore::ClientRect
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderSelectionInfo.h 65 , m_rect(o->canUpdateSelectionOnRootLineBoxes() ? o->selectionRectForRepaint(m_repaintContainer, clipToVisibleContent) : LayoutRect())
71 m_object->repaintUsingContainer(m_repaintContainer, enclosingIntRect(m_rect));
74 LayoutRect rect() const { return m_rect; }
77 LayoutRect m_rect; // relative to repaint container member in class:WebCore::RenderSelectionInfo
RenderInline.cpp 838 FloatRect& m_rect; member in class:WebCore::__anon12724::LinesBoundingBoxGeneratorContext
    [all...]
RenderLayer.h 90 : m_rect(rect)
94 const LayoutRect& rect() const { return m_rect; }
95 void setRect(const LayoutRect& rect) { m_rect = rect; }
104 void intersect(const LayoutRect& other) { m_rect.intersect(other); }
107 m_rect.intersect(other.rect());
111 void move(LayoutUnit x, LayoutUnit y) { m_rect.move(x, y); }
112 void move(const LayoutSize& size) { m_rect.move(size); }
113 void moveBy(const LayoutPoint& point) { m_rect.moveBy(point); }
115 bool isEmpty() const { return m_rect.isEmpty(); }
116 bool intersects(const LayoutRect& rect) const { return m_rect.intersects(rect);
120 LayoutRect m_rect; member in class:WebCore::ClipRect
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
RoundedRect.h 80 const IntRect& rect() const { return m_rect; }
83 bool isEmpty() const { return m_rect.isEmpty(); }
88 void setRect(const IntRect& rect) { m_rect = rect; }
91 void move(const IntSize& size) { m_rect.move(size); }
92 void inflate(int size) { m_rect.inflate(size); }
108 IntRect m_rect; member in class:WebCore::RoundedRect
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
TestPlugin.h 137 WebKit::WebRect m_rect; member in class:WebTestRunner::TestPlugin
  /external/chromium_org/third_party/WebKit/Source/web/
WebFrameImpl.h 317 WebCore::FloatRect m_rect; member in struct:WebKit::WebFrameImpl::FindMatch

Completed in 55 milliseconds