HomeSort by relevance Sort by last modified time
    Searched refs:IntRect (Results 51 - 75 of 833) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/platform/
Widget.cpp 29 #include "IntRect.h"
72 IntRect Widget::convertFromContainingWindow(const IntRect& windowRect) const
75 IntRect parentRect = parentScrollView->convertFromContainingWindow(windowRect);
81 IntRect Widget::convertToContainingWindow(const IntRect& localRect) const
84 IntRect parentRect = convertToContainingView(localRect);
113 IntRect Widget::convertFromRootToContainingWindow(const Widget*, const IntRect& rect)
118 IntRect Widget::convertFromContainingWindowToRoot(const Widget*, const IntRect& rect
    [all...]
ScrollView.h 30 #include "IntRect.h"
80 virtual IntRect windowClipRect(bool clipToContents = true) const = 0;
152 IntRect visibleContentRect(bool includeScrollbars = false) const;
153 IntRect actualVisibleContentRect() const { return m_actualVisibleContentRect.isEmpty() ? visibleContentRect() : m_actualVisibleContentRect; }
154 void setActualVisibleContentRect(const IntRect& actualVisibleContentRect) { m_actualVisibleContentRect = actualVisibleContentRect; }
219 IntRect windowToContents(const IntRect&) const;
220 IntRect contentsToWindow(const IntRect&) const;
223 IntRect contentsToScreen(const IntRect&) const
    [all...]
  /external/webkit/Source/WebCore/platform/chromium/
ScrollbarThemeChromiumMac.h 42 virtual bool paint(Scrollbar*, GraphicsContext* context, const IntRect& damageRect);
60 virtual IntRect backButtonRect(Scrollbar*, ScrollbarPart, bool painting = false);
61 virtual IntRect forwardButtonRect(Scrollbar*, ScrollbarPart, bool painting = false);
62 virtual IntRect trackRect(Scrollbar*, bool painting = false);
ScrollbarThemeChromium.cpp 50 IntRect ScrollbarThemeChromium::backButtonRect(Scrollbar* scrollbar, ScrollbarPart part, bool)
54 return IntRect();
57 return IntRect(scrollbar->x(), scrollbar->y(), size.width(), size.height());
60 IntRect ScrollbarThemeChromium::forwardButtonRect(Scrollbar* scrollbar, ScrollbarPart part, bool)
64 return IntRect();
75 return IntRect(x, y, size.width(), size.height());
78 IntRect ScrollbarThemeChromium::trackRect(Scrollbar* scrollbar, bool)
88 return IntRect();
89 return IntRect(scrollbar->x() + bs.width(), scrollbar->y(), scrollbar->width() - 2 * bs.width(), thickness);
92 return IntRect();
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/texmap/
TextureMapperPlatformLayer.h 26 class IntRect;
37 virtual void setNeedsDisplayInRect(const IntRect& rect) = 0;
56 IntRect visibleRect;
57 IntRect targetRect;
  /external/webkit/Source/WebCore/rendering/
RenderInputSpeech.h 43 static bool paintInputFieldSpeechButton(RenderObject*, const PaintInfo&, const IntRect&);
RenderMediaControlsChromium.h 39 static bool paintMediaControlsPart(MediaControlElementType, RenderObject*, const PaintInfo&, const IntRect&);
RenderThemeChromiumLinux.h 62 virtual bool paintCheckbox(RenderObject*, const PaintInfo&, const IntRect&);
65 virtual bool paintRadio(RenderObject*, const PaintInfo&, const IntRect&);
68 virtual bool paintButton(RenderObject*, const PaintInfo&, const IntRect&);
69 virtual bool paintTextField(RenderObject*, const PaintInfo&, const IntRect&);
70 virtual bool paintMenuList(RenderObject*, const PaintInfo&, const IntRect&);
71 virtual bool paintSliderTrack(RenderObject*, const PaintInfo&, const IntRect&);
72 virtual bool paintSliderThumb(RenderObject*, const PaintInfo&, const IntRect&);
75 virtual bool paintInnerSpinButton(RenderObject*, const PaintInfo&, const IntRect&);
78 virtual bool paintProgressBar(RenderObject*, const PaintInfo&, const IntRect&);
RenderThemeWinCE.h 68 virtual bool paintCheckbox(RenderObject* o, const PaintInfo& i, const IntRect& r)
72 virtual bool paintRadio(RenderObject* o, const PaintInfo& i, const IntRect& r)
77 virtual bool paintButton(RenderObject*, const PaintInfo&, const IntRect&);
79 virtual bool paintTextField(RenderObject*, const PaintInfo&, const IntRect&);
81 virtual bool paintTextArea(RenderObject* o, const PaintInfo& i, const IntRect& r)
85 virtual bool paintMenuList(RenderObject*, const PaintInfo&, const IntRect&);
88 virtual bool paintMenuListButton(RenderObject*, const PaintInfo&, const IntRect&);
90 virtual bool paintSliderTrack(RenderObject* o, const PaintInfo& i, const IntRect& r);
91 virtual bool paintSliderThumb(RenderObject* o, const PaintInfo& i, const IntRect& r);
97 virtual bool paintSearchField(RenderObject*, const PaintInfo&, const IntRect&)
    [all...]
  /external/webkit/Source/WebKit/android/jni/
PicturePile.h 29 #include "IntRect.h"
60 virtual void paintContents(GraphicsContext* gc, IntRect& dirty) = 0;
71 IntRect area;
76 PictureContainer(const IntRect& area)
100 void invalidate(const IntRect& dirtyRect);
105 PrerenderedInval* prerenderedInvalForArea(const IntRect& area);
115 void appendToPile(const IntRect& inval, const IntRect& originalInval = IntRect());
121 Vector<IntRect> m_webkitInvals
    [all...]
WebCoreViewBridge.h 31 #include "IntRect.h"
52 const WebCore::IntRect& rect) = 0;
54 const WebCore::IntRect& getBounds() const
59 const WebCore::IntRect& getVisibleBounds() const
64 const WebCore::IntRect& getWindowBounds() const
91 m_windowBounds = WebCore::IntRect(x, y, h, v);
108 WebCore::IntRect m_bounds;
109 WebCore::IntRect m_windowBounds;
110 WebCore::IntRect m_visibleBounds;
  /external/webkit/Source/WebKit/android/plugins/
