HomeSort by relevance Sort by last modified time
    Searched full:m_rect (Results 1 - 25 of 27) sorted by null

1 2

  /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
ClientRect.cpp 37 : m_rect(rect)
42 : m_rect(rect)
  /external/webkit/Source/WebKit2/UIProcess/qt/
TiledDrawingAreaTileQt.cpp 47 , m_rect(proxy->tileRectForCoordinate(tileCoordinate))
49 , m_dirtyRegion(m_rect)
82 IntRect tileDirtyRect = intersection(dirtyRect, m_rect);
91 IntRect oldRect = m_rect;
92 m_rect = IntRect(m_rect.location(), newSize);
93 if (m_rect.maxX() > oldRect.maxX())
94 invalidate(IntRect(oldRect.maxX(), oldRect.y(), m_rect.maxX() - oldRect.maxX(), m_rect.height()));
95 if (m_rect.maxY() > oldRect.maxY()
    [all...]
  /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
UpdateChunk.cpp 48 : m_rect(rect)
64 RetainPtr<CGImageRef> image(AdoptCF, CGImageCreate(m_rect.width(), m_rect.height(), 8, 32, m_rect.width() * 4, colorSpace.get(), kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host, provider.get(), 0, false, kCGRenderingIntentDefault));
71 encoder->encode(m_rect);
82 chunk.m_rect = rect;
  /external/webkit/Source/WebCore/platform/graphics/android/context/
GraphicsOperation.h 408 : m_paint(*paint), m_rect(*rect), m_isHLine(isHLine) {}
410 context->setupPaintStroke(&m_paint, &m_rect, m_isHLine);
415 SkRect m_rect; member in class:WebCore::GraphicsOperation::SetupPaintStroke
475 : m_rect(rect), m_thickness(thickness) {}
477 context->addInnerRoundedRectClip(m_rect, m_thickness);
481 IntRect m_rect; member in class:WebCore::GraphicsOperation::InnerRoundedRectClip
487 Clip(const FloatRect& rect) : m_rect(rect) {}
489 context->clip(m_rect);
493 const FloatRect m_rect; member in class:WebCore::GraphicsOperation::Clip
521 ClipOut(const IntRect& rect) : m_rect(rect) {
527 const IntRect m_rect; member in class:WebCore::GraphicsOperation::ClipOut
538 FloatRect m_rect; member in class:WebCore::GraphicsOperation::ClearRect
591 IntRect m_rect; member in class:WebCore::GraphicsOperation::DrawEllipse
643 IntRect m_rect; member in class:WebCore::GraphicsOperation::DrawRect
671 FloatRect m_rect; member in class:WebCore::GraphicsOperation::FillRect
698 IntRect m_rect; member in class:WebCore::GraphicsOperation::FillRoundedRect
718 IntRect m_rect; member in class:WebCore::GraphicsOperation::StrokeArc
744 FloatRect m_rect; member in class:WebCore::GraphicsOperation::StrokeRect
    [all...]
  /external/webkit/Source/WebKit2/Shared/gtk/
UpdateChunk.cpp 46 : m_rect(rect)
57 return cairo_format_stride_for_width(imageFormat, m_rect.width()) * m_rect.height();
62 encoder->encode(m_rect);
86 chunk.m_rect = rect;
111 int stride = cairo_format_stride_for_width(imageFormat, m_rect.width());
113 imageFormat, m_rect.width(), m_rect.height(), stride);
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.cpp 50 : m_rect(rect)
61 encoder->encode(m_rect);
85 chunk.m_rect = rect;
112 return ((m_rect.width() * bpp + 3) & ~0x3)
113 * m_rect.height();
132 return QImage(reinterpret_cast<unsigned char*>(m_sharedMemory->data()), m_rect.width(), m_rect.height(), (m_rect.width() * bpp + 3) & ~0x3, format);
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/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/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
UpdateChunk.cpp 43 : m_rect(rect)
51 : m_rect(rect)
58 encoder->encode(m_rect);
67 updateChunk.m_rect = rect;
  /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/WebCore/platform/graphics/qt/
TileQt.cpp 61 , m_rect(m_backingStore->tileRectForCoordinate(tileCoordinate))
64 , m_dirtyRegion(new QRegion(m_rect))
87 IntRect tileDirtyRect = intersection(dirtyRect, m_rect);
116 context.translate(-m_rect.x(), -m_rect.y());
147 IntRect target = intersection(rect, m_rect);
148 IntRect source((target.x() - m_rect.x()),
149 (target.y() - m_rect.y()),
  /external/webkit/Source/WebCore/platform/graphics/
RoundedIntRect.cpp 117 : m_rect(x, y, width, height)
122 : m_rect(rect)
128 : m_rect(rect)
145 return m_radii.topLeft().width() + m_radii.topRight().width() <= m_rect.width()
146 && m_radii.bottomLeft().width() + m_radii.bottomRight().width() <= m_rect.width()
147 && m_radii.topLeft().height() + m_radii.topRight().height() <= m_rect.height()
148 && m_radii.bottomLeft().height() + m_radii.bottomRight().height() <= m_rect.height();
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
Tile.h 58 const IntRect& rect() const { return m_rect; }
67 IntRect m_rect; member in class:WebCore::Tile
  /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/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/WebKit/win/
FullscreenVideoController.cpp 109 m_rect.setWidth(m_buttonImage->width());
110 m_rect.setHeight(m_buttonImage->height());
119 context.drawImage(image, ColorSpaceDeviceRGB, m_rect.location());
134 IntSize radius(m_rect.height() / 2, m_rect.height() / 2);
135 context.fillRoundedRect(m_rect, radius, radius, radius, radius, Color(sliderGutterColor), ColorSpaceDeviceRGB);
142 context.drawEllipse(IntRect(m_rect.location().x() + m_buttonPosition, m_rect.location().y() - (m_buttonSize - m_rect.height()) / 2, m_buttonSize, m_buttonSize));
149 points[0].setX(m_rect.location().x() + m_buttonPosition + half)
    [all...]
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/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/graphics/mac/
MediaPlayerPrivateQTKit.h 197 IntRect m_rect; member in class:WebCore::MediaPlayerPrivateQTKit
MediaPlayerPrivateQTKit.mm 222 , m_rect()
    [all...]

Completed in 548 milliseconds

1 2