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

  /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
ClientRect.cpp 38 : m_rect(rect)
44 : m_rect(rect)
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
RoundedRect.cpp 86 IntRect old = m_rect;
88 m_rect.inflate(size);
91 if (m_rect.width() < m_rect.height())
92 factor = old.width() ? (float)m_rect.width() / old.width() : int(0);
94 factor = old.height() ? (float)m_rect.height() / old.height() : int(0);
138 : m_rect(x, y, width, height)
143 : m_rect(rect)
149 : m_rect(rect)
157 int minX = m_rect.x() + max(m_radii.topLeft().width(), m_radii.bottomLeft().width())
    [all...]
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/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/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
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...]
RenderInline.cpp 838 FloatRect& m_rect; member in class:WebCore::__anon12724::LinesBoundingBoxGeneratorContext
    [all...]
RenderLayer.cpp 123 return hitTestLocation.intersects(m_rect);
    [all...]
  /external/chromium_org/chrome_frame/turndown_prompt/
turndown_prompt_window.cc 149 resize_data.m_rect.right = resize_data.m_rect.left + kBitmapImageSize;
150 resize_data.m_rect.top = 0;
151 resize_data.m_rect.bottom = kBitmapImageSize;
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
TestPlugin.cpp 251 if (clipRect == m_rect)
253 m_rect = clipRect;
254 if (m_rect.isEmpty())
257 m_context->reshape(m_rect.width, m_rect.height);
258 m_context->viewport(0, 0, m_rect.width, m_rect.height);
265 m_context->texImage2D(GL_TEXTURE_2D, 0, GL_RGBA, m_rect.width, m_rect.height, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0);
344 m_context->viewport(0, 0, m_rect.width, m_rect.height)
    [all...]
TestPlugin.h 137 WebKit::WebRect m_rect; member in class:WebTestRunner::TestPlugin
  /external/chromium_org/third_party/WebKit/Source/web/
WebFrameImpl.cpp     [all...]
WebFrameImpl.h 317 WebCore::FloatRect m_rect; member in struct:WebKit::WebFrameImpl::FindMatch

Completed in 65 milliseconds