HomeSort by relevance Sort by last modified time
    Searched full:intrect (Results 101 - 125 of 888) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webkit/Source/WebCore/platform/wx/
WidgetWx.cpp 31 #include "IntRect.h"
77 IntRect Widget::frameRect() const
85 void Widget::setFrameRect(const IntRect& rect)
93 void Widget::invalidateRect(const IntRect& r)
99 void Widget::paint(GraphicsContext*,const IntRect& r)
  /external/webkit/Source/WebCore/rendering/
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;
RenderListBox.h 49 IntRect itemBoundingBoxRect(int tx, int ty, int index);
69 virtual IntRect controlClipRect(int tx, int ty) const;
82 virtual void addFocusRingRects(Vector<IntRect>&, int tx, int ty);
105 virtual void invalidateScrollbarRect(Scrollbar*, const IntRect&);
108 virtual IntRect scrollCornerRect() const { return IntRect(); }
109 virtual void invalidateScrollCornerRect(const IntRect&) { }
110 virtual IntRect convertFromScrollbarToContainingView(const Scrollbar*, const IntRect&) const;
111 virtual IntRect convertFromContainingViewToScrollbar(const Scrollbar*, const IntRect&) const
    [all...]
RenderScrollbar.cpp 62 setFrameRect(IntRect(0, 0, width, height));
101 void RenderScrollbar::paint(GraphicsContext* context, const IntRect& damageRect)
197 setFrameRect(IntRect(x(), y(), isHorizontal ? width() : newThickness, isHorizontal ? newThickness : height()));
273 void RenderScrollbar::paintPart(GraphicsContext* graphicsContext, ScrollbarPart partType, const IntRect& rect)
281 IntRect RenderScrollbar::buttonRect(ScrollbarPart partType)
285 return IntRect();
291 return IntRect(x(), y(), isHorizontal ? partRenderer->width() : width(), isHorizontal ? height() : partRenderer->height());
293 return IntRect(isHorizontal ? x() + width() - partRenderer->width() : x(),
300 IntRect previousButton = buttonRect(BackButtonStartPart);
301 return IntRect(isHorizontal ? x() + previousButton.width() : x()
    [all...]
HitTestResult.h 25 #include "IntRect.h"
41 class IntRect;
84 IntRect imageRect() const;
106 IntRect rectForPoint(int x, int y) const;
107 IntRect rectForPoint(const IntPoint&) const;
108 static IntRect rectForPoint(const IntPoint&, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding);
116 bool addNodeToRectBasedTestResult(Node*, int x, int y, const IntRect& = IntRect());
148 inline IntRect HitTestResult::rectForPoint(int x, int y) const
158 inline IntRect HitTestResult::rectForPoint(const IntPoint& point) cons
    [all...]
RenderThemeChromiumSkia.cpp 198 IntRect center(const IntRect& original, int width, int height)
205 return IntRect(x, y, width, height);
237 bool RenderThemeChromiumSkia::paintTextArea(RenderObject* o, const PaintInfo& i, const IntRect& r)
248 bool RenderThemeChromiumSkia::paintSearchField(RenderObject* o, const PaintInfo& i, const IntRect& r)
262 IntRect RenderThemeChromiumSkia::convertToPaintingRect(RenderObject* inputRenderer, const RenderObject* partRenderer, IntRect partRect, const IntRect& localOffset) const
274 bool RenderThemeChromiumSkia::paintSearchFieldCancelButton(RenderObject* cancelButtonObject, const PaintInfo& paintInfo, const IntRect& r)
281 IntRect inputContentBox = inputRenderBox->contentBoxRect()
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/
TiledDrawingAreaTile.h 31 #include "IntRect.h"
54 void invalidate(const WebCore::IntRect&);
59 void paint(WebCore::GraphicsContext*, const WebCore::IntRect&);
63 const WebCore::IntRect& rect() const { return m_rect; }
75 WebCore::IntRect m_rect;
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
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;
  /external/webkit/Source/WebKit2/UIProcess/qt/
TiledDrawingAreaTileQt.cpp 80 void TiledDrawingAreaTile::invalidate(const IntRect& dirtyRect)
82 IntRect tileDirtyRect = intersection(dirtyRect, m_rect);
91 IntRect oldRect = m_rect;
92 m_rect = IntRect(m_rect.location(), newSize);
94 invalidate(IntRect(oldRect.maxX(), oldRect.y(), m_rect.maxX() - oldRect.maxX(), m_rect.height()));
96 invalidate(IntRect(oldRect.x(), oldRect.maxY(), m_rect.width(), m_rect.maxY() - oldRect.maxY()));
107 void TiledDrawingAreaTile::paint(GraphicsContext* context, const IntRect& rect)
111 IntRect target = intersection(rect, m_rect);
112 IntRect source((target.x() - m_rect.x()),
123 const IntRect& updateChunkRect = updateChunk->rect()
    [all...]
  /external/webkit/Source/WebCore/platform/
HostWindow.h 42 virtual void invalidateWindow(const IntRect& updateRect, bool immediate) = 0;
45 virtual void invalidateContentsAndWindow(const IntRect& updateRect, bool immediate) = 0;
48 virtual void scroll(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect) = 0;
51 virtual void invalidateContentsForSlowScroll(const IntRect& updateRect, bool immediate) = 0;
60 virtual IntRect windowToScreen(const IntRect&) const = 0;
  /external/webkit/Source/WebCore/platform/graphics/chromium/
LayerTilerChromium.cpp 130 void LayerTilerChromium::invalidateTiles(const IntRect& contentRect)
138 IntRect tileRect = tileContentRect(tile);
148 void LayerTilerChromium::contentRectToTileIndices(const IntRect& contentRect, int& left, int& top, int& right, int& bottom) const
150 const IntRect layerRect = contentRectToLayerRect(contentRect);
158 IntRect LayerTilerChromium::contentRectToLayerRect(const IntRect& contentRect) const
161 IntRect layerRect(pos, contentRect.size());
165 layerRect = IntRect(IntPoint(0, 0), IntSize(contentRect.width() + pos.x(), contentRect.height() + pos.y()));
169 IntRect LayerTilerChromium::layerRectToContentRect(const IntRect& layerRect) cons
    [all...]
LayerRendererChromium.h 38 #include "IntRect.h"
76 void invalidateRootLayerRect(const IntRect& dirtyRect);
78 void setViewport(const IntRect& visibleRect, const IntRect& contentRect, const IntPoint& scrollPosition);
124 void getFramebufferPixels(void *pixels, const IntRect& rect);
130 void setScissorToRect(const IntRect&);
157 bool isLayerVisible(LayerChromium*, const TransformationMatrix&, const IntRect& visibleRect);
159 void setDrawViewportRect(const IntRect&, bool flipY);
172 IntRect m_viewportVisibleRect;
173 IntRect m_viewportContentRect
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/texmap/
TextureMapper.h 31 #include "IntRect.h"
65 virtual PlatformGraphicsContext* beginPaint(const IntRect& dirtyRect) = 0;
69 return beginPaint(IntRect(0, 0, size().width(), size().height()));
99 virtual void drawTexture(const BitmapTexture& texture, const IntRect& target, const TransformationMatrix& matrix = TransformationMatrix(), float opacity = 1.0f, const BitmapTexture* maskTexture = 0) = 0;
103 virtual void paintToTarget(const BitmapTexture& texture, const IntSize&, const TransformationMatrix& matrix, float opacity, const IntRect& visibleRect)
106 drawTexture(texture, IntRect(0, 0, texture.contentSize().width(), texture.contentSize().height()), matrix, opacity, 0);
110 virtual void setClip(const IntRect&) = 0;
  /external/webkit/Source/WebCore/platform/haiku/
RenderThemeHaiku.cpp 110 bool RenderThemeHaiku::paintCheckbox(RenderObject*, const PaintInfo& info, const IntRect& intRect)
116 BRect rect = intRect;
142 bool RenderThemeHaiku::paintRadio(RenderObject*, const PaintInfo& info, const IntRect& intRect)
148 BRect rect = intRect;
172 bool RenderThemeHaiku::paintMenuList(RenderObject*, const PaintInfo&, const IntRect&)
  /external/webkit/Source/WebKit2/Platform/
Region.h 29 #include <WebCore/IntRect.h>
39 Region(const WebCore::IntRect&);
41 WebCore::IntRect bounds() const { return m_bounds; }
44 Vector<WebCore::IntRect> rects() const;
70 Shape(const WebCore::IntRect&);
72 WebCore::IntRect bounds() const;
114 WebCore::IntRect m_bounds;
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
ChromeClientHaiku.cpp 261 IntRect ChromeClientHaiku::windowResizerRect() const
263 return IntRect();
266 void ChromeClientHaiku::invalidateWindow(const IntRect&, bool)
271 void ChromeClientHaiku::invalidateContentsAndWindow(const IntRect&, bool)
276 void ChromeClientHaiku::invalidateContentsForSlowScroll(const IntRect&, bool)
281 void ChromeClientHaiku::scroll(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect)
292 IntRect ChromeClientHaiku::windowToScreen(const IntRect&) const
295 return IntRect();
    [all...]
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
ChromeClientEfl.cpp 47 #include "IntRect.h"
114 IntRect intrect = IntRect(rect); local
123 ecore_evas_move(ee, intrect.x(), intrect.y());
124 ecore_evas_resize(ee, intrect.width(), intrect.height());
228 void ChromeClientEfl::createSelectPopup(PopupMenuClient* client, int selected, const IntRect& rect)
313 IntRect ChromeClientEfl::windowResizerRect() cons
    [all...]
  /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...]
  /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/WebKit/qt/WebCoreSupport/
ChromeClientQt.h 114 virtual IntRect windowResizerRect() const;
116 virtual void invalidateWindow(const IntRect&, bool);
117 virtual void invalidateContentsAndWindow(const IntRect&, bool);
118 virtual void invalidateContentsForSlowScroll(const IntRect&, bool);
119 virtual void scroll(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect);
125 virtual IntRect windowToScreen(const IntRect&) const;
159 virtual IntRect visibleRectForTiledBackingStore() const;
180 virtual void scrollRectIntoView(const IntRect&, const ScrollView*) const {
    [all...]
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
ChromeClientWinCE.cpp 227 IntRect ChromeClientWinCE::windowResizerRect() const
230 return IntRect();
233 void ChromeClientWinCE::invalidateWindow(const IntRect&, bool)
238 void ChromeClientWinCE::invalidateContentsAndWindow(const IntRect& updateRect, bool immediate)
247 void ChromeClientWinCE::invalidateContentsForSlowScroll(const IntRect& updateRect, bool immediate)
252 void ChromeClientWinCE::scroll(const IntSize&, const IntRect& rectToScroll, const IntRect&)
257 IntRect ChromeClientWinCE::windowToScreen(const IntRect& rect) const
280 void ChromeClientWinCE::scrollRectIntoView(const IntRect&, const ScrollView*) cons
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/win/
WebPopupMenuProxyWin.h 51 virtual void showPopupMenu(const WebCore::IntRect&, WebCore::TextDirection, double scaleFactor, const Vector<WebPopupItem>&, const PlatformPopupMenuData&, int32_t selectedIndex);
67 virtual void invalidateScrollbarRect(WebCore::Scrollbar*, const WebCore::IntRect&);
68 virtual void invalidateScrollCornerRect(const WebCore::IntRect&) { }
71 virtual WebCore::IntRect scrollCornerRect() const { return WebCore::IntRect(); }
93 void calculatePositionAndSize(const WebCore::IntRect&);
94 WebCore::IntRect clientRect() const;
98 const WebCore::IntRect& windowRect() const { return m_windowRect; }
111 void paint(const WebCore::IntRect& damageRect, HDC = 0);
130 WebCore::IntRect m_windowRect
    [all...]
  /external/webkit/Source/WebCore/platform/chromium/
ScrollbarThemeChromiumMac.mm 214 static IntRect buttonRepaintRect(const IntRect& buttonRect, ScrollbarOrientation orientation, ScrollbarControlSize controlSize, bool start)
216 IntRect paintRect(buttonRect);
230 IntRect ScrollbarThemeChromiumMac::backButtonRect(Scrollbar* scrollbar, ScrollbarPart part, bool painting)
232 IntRect result;
244 result = IntRect(scrollbar->x(), scrollbar->y(), cOuterButtonLength[scrollbar->controlSize()] + painting ? cOuterButtonOverlap : 0, thickness);
246 result = IntRect(scrollbar->x(), scrollbar->y(), thickness, cOuterButtonLength[scrollbar->controlSize()] + painting ? cOuterButtonOverlap : 0);
253 result = IntRect(start, scrollbar->y(), cButtonLength[scrollbar->controlSize()], thickness);
256 result = IntRect(scrollbar->x(), start, thickness, cButtonLength[scrollbar->controlSize()]);
264 IntRect ScrollbarThemeChromiumMac::forwardButtonRect(Scrollbar* scrollbar, ScrollbarPart part, bool painti (…)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/gpu/
TilingData.h 39 class IntRect;
62 IntRect tileBounds(int tile) const;
63 IntRect tileBoundsWithBorder(int tile) const;
69 IntRect overlappedTileIndices(const IntRect& srcRect) const;
70 IntRect overlappedTileIndices(const FloatRect& srcRect) const;
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qwkpage_p.h 52 virtual void setViewNeedsDisplay(const WebCore::IntRect&);
54 virtual void scrollView(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
71 virtual void didFindZoomableArea(const WebCore::IntRect&);
81 virtual WebCore::IntRect windowToScreen(const WebCore::IntRect&);
96 virtual void flashBackingStoreUpdates(const Vector<WebCore::IntRect>& updateRects);

Completed in 261 milliseconds

1 2 3 45 6 7 8 91011>>