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

  /external/chromium_org/third_party/WebKit/Source/core/frame/
SmartClip.h 49 , m_rect(rect)
59 IntRect m_rect; member in class:blink::SmartClipData
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ClientRect.h 56 float top() const { return m_rect.y(); }
57 float right() const { return m_rect.maxX(); }
58 float bottom() const { return m_rect.maxY(); }
59 float left() const { return m_rect.x(); }
60 float width() const { return m_rect.width(); }
61 float height() const { return m_rect.height(); }
70 FloatRect m_rect; member in class:blink::FINAL
  /external/chromium_org/third_party/WebKit/Source/core/testing/
LayerRect.h 58 ClientRect* layerRelativeRect() const { return m_rect.get(); }
63 visitor->trace(m_rect);
72 , m_rect(rect) { }
78 RefPtrWillBeMember<ClientRect> m_rect; member in class:blink::FINAL
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
ClipRect.h 43 : m_rect(rect)
47 const LayoutRect& rect() const { return m_rect; }
48 void setRect(const LayoutRect& rect) { m_rect = rect; }
57 void intersect(const LayoutRect& other) { m_rect.intersect(other); }
60 m_rect.intersect(other.rect());
64 void move(LayoutUnit x, LayoutUnit y) { m_rect.move(x, y); }
65 void move(const LayoutSize& size) { m_rect.move(size); }
66 void moveBy(const LayoutPoint& point) { m_rect.moveBy(point); }
68 bool isEmpty() const { return m_rect.isEmpty(); }
69 bool intersects(const LayoutRect& rect) const { return m_rect.intersects(rect);
73 LayoutRect m_rect; member in class:blink::ClipRect
    [all...]
RenderSelectionInfo.h 73 m_rect = o->selectionRectForPaintInvalidation(m_paintInvalidationContainer);
76 RenderLayer::mapRectToPaintBackingCoordinates(m_paintInvalidationContainer, m_rect);
78 m_rect = LayoutRect();
84 m_object->invalidatePaintUsingContainer(m_paintInvalidationContainer, enclosingIntRect(m_rect), InvalidationSelection);
87 LayoutRect rect() const { return m_rect; }
90 LayoutRect m_rect; // relative to paint invalidation container member in class:blink::FINAL
RenderInline.cpp 871 FloatRect& m_rect; member in class:blink::__anon15765::LinesBoundingBoxGeneratorContext
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatRoundedRect.h 88 const FloatRect& rect() const { return m_rect; }
91 bool isEmpty() const { return m_rect.isEmpty(); }
93 void setRect(const FloatRect& rect) { m_rect = rect; }
96 void move(const FloatSize& size) { m_rect.move(size); }
97 void inflate(float size) { m_rect.inflate(size); }
103 return FloatRect(m_rect.x(), m_rect.y(), m_radii.topLeft().width(), m_radii.topLeft().height());
107 return FloatRect(m_rect.maxX() - m_radii.topRight().width(), m_rect.y(), m_radii.topRight().width(), m_radii.topRight().height());
111 return FloatRect(m_rect.x(), m_rect.maxY() - m_radii.bottomLeft().height(), m_radii.bottomLeft().width(), m_radii.bottomLe (…)
121 FloatRect m_rect; member in class:blink::FloatRoundedRect
    [all...]
RoundedRect.h 82 const IntRect& rect() const { return m_rect; }
85 bool isEmpty() const { return m_rect.isEmpty(); }
90 void setRect(const IntRect& rect) { m_rect = rect; }
93 void move(const IntSize& size) { m_rect.move(size); }
94 void inflate(int size) { m_rect.inflate(size); }
110 IntRect m_rect; member in class:blink::RoundedRect
  /external/chromium_org/third_party/WebKit/Source/web/
TextFinder.h 101 FloatRect m_rect; member in class:blink::TextFinder::FindMatch
  /external/deqp/modules/gles2/functional/
es2fColorClearTest.cpp 91 : m_rect(rect), m_colorMask(colorMask), m_color(color)
95 tcu::IVec4 m_rect; member in class:deqp::gles2::Functional::ClearInfo
178 if (de::inBounds(y, op.m_rect.y(), op.m_rect.y()+op.m_rect.w()))
194 if (de::inBounds(x, op.m_rect.x(), op.m_rect.x()+op.m_rect.z()) &&
195 de::inBounds(y, op.m_rect.y(), op.m_rect.y()+op.m_rect.w())
    [all...]
  /external/deqp/modules/gles3/functional/
es3fColorClearTest.cpp 91 : m_rect(rect), m_colorMask(colorMask), m_color(color)
95 tcu::IVec4 m_rect; member in class:deqp::gles3::Functional::ClearInfo
178 if (de::inBounds(y, op.m_rect.y(), op.m_rect.y()+op.m_rect.w()))
194 if (de::inBounds(x, op.m_rect.x(), op.m_rect.x()+op.m_rect.z()) &&
195 de::inBounds(y, op.m_rect.y(), op.m_rect.y()+op.m_rect.w())
    [all...]

Completed in 770 milliseconds