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

  /external/webkit/Source/WebKit2/Shared/gtk/
UpdateChunk.h 49 const WebCore::IntRect& rect() const { return m_rect; }
50 bool isEmpty() { return m_rect.isEmpty(); }
60 WebCore::IntRect m_rect; member in class:WebKit::UpdateChunk
  /external/webkit/Source/WebKit2/Shared/qt/
UpdateChunk.h 47 const WebCore::IntRect& rect() const { return m_rect; }
48 bool isEmpty() const { return m_rect.isEmpty(); }
58 WebCore::IntRect m_rect; member in class:WebKit::UpdateChunk
  /external/webkit/Source/WebKit2/Shared/win/
UpdateChunk.h 44 const WebCore::IntRect& rect() const { return m_rect; }
46 bool isEmpty() const { return m_rect.isEmpty(); }
52 WebCore::IntRect m_rect; member in class:WebKit::UpdateChunk
  /external/webkit/Source/WebCore/dom/
ClientRect.h 44 float top() const { return m_rect.y(); }
45 float right() const { return m_rect.maxX(); }
46 float bottom() const { return m_rect.maxY(); }
47 float left() const { return m_rect.x(); }
48 float width() const { return m_rect.width(); }
49 float height() const { return m_rect.height(); }
56 FloatRect m_rect; member in class:WebCore::ClientRect
  /external/webkit/Source/WebCore/platform/graphics/
Tile.h 58 const IntRect& rect() const { return m_rect; }
67 IntRect m_rect; member in class:WebCore::Tile
RoundedIntRect.h 79 const IntRect& rect() const { return m_rect; }
82 bool isEmpty() const { return m_rect.isEmpty(); }
84 void setRect(const IntRect& rect) { m_rect = rect; }
87 void move(const IntSize& size) { m_rect.move(size); }
88 void inflate(int size) { m_rect.inflate(size); }
89 void inflateWithRadii(int size) { m_rect.inflate(size); m_radii.expand(size); }
99 IntRect m_rect; member in class:WebCore::RoundedIntRect
  /external/webkit/Source/WebCore/platform/graphics/win/
LocalWindowsContext.h 39 , m_rect(rect)
43 m_hdc = m_graphicsContext->getWindowsContext(m_rect, m_supportAlphaBlend, m_mayCreateBitmap);
48 m_graphicsContext->releaseWindowsContext(m_hdc, m_rect, m_supportAlphaBlend, m_mayCreateBitmap);
56 IntRect m_rect; member in class:WebCore::LocalWindowsContext
  /external/webkit/Source/WebKit2/Shared/mac/
UpdateChunk.h 46 const WebCore::IntRect& rect() const { return m_rect; }
47 bool isEmpty() const { return m_rect.isEmpty(); }
55 size_t size() const { return m_rect.width() * 4 * m_rect.height(); }
57 WebCore::IntRect m_rect; member in class:WebKit::UpdateChunk
  /external/webkit/Source/WebCore/rendering/
RenderSelectionInfo.h 65 , m_rect(o->needsLayout() ? IntRect() : o->selectionRectForRepaint(m_repaintContainer, clipToVisibleContent))
71 m_object->repaintUsingContainer(m_repaintContainer, m_rect);
74 IntRect rect() const { return m_rect; }
77 IntRect m_rect; // relative to repaint container member in class:WebCore::RenderSelectionInfo
  /external/webkit/Source/WebKit2/UIProcess/
TiledDrawingAreaTile.h 63 const WebCore::IntRect& rect() const { return m_rect; }
75 WebCore::IntRect m_rect; member in class:WebKit::TiledDrawingAreaTile
  /external/webkit/Source/WebCore/platform/android/
PopupMenuAndroid.cpp 38 : m_rect(rect)
56 m_viewImpl->contentInvalidate(m_rect);
75 m_viewImpl->contentInvalidate(m_rect);
84 IntRect m_rect; member in class:PopupReply
  /external/webkit/Source/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/Source/WebCore/platform/graphics/mac/
MediaPlayerPrivateQTKit.h 197 IntRect m_rect; member in class:WebCore::MediaPlayerPrivateQTKit
  /external/webkit/Source/WebKit/win/
FullscreenVideoController.h 48 HUDWidget(const WebCore::IntRect& rect) : m_rect(rect) { }
54 bool hitTest(const WebCore::IntPoint& point) const { return m_rect.contains(point); }
57 WebCore::IntRect m_rect; member in class:HUDWidget
95 float value() const { return static_cast<float>(m_buttonPosition) / (m_rect.width() - m_buttonSize); }
96 void setValue(float value) { m_buttonPosition = static_cast<int>(value * (m_rect.width() - m_buttonSize)); }
  /external/webkit/Source/WebCore/platform/graphics/android/context/
GraphicsOperation.h 238 : m_rect(rect), m_thickness(thickness) {}
240 context->addInnerRoundedRectClip(m_rect, m_thickness);
245 IntRect m_rect; member in class:WebCore::GraphicsOperation::InnerRoundedRectClip
251 Clip(const FloatRect& rect) : m_rect(rect) {}
253 return context->clip(m_rect);
257 const FloatRect m_rect; member in class:WebCore::GraphicsOperation::Clip
284 ClipOut(const IntRect& rect) : m_rect(rect) {}
286 return context->clipOut(m_rect);
290 const IntRect m_rect; member in class:WebCore::GraphicsOperation::ClipOut
295 ClearRect(const FloatRect& rect) : m_rect(rect) {
302 FloatRect m_rect; member in class:WebCore::GraphicsOperation::ClearRect
372 IntRect m_rect; member in class:WebCore::GraphicsOperation::DrawEllipse
448 IntRect m_rect; member in class:WebCore::GraphicsOperation::DrawRect
480 FloatRect m_rect; member in class:WebCore::GraphicsOperation::FillRect
508 IntRect m_rect; member in class:WebCore::GraphicsOperation::FillRoundedRect
529 IntRect m_rect; member in class:WebCore::GraphicsOperation::StrokeArc
557 FloatRect m_rect; member in class:WebCore::GraphicsOperation::StrokeRect
578 IntRect m_rect; member in class:WebCore::GraphicsOperation::DrawMediaButton
    [all...]

Completed in 324 milliseconds