/external/webkit/Source/WebKit2/UIProcess/qt/ |
D | TiledDrawingAreaTileQt.cpp | 47 , m_rect(proxy->tileRectForCoordinate(tileCoordinate)) in TiledDrawingAreaTile() 49 , m_dirtyRegion(m_rect) in TiledDrawingAreaTile() 82 IntRect tileDirtyRect = intersection(dirtyRect, m_rect); in invalidate() 91 IntRect oldRect = m_rect; in resize() 92 m_rect = IntRect(m_rect.location(), newSize); in resize() 93 if (m_rect.maxX() > oldRect.maxX()) in resize() 94 … invalidate(IntRect(oldRect.maxX(), oldRect.y(), m_rect.maxX() - oldRect.maxX(), m_rect.height())); in resize() 95 if (m_rect.maxY() > oldRect.maxY()) in resize() 96 … invalidate(IntRect(oldRect.x(), oldRect.maxY(), m_rect.width(), m_rect.maxY() - oldRect.maxY())); in resize() 111 IntRect target = intersection(rect, m_rect); in paint() [all …]
|
/external/webkit/Source/WebCore/platform/graphics/android/context/ |
D | GraphicsOperation.h | 238 : m_rect(rect), m_thickness(thickness) {} 240 context->addInnerRoundedRectClip(m_rect, m_thickness); 245 IntRect m_rect; 251 Clip(const FloatRect& rect) : m_rect(rect) {} 253 return context->clip(m_rect); 257 const FloatRect m_rect; 284 ClipOut(const IntRect& rect) : m_rect(rect) {} 286 return context->clipOut(m_rect); 290 const IntRect m_rect; 295 ClearRect(const FloatRect& rect) : m_rect(rect) {} [all …]
|
/external/webkit/Source/WebCore/dom/ |
D | ClientRect.h | 44 float top() const { return m_rect.y(); } in top() 45 float right() const { return m_rect.maxX(); } in right() 46 float bottom() const { return m_rect.maxY(); } in bottom() 47 float left() const { return m_rect.x(); } in left() 48 float width() const { return m_rect.width(); } in width() 49 float height() const { return m_rect.height(); } in height() 56 FloatRect m_rect; variable
|
D | ClientRect.cpp | 37 : m_rect(rect) in ClientRect() 42 : m_rect(rect) in ClientRect()
|
/external/webkit/Source/WebKit2/Shared/gtk/ |
D | UpdateChunk.cpp | 46 : m_rect(rect) in UpdateChunk() 57 return cairo_format_stride_for_width(imageFormat, m_rect.width()) * m_rect.height(); in size() 62 encoder->encode(m_rect); in encode() 86 chunk.m_rect = rect; in decode() 111 int stride = cairo_format_stride_for_width(imageFormat, m_rect.width()); in createImage() 113 … imageFormat, m_rect.width(), m_rect.height(), stride); in createImage()
|
D | UpdateChunk.h | 49 const WebCore::IntRect& rect() const { return m_rect; } in rect() 50 bool isEmpty() { return m_rect.isEmpty(); } in isEmpty() 60 WebCore::IntRect m_rect; variable
|
/external/webkit/Source/WebKit2/Shared/qt/ |
D | UpdateChunk.cpp | 50 : m_rect(rect) in UpdateChunk() 61 encoder->encode(m_rect); in encode() 85 chunk.m_rect = rect; in decode() 112 return ((m_rect.width() * bpp + 3) & ~0x3) in size() 113 * m_rect.height(); in size() 132 …interpret_cast<unsigned char*>(m_sharedMemory->data()), m_rect.width(), m_rect.height(), (m_rect.w… in createImage()
|
D | UpdateChunk.h | 47 const WebCore::IntRect& rect() const { return m_rect; } in rect() 48 bool isEmpty() const { return m_rect.isEmpty(); } in isEmpty() 58 WebCore::IntRect m_rect; variable
|
/external/webkit/Source/WebKit2/Shared/mac/ |
D | UpdateChunk.cpp | 48 : m_rect(rect) in UpdateChunk() 64 …RetainPtr<CGImageRef> image(AdoptCF, CGImageCreate(m_rect.width(), m_rect.height(), 8, 32, m_rect.… in createImage() 71 encoder->encode(m_rect); in encode() 82 chunk.m_rect = rect; in decode()
|
D | UpdateChunk.h | 46 const WebCore::IntRect& rect() const { return m_rect; } in rect() 47 bool isEmpty() const { return m_rect.isEmpty(); } in isEmpty() 55 size_t size() const { return m_rect.width() * 4 * m_rect.height(); } in size() 57 WebCore::IntRect m_rect; variable
|
/external/webkit/Source/WebCore/platform/graphics/qt/ |
D | TileQt.cpp | 61 , m_rect(m_backingStore->tileRectForCoordinate(tileCoordinate)) in Tile() 64 , m_dirtyRegion(new QRegion(m_rect)) in Tile() 87 IntRect tileDirtyRect = intersection(dirtyRect, m_rect); in invalidate() 116 context.translate(-m_rect.x(), -m_rect.y()); in updateBackBuffer() 147 IntRect target = intersection(rect, m_rect); in paint() 148 IntRect source((target.x() - m_rect.x()), in paint() 149 (target.y() - m_rect.y()), in paint()
|
/external/webkit/Source/WebCore/platform/graphics/ |
D | RoundedIntRect.h | 79 const IntRect& rect() const { return m_rect; } in rect() 82 bool isEmpty() const { return m_rect.isEmpty(); } in isEmpty() 84 void setRect(const IntRect& rect) { m_rect = rect; } in setRect() 87 void move(const IntSize& size) { m_rect.move(size); } in move() 88 void inflate(int size) { m_rect.inflate(size); } in inflate() 89 void inflateWithRadii(int size) { m_rect.inflate(size); m_radii.expand(size); } in inflateWithRadii() 99 IntRect m_rect;
|
D | RoundedIntRect.cpp | 117 : m_rect(x, y, width, height) in RoundedIntRect() 122 : m_rect(rect) in RoundedIntRect() 128 : m_rect(rect) in RoundedIntRect() 145 return m_radii.topLeft().width() + m_radii.topRight().width() <= m_rect.width() in isRenderable() 146 && m_radii.bottomLeft().width() + m_radii.bottomRight().width() <= m_rect.width() in isRenderable() 147 && m_radii.topLeft().height() + m_radii.topRight().height() <= m_rect.height() in isRenderable() 148 && m_radii.bottomLeft().height() + m_radii.bottomRight().height() <= m_rect.height(); in isRenderable()
|
D | Tile.h | 58 const IntRect& rect() const { return m_rect; } in rect() 67 IntRect m_rect; variable
|
/external/webkit/Source/WebCore/platform/graphics/win/ |
D | LocalWindowsContext.h | 39 , m_rect(rect) in m_graphicsContext() 43 … m_hdc = m_graphicsContext->getWindowsContext(m_rect, m_supportAlphaBlend, m_mayCreateBitmap); in m_graphicsContext() 48 … m_graphicsContext->releaseWindowsContext(m_hdc, m_rect, m_supportAlphaBlend, m_mayCreateBitmap); in ~LocalWindowsContext() 56 IntRect m_rect; variable
|
/external/webkit/Source/WebKit/win/ |
D | FullscreenVideoController.cpp | 109 m_rect.setWidth(m_buttonImage->width()); in HUDButton() 110 m_rect.setHeight(m_buttonImage->height()); in HUDButton() 119 context.drawImage(image, ColorSpaceDeviceRGB, m_rect.location()); in draw() 134 IntSize radius(m_rect.height() / 2, m_rect.height() / 2); in draw() 135 …context.fillRoundedRect(m_rect, radius, radius, radius, radius, Color(sliderGutterColor), ColorSpa… in draw() 142 …context.drawEllipse(IntRect(m_rect.location().x() + m_buttonPosition, m_rect.location().y() - (m_b… in draw() 149 points[0].setX(m_rect.location().x() + m_buttonPosition + half); in draw() 150 points[0].setY(m_rect.location().y()); in draw() 151 points[1].setX(m_rect.location().x() + m_buttonPosition + m_buttonSize); in draw() 152 points[1].setY(m_rect.location().y() + half); in draw() [all …]
|
D | FullscreenVideoController.h | 48 HUDWidget(const WebCore::IntRect& rect) : m_rect(rect) { } in HUDWidget() 54 bool hitTest(const WebCore::IntPoint& point) const { return m_rect.contains(point); } in hitTest() 57 WebCore::IntRect m_rect; 95 …float value() const { return static_cast<float>(m_buttonPosition) / (m_rect.width() - m_buttonSize… in value() 96 …void setValue(float value) { m_buttonPosition = static_cast<int>(value * (m_rect.width() - m_butto… in setValue()
|
/external/webkit/Source/WebKit2/Shared/win/ |
D | UpdateChunk.cpp | 43 : m_rect(rect) in UpdateChunk() 51 : m_rect(rect) in UpdateChunk() 58 encoder->encode(m_rect); in encode() 67 updateChunk.m_rect = rect; in decode()
|
D | UpdateChunk.h | 44 const WebCore::IntRect& rect() const { return m_rect; } in rect() 46 bool isEmpty() const { return m_rect.isEmpty(); } in isEmpty() 52 WebCore::IntRect m_rect;
|
/external/webkit/Source/WebCore/rendering/ |
D | RenderSelectionInfo.h | 65 …, m_rect(o->needsLayout() ? IntRect() : o->selectionRectForRepaint(m_repaintContainer, clipToVisib… in RenderSelectionInfo() 71 m_object->repaintUsingContainer(m_repaintContainer, m_rect); in repaint() 74 IntRect rect() const { return m_rect; } in rect() 77 IntRect m_rect; // relative to repaint container
|
/external/webkit/Source/WebCore/html/ |
D | DataGridColumn.h | 70 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/Source/WebCore/platform/android/ |
D | PopupMenuAndroid.cpp | 38 : m_rect(rect) in PopupReply() 56 m_viewImpl->contentInvalidate(m_rect); in replyInt() 75 m_viewImpl->contentInvalidate(m_rect); in replyIntArray() 84 IntRect m_rect; member in PopupReply
|
/external/webkit/Source/WebKit2/UIProcess/ |
D | TiledDrawingAreaTile.h | 63 const WebCore::IntRect& rect() const { return m_rect; } in rect() 75 WebCore::IntRect m_rect; variable
|
/external/webkit/Source/WebCore/platform/graphics/mac/ |
D | MediaPlayerPrivateQTKit.h | 197 IntRect m_rect; variable
|
D | MediaPlayerPrivateQTKit.mm | 222 , m_rect() 1340 if (m_rect != r) { 1341 m_rect = r; 1344 [view setFrame:m_rect]; 1349 IntRect farAwayButCorrectSize(m_rect);
|