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

1 2 3 4 56 7 8 91011>>

  /external/webkit/Source/WebKit/win/WebCoreSupport/
EmbeddedWidget.h 31 #include <WebCore/IntRect.h>
63 virtual void invalidateRect(const WebCore::IntRect&);
64 virtual void setFrameRect(const WebCore::IntRect&);
69 virtual WebCore::IntRect windowClipRect() const;
82 WebCore::IntRect m_clipRect; // The clip rect to apply to an embedded view.
83 WebCore::IntRect m_windowRect; // Our window rect.
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
TiledDrawingArea.h 33 #include <WebCore/IntRect.h>
45 virtual void setNeedsDisplay(const WebCore::IntRect&);
46 virtual void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollDelta);
67 void updateTile(int tileID, const WebCore::IntRect& dirtyRect, float scale);
74 WebCore::IntRect m_dirtyRect;
81 WebCore::IntRect dirtyRect;
PageOverlay.h 35 class IntRect;
53 virtual void drawRect(PageOverlay*, WebCore::GraphicsContext&, const WebCore::IntRect& dirtyRect) = 0;
63 void setNeedsDisplay(const WebCore::IntRect& dirtyRect);
66 void drawRect(WebCore::GraphicsContext&, const WebCore::IntRect& dirtyRect);
81 WebCore::IntRect bounds() const;
ChunkedUpdateDrawingArea.h 42 virtual void setNeedsDisplay(const WebCore::IntRect&);
43 virtual void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
67 WebCore::IntRect m_dirtyRect;
  /external/webkit/Source/WebCore/platform/
Widget.h 30 #include "IntRect.h"
160 virtual void setFrameRect(const IntRect&);
162 virtual IntRect frameRect() const;
163 IntRect boundsRect() const { return IntRect(0, 0, width(), height()); }
165 void resize(int w, int h) { setFrameRect(IntRect(x(), y(), w, h)); setBoundsSize(IntSize(w, h)); }
166 void resize(const IntSize& s) { setFrameRect(IntRect(pos(), s)); setBoundsSize(s); }
167 void move(int x, int y) { setFrameRect(IntRect(x, y, width(), height())); }
168 void move(const IntPoint& p) { setFrameRect(IntRect(p, size())); }
170 virtual void paint(GraphicsContext*, const IntRect&)
    [all...]
ScrollbarThemeComposite.cpp 58 bool ScrollbarThemeComposite::paint(Scrollbar* scrollbar, GraphicsContext* graphicsContext, const IntRect& damageRect)
63 IntRect backButtonStartPaintRect;
64 IntRect backButtonEndPaintRect;
65 IntRect forwardButtonStartPaintRect;
66 IntRect forwardButtonEndPaintRect;
82 IntRect startTrackRect;
83 IntRect thumbRect;
84 IntRect endTrackRect;
85 IntRect trackPaintRect = trackRect(scrollbar, true);
90 IntRect track = trackRect(scrollbar)
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderLayer.h 79 ClipRects(const IntRect& r)
97 void reset(const IntRect& r)
105 const IntRect& overflowClipRect() const { return m_overflowClipRect; }
106 void setOverflowClipRect(const IntRect& r) { m_overflowClipRect = r; }
108 const IntRect& fixedClipRect() const { return m_fixedClipRect; }
109 void setFixedClipRect(const IntRect&r) { m_fixedClipRect = r; }
111 const IntRect& posClipRect() const { return m_posClipRect; }
112 void setPosClipRect(const IntRect& r) { m_posClipRect = r; }
150 IntRect m_overflowClipRect;
151 IntRect m_fixedClipRect
    [all...]
PaintInfo.h 34 #include "IntRect.h"
45 typedef HashMap<OverlapTestRequestClient*, IntRect> OverlapTestRequestMap;
52 PaintInfo(GraphicsContext* newContext, const IntRect& newRect, PaintPhase newPhase, bool newForceBlackText,
97 static IntRect infiniteRect() { return IntRect(INT_MIN / 2, INT_MIN / 2, INT_MAX, INT_MAX); }
101 IntRect rect;
RenderDataGrid.h 73 virtual void invalidateScrollbarRect(Scrollbar*, const IntRect&);
76 virtual IntRect convertFromScrollbarToContainingView(const Scrollbar*, const IntRect&) const;
77 virtual IntRect convertFromContainingViewToScrollbar(const Scrollbar*, const IntRect&) const;
RenderReplaced.h 58 IntRect localSelectionRect(bool checkWhetherSelected = true) const; // This is in local coordinates, but it's a physical rect (so the top left corner is physical top left).
72 virtual IntRect clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer);
79 virtual IntRect selectionRectForRepaint(RenderBoxModelObject* repaintContainer, bool clipToVisibleContent = true);
  /external/webkit/Source/WebCore/page/
