Home
last modified time | relevance | path

Searched refs:m_rect (Results 1 – 12 of 12) sorted by relevance

/external/webkit/WebCore/platform/graphics/android/
DPlatformGraphicsContext.h41 : m_node(node), m_rect(r), m_state(WebCore::RenderSkinAndroid::kDisabled) in Container()
59 m_rect = src.m_rect;
70 m_rect = src.m_rect; in Container()
91 WebCore::IntRect rect() { return m_rect; } in rect()
99 if (m_rect != r) { in setRect()
100 m_rect = r; in setRect()
120 SkCanvas* canvas = m_picture->beginRecording(m_rect.width(), m_rect.height()); in updateFocusState()
121 WebCore::RenderSkinButton::Draw(canvas, m_rect, state); in updateFocusState()
129 WebCore::IntRect m_rect; variable
/external/webkit/WebCore/dom/
DClientRect.h43 float top() const { return m_rect.y(); } in top()
44 float right() const { return m_rect.right(); } in right()
45 float bottom() const { return m_rect.bottom(); } in bottom()
46 float left() const { return m_rect.x(); } in left()
47 float width() const { return m_rect.width(); } in width()
48 float height() const { return m_rect.height(); } in height()
54 FloatRect m_rect; variable
DClientRect.cpp37 : m_rect(rect) in ClientRect()
/external/webkit/WebKit/win/
DFullscreenVideoController.cpp105 m_rect.setWidth(m_buttonImage->width()); in HUDButton()
106 m_rect.setHeight(m_buttonImage->height()); in HUDButton()
115 context.drawImage(image, DeviceColorSpace, m_rect.location()); in draw()
130 IntSize radius(m_rect.height() / 2, m_rect.height() / 2); in draw()
131 …context.fillRoundedRect(m_rect, radius, radius, radius, radius, Color(sliderGutterColor), DeviceCo… in draw()
138 …context.drawEllipse(IntRect(m_rect.location().x() + m_buttonPosition, m_rect.location().y() - (m_b… in draw()
145 points[0].setX(m_rect.location().x() + m_buttonPosition + half); in draw()
146 points[0].setY(m_rect.location().y()); in draw()
147 points[1].setX(m_rect.location().x() + m_buttonPosition + m_buttonSize); in draw()
148 points[1].setY(m_rect.location().y() + half); in draw()
[all …]
DFullscreenVideoController.h45 HUDWidget(const WebCore::IntRect& rect) : m_rect(rect) { } in HUDWidget()
51 bool hitTest(const WebCore::IntPoint& point) const { return m_rect.contains(point); } in hitTest()
54 WebCore::IntRect m_rect;
92 …float value() const { return static_cast<float>(m_buttonPosition) / (m_rect.width() - m_buttonSize… in value()
93 …void setValue(float value) { m_buttonPosition = static_cast<int>(value * (m_rect.width() - m_butto… in setValue()
DChangeLog-2009-06-167462 * WebNodeHighlight.h: Added m_inspectedWebView member, removed m_rect
/external/webkit/WebCore/rendering/
DRenderSelectionInfo.h64 …, m_rect(o->needsLayout() ? IntRect() : o->selectionRectForRepaint(m_repaintContainer, clipToVisib… in RenderSelectionInfo()
70 m_object->repaintUsingContainer(m_repaintContainer, m_rect); in repaint()
73 IntRect rect() const { return m_rect; } in rect()
76 IntRect m_rect; // relative to repaint container
/external/webkit/WebCore/html/
DDataGridColumn.h70 m_rect = IntRect(); in setColumnList()
79 const IntRect& rect() const { return m_rect; } in rect()
80 void setRect(const IntRect& rect) { m_rect = rect; } in setRect()
110 IntRect m_rect; variable
/external/webkit/WebCore/platform/image-decoders/
DImageDecoder.h123 const IntRect& rect() const { return m_rect; } in rect()
129 void setRect(const IntRect& r) { m_rect = r; } in setRect()
193 IntRect m_rect; // The rect of the original specified frame within the overall buffer. variable
/external/webkit/WebCore/platform/graphics/mac/
DMediaPlayerPrivateQTKit.h176 IntRect m_rect; variable
DMediaPlayerPrivateQTKit.mm207 , m_rect()
1155 if (m_rect != r) {
1156 m_rect = r;
1159 [view setFrame:m_rect];
1164 IntRect farAwayButCorrectSize(m_rect);
/external/webkit/WebCore/
DChangeLog-2009-06-1632246 (WebCore::MediaPlayerPrivate::MediaPlayerPrivate): Initialize m_size instead of m_rect
32249 * platform/graphics/gtk/MediaPlayerPrivateGStreamer.h: m_rect -> m_size.
32251 * platform/graphics/mac/MediaPlayerPrivateQTKit.h: m_rect
32253 (WebCore::MediaPlayerPrivate::MediaPlayerPrivate): Initialize m_rect.