PluginViewBridgeAndroid.h 42 virtual void draw(GraphicsContext* gc, const IntRect& rect);
  /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/Shared/mac/
UpdateChunk.h 29 #include <WebCore/IntRect.h>
42 UpdateChunk(const WebCore::IntRect&);
46 const WebCore::IntRect& rect() const { return m_rect; }
57 WebCore::IntRect m_rect;
  /external/webkit/Source/WebCore/platform/graphics/
IntRect.h 76 class IntRect {
78 IntRect() { }
79 IntRect(const IntPoint& location, const IntSize& size)
81 IntRect(int x, int y, int width, int height)
84 explicit IntRect(const FloatRect& rect); // don't do this implicitly since it's lossy
141 bool intersects(const IntRect&) const;
142 bool contains(const IntRect&) const;
150 void intersect(const IntRect&);
151 void unite(const IntRect&);
152 void uniteIfNonZero(const IntRect&)
    [all...]
Tile.h 27 #include "IntRect.h"
51 void invalidate(const IntRect&);
52 Vector<IntRect> updateBackBuffer();
55 void paint(GraphicsContext*, const IntRect&);
58 const IntRect& rect() const { return m_rect; }
67 IntRect m_rect;
  /external/webkit/Source/WebCore/platform/graphics/android/
GLWebViewState.h 34 #include "IntRect.h"
180 int drawGL(IntRect& rect, SkRect& visibleContentRect, IntRect* invalRect,
181 IntRect& screenRect, int titleBarHeight,
182 IntRect& clip, float scale,
190 void addDirtyArea(const IntRect& rect);
217 double setupDrawing(const IntRect& invScreenRect, const SkRect& visibleContentRect,
218 const IntRect& screenRect, int titleBarHeight,
219 const IntRect& screenClip, float scale);
220 void showFrameInfo(const IntRect& rect, bool collectionsSwapped)
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/
TiledDrawingAreaProxy.h 33 #include <WebCore/IntRect.h>
77 void takeSnapshot(const WebCore::IntSize& size, const WebCore::IntRect& contentsRect);
84 void paint(WebCore::GraphicsContext*, const WebCore::IntRect&);
102 WebCore::IntRect mapToContents(const WebCore::IntRect&) const;
103 WebCore::IntRect mapFromContents(const WebCore::IntRect&) const;
109 WebCore::IntRect webViewVisibleRect();
110 void updateWebView(const Vector<WebCore::IntRect>& paintedArea);
116 virtual bool paint(const WebCore::IntRect&, PlatformDrawingContext)
    [all...]
  /external/webkit/Source/WebCore/page/
SpeechInputClient.h 40 class IntRect;
54 virtual bool startRecognition(int requestId, const IntRect& elementRect, const AtomicString& language, const String& grammar, SecurityOrigin*) = 0;
  /external/webkit/Source/WebCore/platform/graphics/chromium/
ImageLayerChromium.cpp 67 m_dirtyRect = IntRect(IntPoint(0, 0), bounds());
71 void ImageLayerChromium::paintContentsIfDirty(const IntRect&)
78 IntRect paintRect(IntPoint(0, 0), m_decodedImage.size());
81 m_dirtyRect = IntRect();
88 IntRect paintRect(IntPoint(0, 0), m_decodedImage.size());
92 IntRect ImageLayerChromium::layerBounds() const
94 return IntRect(IntPoint(0, 0), m_decodedImage.size());
102 const IntRect sourceRect = layerBounds();
ContentLayerChromium.h 55 virtual void paintContentsIfDirty(const IntRect& targetSurfaceRect);
60 virtual void draw(const IntRect& targetSurfaceRect);
71 virtual IntRect layerBounds() const;
77 IntRect visibleLayerRect(const IntRect&);
LayerTilerChromium.h 47 virtual void paint(GraphicsContext& context, const IntRect& contentRect) = 0;
60 void invalidateRect(const IntRect& contentRect);
65 void update(TilePaintInterface& painter, const IntRect& contentRect);
71 void updateFromPixels(const IntRect& contentRect, const IntRect& paintRect, const uint8_t* pixels);
74 void draw(const IntRect& contentRect, const TransformationMatrix&, float opacity);
100 void clearDirty() { m_dirtyLayerRect = IntRect(); }
107 IntRect m_dirtyLayerRect;
121 void growLayerToContain(const IntRect& contentRect);
127 void invalidateTiles(const IntRect& contentRect)
    [all...]
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGHiddenContainer.h 47 virtual IntRect clippedOverflowRectForRepaint(RenderBoxModelObject*) { return IntRect(); }
  /external/webkit/Source/WebCore/platform/gtk/
RenderThemeGtk.h 59 virtual void adjustRepaintRect(const RenderObject*, IntRect&);
100 virtual bool paintCheckbox(RenderObject* o, const PaintInfo& i, const IntRect& r);
103 virtual bool paintRadio(RenderObject* o, const PaintInfo& i, const IntRect& r);
107 virtual bool paintButton(RenderObject*, const PaintInfo&, const IntRect&);
109 virtual bool paintTextField(RenderObject*, const PaintInfo&, const IntRect&);
110 virtual bool paintTextArea(RenderObject*, const PaintInfo&, const IntRect&);
123 virtual bool paintMenuList(RenderObject*, const PaintInfo&, const IntRect&);
124 virtual bool paintMenuListButton(RenderObject*, const PaintInfo&, const IntRect&);
127 virtual bool paintSearchFieldResultsDecoration(RenderObject*, const PaintInfo&, const IntRect&);
130 virtual bool paintSearchField(RenderObject*, const PaintInfo&, const IntRect&)
    [all...]
  /external/webkit/Source/WebCore/platform/win/
PopupMenuWin.h 24 #include "IntRect.h"
47 virtual void show(const IntRect&, FrameView*, int index);
63 const IntRect& windowRect() const { return m_windowRect; }
64 IntRect clientRect() const;
75 void paint(const IntRect& damageRect, HDC = 0);
97 virtual void invalidateScrollbarRect(Scrollbar*, const IntRect&);
98 virtual void invalidateScrollCornerRect(const WebCore::IntRect&) { }
101 virtual WebCore::IntRect scrollCornerRect() const { return WebCore::IntRect(); }
107 void calculatePositionAndSize(const IntRect&, FrameView*)
    [all...]

Completed in 1127 milliseconds

1 23 4 5 6 7 8 91011>>