Chrome.h 47 class IntRect;
69 virtual void invalidateWindow(const IntRect&, bool);
70 virtual void invalidateContentsAndWindow(const IntRect&, bool);
71 virtual void invalidateContentsForSlowScroll(const IntRect&, bool);
72 virtual void scroll(const IntSize&, const IntRect&, const IntRect&);
77 virtual IntRect windowToScreen(const IntRect&) const;
85 void scrollRectIntoView(const IntRect&) const;
141 IntRect windowResizerRect() const
    [all...]
SpatialNavigation.h 26 #include "IntRect.h"
36 class IntRect;
133 IntRect rect;
147 IntRect nodeRectInAbsoluteCoordinates(Node*, bool ignoreBorder = false);
148 IntRect frameRectInAbsoluteCoordinates(Frame*);
149 IntRect virtualRectForDirection(FocusDirection, const IntRect& startingRect, int width = 0);
150 IntRect virtualRectForAreaElementAndDirection(HTMLAreaElement*, FocusDirection);
PrintContext.h 34 class IntRect;
54 const IntRect& pageRect(size_t pageNumber) const { return m_pageRects[pageNumber]; }
55 const Vector<IntRect>& pageRects() const { return m_pageRects; }
66 void spoolRect(GraphicsContext& ctx, const IntRect&);
84 Vector<IntRect> m_pageRects;
  /external/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContextSkia.h 63 virtual void addInnerRoundedRectClip(const IntRect& rect, int thickness);
