HomeSort by relevance Sort by last modified time
    Searched refs:paintRect (Results 1 - 25 of 29) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/gtk/
WidgetRenderingContext.cpp 149 GdkRectangle paintRect = { m_paintRect.x + rect.x(), m_paintRect.y + rect.y(), rect.width(), rect.height() };
159 gtk_paint_box(gtk_widget_get_style(widget), m_target, stateType, shadowType, &paintRect,
160 widget, detail, paintRect.x, paintRect.y, paintRect.width, paintRect.height);
165 GdkRectangle paintRect = { m_paintRect.x + rect.x(), m_paintRect.y + rect.y(), rect.width(), rect.height() };
166 gtk_paint_flat_box(gtk_widget_get_style(widget), m_target, stateType, shadowType, &paintRect,
167 widget, detail, paintRect.x, paintRect.y, paintRect.width, paintRect.height)
    [all...]
ScrollbarThemeGtk2.cpp 83 IntRect paintRect(IntPoint(), fullScrollbarRect.size());
84 widgetContext.gtkPaintBox(paintRect, getWidgetForScrollbar(scrollbar),
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/win/
WindowlessPaintRectCoordinates.cpp 68 RECT* paintRect = reinterpret_cast<RECT*>(event->lParam);
69 if (!paintRect) {
77 if (::EqualRect(paintRect, &expectedRect))
80 pluginLog(m_npp, "Expected paint rect {left=%d, top=%d, right=%d, bottom=%d}, but got {left=%d, top=%d, right=%d, bottom=%d}", expectedRect.left, expectedRect.top, expectedRect.right, expectedRect.bottom, paintRect->left, paintRect->top, paintRect->right, paintRect->bottom);
  /external/webkit/Source/WebCore/platform/graphics/chromium/
ImageLayerChromium.cpp 78 IntRect paintRect(IntPoint(0, 0), m_decodedImage.size());
80 m_tiler->invalidateRect(paintRect);
88 IntRect paintRect(IntPoint(0, 0), m_decodedImage.size());
89 m_tiler->updateFromPixels(paintRect, paintRect, m_decodedImage.pixels());
LayerTilerChromium.cpp 294 void LayerTilerChromium::updateFromPixels(const IntRect& contentRect, const IntRect& paintRect, const uint8_t* paintPixels)
318 sourceRect.intersect(paintRect);
338 IntPoint paintOffset(sourceRect.x() - paintRect.x(), sourceRect.y() - paintRect.y());
343 if (paintOffset.x() + destRect.width() > paintRect.width())
345 if (paintOffset.y() + destRect.height() > paintRect.height())
349 if (paintRect.width() == sourceRect.width() && !paintOffset.x())
350 pixelSource = &paintPixels[4 * paintOffset.y() * paintRect.width()];
356 &paintPixels[4 * (paintOffset.x() + (paintOffset.y() + row) * paintRect.width())],
LayerTilerChromium.h 71 void updateFromPixels(const IntRect& contentRect, const IntRect& paintRect, const uint8_t* pixels);
  /external/webkit/Source/WebCore/platform/graphics/filters/
SourceGraphic.cpp 49 FloatRect paintRect = filter->sourceImageRect();
50 paintRect.scale(filter->filterResolution().width(), filter->filterResolution().height());
51 setAbsolutePaintRect(enclosingIntRect(paintRect));
FEOffset.cpp 70 FloatRect paintRect = inputEffect(0)->absolutePaintRect();
72 paintRect.move(filter->applyHorizontalScale(m_dx), filter->applyVerticalScale(m_dy));
73 paintRect.intersect(maxEffectRect());
74 setAbsolutePaintRect(enclosingIntRect(paintRect));
SourceAlpha.cpp 50 FloatRect paintRect = filter->sourceImageRect();
51 paintRect.scale(filter->filterResolution().width(), filter->filterResolution().height());
52 setAbsolutePaintRect(enclosingIntRect(paintRect));
FEMorphology.cpp 87 FloatRect paintRect = inputEffect(0)->absolutePaintRect();
89 paintRect.inflateX(filter->applyHorizontalScale(m_radiusX));
90 paintRect.inflateY(filter->applyVerticalScale(m_radiusY));
91 paintRect.intersect(maxEffectRect());
92 setAbsolutePaintRect(enclosingIntRect(paintRect));
  /external/webkit/Source/WebCore/svg/graphics/filters/
SVGFEImage.cpp 53 FloatRect paintRect(m_absoluteSubregion);
54 m_preserveAspectRatio.transformRect(paintRect, srcRect);
55 paintRect.intersect(maxEffectRect());
56 setAbsolutePaintRect(enclosingIntRect(paintRect));
  /external/webkit/Source/WebCore/platform/win/
ScrollbarThemeSafari.cpp 123 IntRect paintRect(buttonRect);
125 paintRect.setWidth(cRealButtonLength[controlSize]);
127 paintRect.setX(buttonRect.x() - (cRealButtonLength[controlSize] - buttonRect.width()));
129 paintRect.setHeight(cRealButtonLength[controlSize]);
131 paintRect.setY(buttonRect.y() - (cRealButtonLength[controlSize] - buttonRect.height()));
134 return paintRect;
175 IntRect paintRect(trackRect);
177 paintRect.inflateX(cButtonLength[controlSize]);
179 paintRect.inflateY(cButtonLength[controlSize]);
181 return paintRect;
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
PageOverlay.cpp 103 IntRect paintRect = intersection(dirtyRect, bounds());
104 if (paintRect.isEmpty())
111 m_client->drawRect(this, graphicsContext, paintRect);
FindController.cpp 185 IntRect paintRect = selectionRect;
186 paintRect.move(selectedFrame->view()->frameRect().x(), selectedFrame->view()->frameRect().y());
187 paintRect.move(-selectedFrame->view()->scrollOffset());
189 graphicsContext->translate(-paintRect.x(), -paintRect.y());
193 selectedFrame->view()->paint(graphicsContext.get(), paintRect);
  /external/webkit/Source/WebCore/platform/chromium/
ScrollbarThemeChromiumMac.mm 216 IntRect paintRect(buttonRect);
218 paintRect.setWidth(cRealButtonLength[controlSize]);
220 paintRect.setX(buttonRect.x() - (cRealButtonLength[controlSize] - buttonRect.width()));
222 paintRect.setHeight(cRealButtonLength[controlSize]);
224 paintRect.setY(buttonRect.y() - (cRealButtonLength[controlSize] - buttonRect.height()));
227 return paintRect;
  /external/webkit/Source/WebKit/chromium/src/
WebPopupMenuImpl.cpp 283 void WebPopupMenuImpl::invalidateContentsAndWindow(const IntRect& paintRect, bool /*immediate*/)
285 if (paintRect.isEmpty())
288 m_client->didInvalidateRect(paintRect);
  /external/webkit/Source/WebCore/platform/mac/
ScrollbarThemeMac.mm 266 IntRect paintRect(buttonRect);
268 paintRect.setWidth(cRealButtonLength[controlSize]);
270 paintRect.setX(buttonRect.x() - (cRealButtonLength[controlSize] - buttonRect.width()));
272 paintRect.setHeight(cRealButtonLength[controlSize]);
274 paintRect.setY(buttonRect.y() - (cRealButtonLength[controlSize] - buttonRect.height()));
277 return paintRect;
  /external/webkit/Source/WebCore/rendering/
RenderWidget.cpp 292 IntRect paintRect = paintInfo.rect;
296 // not the root. In this case, shift the CTM and adjust the paintRect to be root-relative to fix plug-in drawing.
299 paintRect.move(-paintOffset);
301 m_widget->paint(paintInfo.context, paintRect);
  /external/skia/src/gpu/
SkGpuDevice.cpp     [all...]
  /external/webkit/Source/WebCore/platform/
ScrollView.cpp 919 IntRect paintRect = rect;
921 paintRect.intersect(visibleContentRect());
923 if (rect != paintRect)
926 if (paintRect.isEmpty())
929 platformRepaintContentRectangle(paintRect, now);
934 hostWindow()->invalidateContentsAndWindow(contentsToWindow(paintRect), now /*immediate*/);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/avfoundation/
MediaPlayerPrivateAVFoundationObjC.mm 572 IntRect paintRect(IntPoint(0, 0), IntSize(rect.width(), rect.height()));
573 CGContextDrawImage(context->platformContext(), CGRectMake(0, 0, paintRect.width(), paintRect.height()), image.get());
  /external/webkit/Source/WebCore/platform/graphics/mac/
MediaPlayerPrivateQTKit.mm     [all...]
  /external/webkit/Tools/DumpRenderTree/chromium/
TestShell.cpp 498 m_webViewHost->paintRect(column);
501 m_webViewHost->paintRect(line);
WebViewHost.h 86 void paintRect(const WebKit::WebRect&);
  /external/webkit/Source/WebCore/page/
FrameView.cpp     [all...]

Completed in 387 milliseconds

1 2