/external/webkit/Source/WebKit/android/nav/ |
DrawExtra.h | 33 #include "IntRect.h" 67 void addHighlightRegion(const LayerAndroid* layer, const Vector<IntRect>& rects, 69 const IntRect& clipRect = IntRect());
|
/external/webkit/Source/WebKit/chromium/src/ |
WebPopupMenuImpl.h | 107 virtual void invalidateContents(const WebCore::IntRect&, bool); 108 virtual void invalidateWindow(const WebCore::IntRect&, bool); 109 virtual void invalidateContentsAndWindow(const WebCore::IntRect&, bool); 110 virtual void invalidateContentsForSlowScroll(const WebCore::IntRect&, bool); 113 const WebCore::IntSize& scrollDelta, const WebCore::IntRect& scrollRect, 114 const WebCore::IntRect& clipRect); 116 virtual WebCore::IntRect windowToScreen(const WebCore::IntRect&) const; 118 virtual void scrollRectIntoView(const WebCore::IntRect&, const WebCore::ScrollView*) const;
|
/external/webkit/Source/WebKit/gtk/WebCoreSupport/ |
ChromeClientGtk.h | 96 virtual WebCore::IntRect windowResizerRect() const; 98 virtual void invalidateWindow(const WebCore::IntRect&, bool); 99 virtual void invalidateContentsAndWindow(const WebCore::IntRect&, bool); 100 virtual void invalidateContentsForSlowScroll(const WebCore::IntRect&, bool); 101 virtual void scroll(const WebCore::IntSize& scrollDelta, const WebCore::IntRect& rectToScroll, const WebCore::IntRect& clipRect); 104 virtual WebCore::IntRect windowToScreen(const WebCore::IntRect&) const; 133 virtual void scrollRectIntoView(const WebCore::IntRect&, const WebCore::ScrollView*) const {}
|
/external/webkit/Source/WebKit2/Shared/ |
UpdateInfo.h | 30 #include <WebCore/IntRect.h> 53 WebCore::IntRect scrollRect; 57 WebCore::IntRect updateRectBounds; 60 Vector<WebCore::IntRect> updateRects;
|
/external/webkit/Source/WebKit2/WebProcess/FullScreen/ |
WebFullScreenManager.h | 30 #include <WebCore/IntRect.h> 41 class IntRect; 78 WebCore::IntRect getFullScreenRect(); 82 WebCore::IntRect m_initialFrame;
|
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/ |
InjectedBundlePageUIClient.h | 37 class IntRect; 57 void paintCustomOverhangArea(WebPage*, WebCore::GraphicsContext*, const WebCore::IntRect&, const WebCore::IntRect&, const WebCore::IntRect&);
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/ |
DrawingArea.h | 30 #include <WebCore/IntRect.h> 60 virtual void setNeedsDisplay(const WebCore::IntRect&) = 0; 61 virtual void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset) = 0; 69 virtual void setPageOverlayNeedsDisplay(const WebCore::IntRect&) { }
|
LayerTreeHost.h | 33 class IntRect; 57 virtual void setNonCompositedContentsNeedDisplay(const WebCore::IntRect&) = 0; 58 virtual void scrollNonCompositedContents(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset) = 0; 64 virtual void setPageOverlayNeedsDisplay(const WebCore::IntRect&) = 0;
|
/external/webkit/Source/WebCore/platform/gtk/ |
RenderThemeGtk.cpp | 218 bool RenderThemeGtk::paintMenuListButton(RenderObject* object, const PaintInfo& info, const IntRect& rect) 223 bool RenderThemeGtk::paintTextArea(RenderObject* o, const PaintInfo& i, const IntRect& r) 228 static void paintGdkPixbuf(GraphicsContext* context, const GdkPixbuf* icon, const IntRect& iconRect) 274 bool RenderThemeGtk::paintSearchFieldResultsButton(RenderObject* o, const PaintInfo& i, const IntRect& rect) 302 static IntRect centerRectVerticallyInParentInputElement(RenderObject* renderObject, const IntRect& rect) 307 return IntRect(); 312 IntRect inputContentBox = toRenderBox(input->renderer())->absoluteContentBox(); 316 IntRect scaledRect(rect.x(), inputContentBox.y() + (inputContentBox.height() - iconSize + 1) / 2, iconSize, iconSize); 320 bool RenderThemeGtk::paintSearchFieldResultsDecoration(RenderObject* renderObject, const PaintInfo& paintInfo, const IntRect& rect [all...] |
ScrollbarThemeGtk2.cpp | 73 void ScrollbarThemeGtk::paintTrackBackground(GraphicsContext* context, Scrollbar* scrollbar, const IntRect& rect) 78 IntRect fullScrollbarRect(rect); 80 fullScrollbarRect = IntRect(scrollbar->x(), scrollbar->y(), scrollbar->width(), scrollbar->height()); 83 IntRect paintRect(IntPoint(), fullScrollbarRect.size()); 90 IntRect fullScrollbarRect = IntRect(scrollbar->x(), scrollbar->y(), scrollbar->width(), scrollbar->height()); 97 void ScrollbarThemeGtk::paintThumb(GraphicsContext* context, Scrollbar* scrollbar, const IntRect& rect) 126 IntRect sliderRect(IntPoint(), rect.size()); 130 void ScrollbarThemeGtk::paintButton(GraphicsContext* context, Scrollbar* scrollbar, const IntRect& rect, ScrollbarPart part) 183 IntRect buttonRect(IntPoint(), rect.size()) [all...] |
/external/webkit/Source/WebCore/platform/mac/ |
ScrollbarThemeMac.mm | 262 static IntRect buttonRepaintRect(const IntRect& buttonRect, ScrollbarOrientation orientation, ScrollbarControlSize controlSize, bool start) 266 IntRect paintRect(buttonRect); 280 IntRect ScrollbarThemeMac::backButtonRect(Scrollbar* scrollbar, ScrollbarPart part, bool painting) 282 IntRect result; 294 result = IntRect(scrollbar->x(), scrollbar->y(), cOuterButtonLength[scrollbar->controlSize()] + painting ? cOuterButtonOverlap : 0, thickness); 296 result = IntRect(scrollbar->x(), scrollbar->y(), thickness, cOuterButtonLength[scrollbar->controlSize()] + painting ? cOuterButtonOverlap : 0); 303 result = IntRect(start, scrollbar->y(), cButtonLength[scrollbar->controlSize()], thickness); 306 result = IntRect(scrollbar->x(), start, thickness, cButtonLength[scrollbar->controlSize()]); 314 IntRect ScrollbarThemeMac::forwardButtonRect(Scrollbar* scrollbar, ScrollbarPart part, bool painting [all...] |
/external/webkit/Source/WebCore/page/ |
ChromeClient.h | 54 class IntRect; 141 virtual IntRect windowResizerRect() const = 0; 144 virtual void invalidateWindow(const IntRect&, bool) = 0; 145 virtual void invalidateContentsAndWindow(const IntRect&, bool) = 0; 146 virtual void invalidateContentsForSlowScroll(const IntRect&, bool) = 0; 147 virtual void scroll(const IntSize&, const IntRect&, const IntRect&) = 0; 152 virtual IntRect windowToScreen(const IntRect&) const = 0; 164 virtual void scrollRectIntoView(const IntRect&, const ScrollView*) const = 0; // Currently only Mac has a non empty implementation [all...] |
/external/webkit/Source/WebCore/plugins/ |
PluginView.h | 33 #include "IntRect.h" 159 void setNPWindowRect(const IntRect&); 207 virtual void invalidateRect(const IntRect&); 219 virtual void setFrameRect(const IntRect&); 224 virtual void paint(GraphicsContext*, const IntRect&); 229 IntRect windowClipRect() const; 308 void invalidateWindowlessPluginRect(const IntRect&); 313 void paintWindowedPluginIntoContext(GraphicsContext*, const IntRect&); 330 Vector<IntRect> m_invalidRects; 351 void paintMissingPluginIcon(GraphicsContext*, const IntRect&) [all...] |
/external/webkit/Source/WebCore/rendering/ |
InlineFlowBox.h | 101 IntRect roundedFrameRect() const; 196 IntRect layoutOverflowRect(int lineTop, int lineBottom) const 214 IntRect logicalLayoutOverflowRect(int lineTop, int lineBottom) const 216 IntRect result = layoutOverflowRect(lineTop, lineBottom); 222 IntRect visualOverflowRect(int lineTop, int lineBottom) const 240 IntRect logicalVisualOverflowRect(int lineTop, int lineBottom) const 242 IntRect result = visualOverflowRect(lineTop, lineBottom); 248 void setOverflowFromLogicalRects(const IntRect& logicalLayoutOverflow, const IntRect& logicalVisualOverflow, int lineTop, int lineBottom); 249 void setLayoutOverflow(const IntRect&, int lineTop, int lineBottom) [all...] |
/external/webkit/Source/WebCore/platform/graphics/wince/ |
ImageBufferWinCE.cpp | 55 IntRect intDstRect = enclosingIntRect(dstRect); 56 IntRect intSrcRect(srcRect); 131 static PassRefPtr<ByteArray> getImageData(const IntRect& rect, const SharedBitmap* bitmap) 139 IntRect sourceRect(0, 0, bitmap->width(), bitmap->height()); 180 PassRefPtr<ByteArray> ImageBuffer::getUnmultipliedImageData(const IntRect& rect) const 185 PassRefPtr<ByteArray> ImageBuffer::getPremultipliedImageData(const IntRect& rect) const 191 static void putImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint, SharedBitmap* bitmap) 197 IntRect destRect(destPoint, sourceRect.size()); 198 destRect.intersect(IntRect(0, 0, bitmap->width(), bitmap->height())); 235 void ImageBuffer::putUnmultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint [all...] |
SharedBitmap.h | 40 class IntRect; 58 void clearPixels(const IntRect& r); 80 PassOwnPtr<HBITMAP> clipBitmap(const IntRect& rect, bool useAlpha, BitmapInfo& bmpInfo, void*& pixels); 82 PassRefPtr<SharedBitmap> clipBitmap(const IntRect& rect, bool useAlpha); 84 void draw(GraphicsContext* ctxt, const IntRect& dstRect, const IntRect& srcRect, ColorSpace styleColorSpace, CompositeOperator compositeOp); 87 void draw(HDC, const IntRect& dstRect, const IntRect& srcRect, CompositeOperator compositeOp);
|
/external/webkit/Source/WebCore/platform/ |
PopupMenu.h | 29 class IntRect; 34 virtual void show(const IntRect&, FrameView*, int index) = 0;
|
Scrollbar.h | 38 class IntRect; 84 virtual void paint(GraphicsContext*, const IntRect& damageRect); 114 virtual void setFrameRect(const IntRect&); 116 virtual void invalidateRect(const IntRect&); 123 virtual IntRect convertToContainingView(const IntRect&) const; 124 virtual IntRect convertFromContainingView(const IntRect&) const;
|
/external/webkit/Source/WebCore/platform/android/ |
PopupMenuAndroid.h | 29 #include "IntRect.h" 43 virtual void show(const IntRect&, FrameView*, int);
|
/external/webkit/Source/WebCore/platform/brew/ |
PopupMenuBrew.h | 23 #include "IntRect.h" 39 virtual void show(const IntRect&, FrameView*, int index);
|
/external/webkit/Source/WebCore/platform/chromium/ |
PopupMenuChromium.h | 37 #include "IntRect.h" 118 virtual void paint(GraphicsContext*, const IntRect&); 136 void showInRect(const IntRect&, FrameView*, int index); 154 void refresh(const IntRect& targetControlRect); 177 void paintBorder(GraphicsContext*, const IntRect&); 179 // Layout and calculate popup widget size and location and returns it as IntRect. 180 IntRect layoutAndCalculateWidgetRect(int targetControlHeight, const IntPoint& popupInitialCoordinate); 199 virtual void show(const IntRect&, FrameView*, int index);
|
/external/webkit/Source/WebCore/platform/efl/ |
PopupMenuEfl.h | 23 #include "IntRect.h" 39 virtual void show(const IntRect&, FrameView*, int index);
|
/external/webkit/Source/WebCore/platform/graphics/brew/ |
IconBrew.cpp | 28 #include "IntRect.h" 45 void Icon::paint(GraphicsContext*, const IntRect&)
|
/external/webkit/Source/WebCore/platform/graphics/haiku/ |
IconHaiku.cpp | 27 #include "IntRect.h" 45 void Icon::paint(GraphicsContext*, const IntRect&)
|
/external/webkit/Source/WebCore/platform/graphics/wx/ |
IconWx.cpp | 26 #include "IntRect.h" 41 void Icon::paint(GraphicsContext* ctx, const IntRect& rect)
|