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

  /external/webkit/WebCore/dom/
ClientRect.h 43 float top() const { return m_rect.y(); }
44 float right() const { return m_rect.right(); }
45 float bottom() const { return m_rect.bottom(); }
46 float left() const { return m_rect.x(); }
47 float width() const { return m_rect.width(); }
48 float height() const { return m_rect.height(); }
54 FloatRect m_rect; member in class:WebCore::ClientRect
ClientRect.cpp 37 : m_rect(rect)
  /external/webkit/WebCore/platform/graphics/android/
PlatformGraphicsContext.h 41 : m_node(node), m_rect(r), m_state(WebCore::RenderSkinAndroid::kDisabled)
59 m_rect = src.m_rect;
70 m_rect = src.m_rect;
91 WebCore::IntRect rect() { return m_rect; }
99 if (m_rect != r) {
100 m_rect = r;
120 SkCanvas* canvas = m_picture->beginRecording(m_rect.width(), m_rect.height())
129 WebCore::IntRect m_rect; member in class:Container
    [all...]
  /external/webkit/WebCore/rendering/
RenderSelectionInfo.h 64 , m_rect(o->needsLayout() ? IntRect() : o->selectionRectForRepaint(m_repaintContainer, clipToVisibleContent))
70 m_object->repaintUsingContainer(m_repaintContainer, m_rect);
73 IntRect rect() const { return m_rect; }
76 IntRect m_rect; // relative to repaint container member in class:WebCore::RenderSelectionInfo
  /external/webkit/WebCore/html/
DataGridColumn.h 70 m_rect = IntRect();
79 const IntRect& rect() const { return m_rect; }
80 void setRect(const IntRect& rect) { m_rect = rect; }
110 IntRect m_rect; member in class:WebCore::DataGridColumn
  /external/webkit/WebKit/win/
FullscreenVideoController.cpp 105 m_rect.setWidth(m_buttonImage->width());
106 m_rect.setHeight(m_buttonImage->height());
115 context.drawImage(image, DeviceColorSpace, m_rect.location());
130 IntSize radius(m_rect.height() / 2, m_rect.height() / 2);
131 context.fillRoundedRect(m_rect, radius, radius, radius, radius, Color(sliderGutterColor), DeviceColorSpace);
138 context.drawEllipse(IntRect(m_rect.location().x() + m_buttonPosition, m_rect.location().y() - (m_buttonSize - m_rect.height()) / 2, m_buttonSize, m_buttonSize));
145 points[0].setX(m_rect.location().x() + m_buttonPosition + half)
    [all...]
FullscreenVideoController.h 45 HUDWidget(const WebCore::IntRect& rect) : m_rect(rect) { }
51 bool hitTest(const WebCore::IntPoint& point) const { return m_rect.contains(point); }
54 WebCore::IntRect m_rect; member in class:HUDWidget
92 float value() const { return static_cast<float>(m_buttonPosition) / (m_rect.width() - m_buttonSize); }
93 void setValue(float value) { m_buttonPosition = static_cast<int>(value * (m_rect.width() - m_buttonSize)); }
  /external/webkit/WebCore/platform/image-decoders/
ImageDecoder.h 123 const IntRect& rect() const { return m_rect; }
129 void setRect(const IntRect& r) { m_rect = r; }
193 IntRect m_rect; // The rect of the original specified frame within the overall buffer.
  /external/webkit/WebCore/platform/graphics/mac/
MediaPlayerPrivateQTKit.h 176 IntRect m_rect; member in class:WebCore::MediaPlayerPrivate
MediaPlayerPrivateQTKit.mm 207 , m_rect()
    [all...]

Completed in 330 milliseconds