Searched refs:rects (Results 76 - 100 of 131) sorted by relevance

123456

/external/qemu/distrib/sdl-1.2.12/src/video/windib/
H A DSDL_dibvideo.c477 static void DIB_NormalUpdate(_THIS, int numrects, SDL_Rect *rects);
882 static void DIB_NormalUpdate(_THIS, int numrects, SDL_Rect *rects) argument
894 BitBlt(hdc, rects[i].x, rects[i].y, rects[i].w, rects[i].h,
895 mdc, rects[i].x, rects[i].y, SRCCOPY);
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGPath.cpp71 , m_needsBoundariesUpdate(false) // default is false, the cached rects are empty from the beginning
245 void RenderSVGPath::addFocusRingRects(Vector<IntRect>& rects, int, int) argument
249 rects.append(rect);
/external/quake/quake/src/WinQuake/
H A Dvid_sunxil.cpp928 VID_Update (vrect_t *rects) argument
950 VID_Update_MT(rects);
998 while (rects) { // I've never seen more than one rect?
1017 rects = rects->pnext;
1022 VID_Update_MT (vrect_t *rects) argument
H A Dvid_dos.cpp326 void VID_Update (vrect_t *rects) argument
337 (*pcurrentmode->swapbuffers)(&vid, pcurrentmode, rects);
/external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
H A DSDL_fbvideo.c744 static void FB_DirectUpdate(_THIS, int numrects, SDL_Rect *rects);
746 static void FB_VGA16Update(_THIS, int numrects, SDL_Rect *rects);
1332 static void FB_DirectUpdate(_THIS, int numrects, SDL_Rect *rects) argument
1347 static void FB_VGA16Update(_THIS, int numrects, SDL_Rect *rects) argument
1370 left = rects->x & ~7;
1371 width = (rects->w + 7) >> 3;
1372 height = rects->h;
1373 src = (Uint32*)screen->pixels + (rects->y * SRCPitch) + (left >> 2);
1374 dst = (Uint8*)mapped_mem + (rects->y * FBPitch) + (left >> 3);
1506 rects
[all...]
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DGraphicsContextCairo.cpp649 void GraphicsContext::drawFocusRing(const Vector<IntRect>& rects, int width, int /* offset */, const Color& color) argument
654 unsigned rectCount = rects.size();
670 GdkRectangle rect = rects[i];
673 cairo_rectangle_int_t rect = rects[i];
689 path.addRoundedRect(rects[i], FloatSize(radius, radius));
/external/qemu/distrib/sdl-1.2.12/src/video/os2fslib/
H A DSDL_os2fslib.c990 SDL_Rect *rects; local
995 rects = (SDL_Rect *) mp2;
1025 rects[i].y, rects[i].x, rects[i].w, rects[i].h);
2141 static void os2fslib_UpdateRects(_THIS, int numrects, SDL_Rect *rects) argument
2150 (MPARAM) rects);
2194 rects[i].y, rects[
[all...]
/external/webkit/Source/WebCore/platform/graphics/android/context/
H A DPlatformGraphicsContextSkia.cpp308 void PlatformGraphicsContextSkia::drawFocusRing(const Vector<IntRect>& rects, argument
312 unsigned rectCount = rects.size();
319 SkIRect r = rects[i];
521 // rect. The result is that we end up drawing rects that are meant to
522 // seam together (one for each portion), but if the rects have
527 // The fix seems to be to just turn off antialasing for rects (this
H A DGraphicsContextAndroid.cpp407 void GraphicsContext::drawFocusRing(const Vector<IntRect>& rects, int width, int offset, const Color& color) argument
413 platformContext()->drawFocusRing(rects, width, offset, color);
H A DPlatformGraphicsContext.h111 virtual void drawFocusRing(const Vector<IntRect>& rects, int /* width */,
/external/webkit/Source/WebKit/android/plugins/
H A DPluginWidgetAndroid.cpp488 void PluginWidgetAndroid::setVisibleRects(const ANPRectI rects[], int32_t count) { argument
498 memcpy(m_requestedVisibleRects, rects, count * sizeof(rects[0]));
527 // create a rect that will contain as many of the rects that will fit on screen
556 // combine this new rect with the higher priority rects
/external/chromium/chrome/browser/ui/gtk/tabs/
H A Dtab_strip_gtk.cc1871 GdkRectangle* rects;
1873 gdk_region_get_rectangles(event->region, &rects, &num_rects);
1874 qsort(rects, num_rects, sizeof(GdkRectangle), CompareGdkRectangles);
1877 CanPaintOnlyFavicons(rects, num_rects, &tabs_to_repaint)) {
1879 g_free(rects);
1882 g_free(rects);
2028 bool TabStripGtk::CanPaintOnlyFavicons(const GdkRectangle* rects, argument
2030 // |rects| are sorted so we just need to scan from left to right and compare
2036 if (GdkRectMatchesTabFaviconBounds(rects[r], tab) &&
H A Dtab_strip_gtk.h260 // Returns true if |rects| are all areas that match up with tab favicons.
261 // |rects| must be sorted from left to right. |tabs_to_paint| are the tab
262 // positions that match the rects.
263 bool CanPaintOnlyFavicons(const GdkRectangle* rects,
/external/qemu/distrib/sdl-1.2.12/include/
H A DSDL_video.h357 (SDL_Surface *screen, int numrects, SDL_Rect *rects);
818 extern DECLSPEC void SDLCALL SDL_GL_UpdateRects(int numrects, SDL_Rect* rects);
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitwebview.cpp612 static bool shouldCoalesce(const IntRect& rect, const Vector<IntRect>& rects) argument
616 bool useUnionedRect = (rects.size() <= 1) || (rects.size() > cRectThreshold);
619 // Attempt to guess whether or not we should use the unioned rect or the individual rects.
624 for (size_t i = 0; i < rects.size(); ++i)
625 singlePixels += rects[i].width() * rects[i].height();
632 static void paintWebView(Frame* frame, gboolean transparent, GraphicsContext& context, const IntRect& clipRect, const Vector<IntRect>& rects) argument
636 if (rects.size() > 0)
637 coalesce = shouldCoalesce(clipRect, rects);
676 GOwnPtr<GdkRectangle> rects; local
705 Vector<IntRect> rects; local
[all...]
/external/qemu/distrib/sdl-1.2.12/src/video/
H A DSDL_sysvideo.h107 void (*UpdateRects)(_THIS, int numrects, SDL_Rect *rects);
/external/skia/include/core/
H A DSkRegion.h114 * Set this region to the union of an array of rects. This is generally
119 bool setRects(const SkIRect rects[], int count);
/external/webkit/Source/WebCore/rendering/
H A DRenderListBox.cpp301 void RenderListBox::addFocusRingRects(Vector<IntRect>& rects, int tx, int ty) argument
304 return RenderBlock::addFocusRingRects(rects, tx, ty);
311 rects.append(itemBoundingBoxRect(tx, ty, selectedItem));
321 rects.append(itemBoundingBoxRect(tx, ty, i));
H A DRenderView.cpp331 void RenderView::absoluteRects(Vector<IntRect>& rects, int tx, int ty) argument
333 rects.append(IntRect(tx, ty, m_layer->width(), m_layer->height()));
431 // In order to get the repaint rect right, we have to examine left, middle, and right rects individually, since otherwise
432 // the union of those rects might remain the same even when changes have occurred.
553 if (!newInfo || oldInfo->rects() != newInfo->rects() || oldInfo->state() != newInfo->state()) {
H A DRenderObject.cpp875 // this matters for rects in transformed contexts.
1087 Vector<IntRect> rects; local
1088 absoluteRects(rects, absPos.x(), absPos.y());
1090 size_t n = rects.size();
1094 IntRect result = rects[0];
1096 result.unite(rects[i]);
1102 Vector<IntRect> rects; local
1108 addFocusRingRects(rects, absolutePoint.x(), absolutePoint.y());
1109 size_t count = rects.size();
1111 IntRect rect = rects[
[all...]
H A DRenderTextControl.cpp611 void RenderTextControl::addFocusRingRects(Vector<IntRect>& rects, int tx, int ty) argument
614 rects.append(IntRect(tx, ty, width(), height()));
/external/webkit/Source/WebKit/mac/WebView/
H A DWebViewInternal.h180 - (BOOL)_mustDrawUnionedRect:(NSRect)rect singleRects:(const NSRect *)rects count:(NSInteger)count;
/external/qemu/distrib/sdl-1.2.12/src/video/windx5/
H A DSDL_dx5video.c1014 static void DX5_WindowUpdate(_THIS, int numrects, SDL_Rect *rects);
1015 static void DX5_DirectUpdate(_THIS, int numrects, SDL_Rect *rects);
2116 void DX5_WindowUpdate(_THIS, int numrects, SDL_Rect *rects) argument
2123 src.top = (LONG)rects[i].y;
2124 src.bottom = (LONG)rects[i].y+rects[i].h;
2125 src.left = (LONG)rects[i].x;
2126 src.right = (LONG)rects[i].x+rects[i].w;
2144 void DX5_DirectUpdate(_THIS, int numrects, SDL_Rect *rects) argument
[all...]
/external/webkit/Source/WebCore/dom/
H A DRange.cpp1615 Vector<IntRect> rects; local
1616 textRects(rects);
1617 const size_t n = rects.size();
1619 result.unite(rects[i]);
1623 void Range::textRects(Vector<IntRect>& rects, bool useSelectionHeight) argument
1639 renderText->absoluteRectsForRange(rects, startOffset, endOffset, useSelectionHeight);
/external/qemu/distrib/sdl-1.2.12/src/video/ps2gs/
H A DSDL_gsvideo.c410 static void GS_DMAFullUpdate(_THIS, int numrects, SDL_Rect *rects);
625 static void GS_DMAFullUpdate(_THIS, int numrects, SDL_Rect *rects) argument

Completed in 848 milliseconds

123456