68 virtual bool clipOut(const IntRect& r);
81 virtual void drawEllipse(const IntRect& rect);
82 virtual void drawFocusRing(const Vector<IntRect>& rects, int /* width */,
92 virtual void drawRect(const IntRect& rect);
96 virtual void fillRoundedRect(const IntRect& rect, const IntSize& topLeft,
99 virtual void strokeArc(const IntRect& r, int startAngle, int angleSpan);
104 virtual void drawMediaButton(const IntRect& rect, RenderSkinMediaButton::MediaButton buttonType,
106 const IntRect& thumb = IntRect());
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/
ContentLayerChromium.cpp 78 virtual void paint(GraphicsContext& context, const IntRect& contentRect)
90 void ContentLayerChromium::paintContentsIfDirty(const IntRect& targetSurfaceRect)
100 IntRect layerRect = visibleLayerRect(targetSurfaceRect);
104 IntRect dirty = enclosingIntRect(m_dirtyRect);
130 IntRect ContentLayerChromium::visibleLayerRect(const IntRect& targetSurfaceRect)
135 const IntRect layerBoundRect = layerBounds();
139 IntRect layerInSurfaceSpace = transform.mapRect(layerBoundRect);
146 IntRect minimalSurfaceRect = targetSurfaceRect;
154 IntRect layerRect = surfaceToLayer.projectQuad(FloatQuad(FloatRect(minimalSurfaceRect))).enclosingBounding (…)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/texmap/
TextureMapperNode.h 48 IntRect scissorRect;
49 IntRect visibleRect;
91 IntRect needsDisplayRect;
133 void setNeedsDisplayInRect(IntRect);
144 void uploadTextureFromContent(TextureMapper* textureMapper, const IntRect& visibleRect, GraphicsLayer* layer);
157 IntRect targetBoundingRect;
160 IntRect boundingRectFromRoot;
176 inline IntRect targetRect() const
181 inline IntRect entireRect() const
183 return IntRect(0, 0, m_size.width(), m_size.height())
    [all...]
  /external/webkit/Source/WebCore/platform/haiku/
ScrollbarThemeHaiku.cpp 73 IntRect ScrollbarThemeHaiku::backButtonRect(Scrollbar* scrollbar, ScrollbarPart part, bool)
76 return IntRect();
83 IntRect buttonRect(buttonOrigin, buttonSize);
88 IntRect ScrollbarThemeHaiku::forwardButtonRect(Scrollbar* scrollbar, ScrollbarPart part, bool)
91 return IntRect();
96 return IntRect(scrollbar->x() + scrollbar->width() - width, scrollbar->y(), width, thickness);
100 return IntRect(scrollbar->x(), scrollbar->y() + scrollbar->height() - height, thickness, height);
103 IntRect ScrollbarThemeHaiku::trackRect(Scrollbar* scrollbar, bool)
108 return IntRect();
109 return IntRect(scrollbar->x() + thickness, scrollbar->y(), scrollbar->width() - 2 * thickness, thickness)
    [all...]
  /external/webkit/Source/WebCore/platform/win/
ScrollbarThemeSafari.cpp 32 #include "IntRect.h"
121 static IntRect buttonRepaintRect(const IntRect& buttonRect, ScrollbarOrientation orientation, ScrollbarControlSize controlSize, bool start)
123 IntRect paintRect(buttonRect);
137 IntRect ScrollbarThemeSafari::backButtonRect(Scrollbar* scrollbar, ScrollbarPart part, bool painting)
139 IntRect result;
147 result = IntRect(scrollbar->x(), scrollbar->y(), cButtonLength[scrollbar->controlSize()], thickness);
149 result = IntRect(scrollbar->x(), scrollbar->y(), thickness, cButtonLength[scrollbar->controlSize()]);
155 IntRect ScrollbarThemeSafari::forwardButtonRect(Scrollbar* scrollbar, ScrollbarPart part, bool painting)
157 IntRect result
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
TextureMapperQt.h 35 virtual PlatformGraphicsContext* beginPaint(const IntRect& dirtyRect);
40 IntRect sourceRect() const { return IntRect(0, 0, contentSize().width(), contentSize().height()); }
56 virtual void drawTexture(const BitmapTexture& texture, const IntRect& targetRect, const TransformationMatrix& matrix, float opacity, const BitmapTexture* maskTexture);
58 virtual void setClip(const IntRect&);
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGModelObject.cpp 46 IntRect RenderSVGModelObject::clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer)
51 void RenderSVGModelObject::computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect& repaintRect, bool fixed)
64 IntRect RenderSVGModelObject::outlineBoundsForRepaint(RenderBoxModelObject* repaintContainer, IntPoint*) const
66 IntRect box = enclosingIntRect(repaintRectInLocalCoordinates());
73 void RenderSVGModelObject::absoluteRects(Vector<IntRect>&, int, int)
  /external/webkit/Source/WebKit/chromium/src/
WebScrollbarImpl.h 64 virtual void invalidateScrollbarRect(WebCore::Scrollbar*, const WebCore::IntRect&);
65 virtual void invalidateScrollCornerRect(const WebCore::IntRect&);
67 virtual WebCore::IntRect scrollCornerRect() const { return WebCore::IntRect(); }
69 virtual void getTickmarks(Vector<WebCore::IntRect>&) const;
  /external/webkit/Source/WebCore/dom/
ClientRect.h 36 class IntRect;
41 static PassRefPtr<ClientRect> create(const IntRect& rect) { return adoptRef(new ClientRect(rect)); }
53 ClientRect(const IntRect&);
  /external/webkit/Source/WebCore/platform/qt/
WidgetQt.cpp 39 #include "IntRect.h"
62 IntRect Widget::frameRect() const
67 void Widget::setFrameRect(const IntRect& rect)
104 void Widget::paint(GraphicsContext*, const IntRect&)
  /external/webkit/Source/WebKit2/Shared/win/
UpdateChunk.cpp 42 UpdateChunk::UpdateChunk(const IntRect& rect)
50 UpdateChunk::UpdateChunk(const IntRect& rect, HANDLE bitmapSharedMemory)
64 IntRect rect;
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
WKPrintingView.h 41 Vector<WebCore::IntRect> _printingPageRects;
43 HashMap<WebCore::IntRect, Vector<uint8_t> > _pagePreviews;
49 HashMap<uint64_t, WebCore::IntRect> _expectedPreviewCallbacks;

Completed in 1442 milliseconds

1 2 3 4 56 7 8 91011>>