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

  /external/webkit/Source/WebCore/platform/graphics/filters/
SourceAlpha.cpp 50 FloatRect paintRect = filter->sourceImageRect();
51 paintRect.scale(filter->filterResolution().width(), filter->filterResolution().height());
52 setAbsolutePaintRect(enclosingIntRect(paintRect));
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));
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/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/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...]
  /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/webkit/Source/WebKit/wx/
WebView.cpp 679 wxRect paintRect = GetUpdateRegion().GetBox();
688 frame->view()->paint(&gc, paintRect);
  /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/Tools/DumpRenderTree/chromium/
WebViewHost.cpp     [all...]
  /external/webkit/Source/WebCore/page/
FrameView.cpp     [all...]
  /prebuilt/darwin-x86_64/swt/
swt.jar 

Completed in 282 milliseconds