HomeSort by relevance Sort by last modified time
    Searched refs:rects (Results 1 - 25 of 139) sorted by null

1 2 3 4 5 6

  /frameworks/base/include/private/ui/
RegionHelper.h 50 RECT const* rects; member in struct:android::region_operator::region
55 : rects(rhs.rects), count(rhs.count), dx(rhs.dx), dy(rhs.dy) { }
57 : rects(r), count(c), dx(), dy() { }
59 : rects(r), count(c), dx(dx), dy(dy) { }
163 SpannerBase::lhs_head = lhs.rects->top + lhs.dy;
164 SpannerBase::lhs_tail = lhs.rects->bottom + lhs.dy;
165 SpannerBase::rhs_head = rhs.rects->top + rhs.dy;
166 SpannerBase::rhs_tail = rhs.rects->bottom + rhs.dy;
192 RECT const * rects = reg.rects local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11image.c 81 static void X11_NormalUpdate(_THIS, int numrects, SDL_Rect *rects);
82 static void X11_MITSHMUpdate(_THIS, int numrects, SDL_Rect *rects);
235 static void X11_NormalUpdate(_THIS, int numrects, SDL_Rect *rects)
240 if ( rects[i].w == 0 || rects[i].h == 0 ) { /* Clipped? */
244 rects[i].x, rects[i].y,
245 rects[i].x, rects[i].y, rects[i].w, rects[i].h)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/riscos/
SDL_riscosFullScreenVideo.c 71 static void FULLSCREEN_UpdateRects(_THIS, int numrects, SDL_Rect *rects);
72 static void FULLSCREEN_UpdateRectsMemCpy(_THIS, int numrects, SDL_Rect *rects);
73 static void FULLSCREEN_UpdateRects8bpp(_THIS, int numrects, SDL_Rect *rects);
74 static void FULLSCREEN_UpdateRects16bpp(_THIS, int numrects, SDL_Rect *rects);
75 static void FULLSCREEN_UpdateRects32bpp(_THIS, int numrects, SDL_Rect *rects);
76 static void FULLSCREEN_UpdateRectsOS(_THIS, int numrects, SDL_Rect *rects);
242 /* Update rects is different if we have a backbuffer */
377 static void FULLSCREEN_UpdateRects(_THIS, int numrects, SDL_Rect *rects)
382 static void FULLSCREEN_UpdateRectsMemCpy(_THIS, int numrects, SDL_Rect *rects)
391 from = this->hidden->bank[0] + rects->x * xmult + rects->y * pitch
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/nanox/
SDL_nximage_c.h 34 extern void NX_NormalUpdate (_THIS, int numrects, SDL_Rect * rects) ;
  /external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/
SDL_cgximage.c 42 static void CGX_NormalUpdate(_THIS, int numrects, SDL_Rect *rects);
43 static void CGX_FakeUpdate(_THIS, int numrects, SDL_Rect *rects);
315 static void CGX_SwapPixels(SDL_Surface *screen, int numrects, SDL_Rect *rects)
325 minx = rects[i].x;
326 maxx = rects[i].x+rects[i].w;
327 miny = rects[i].y;
328 maxy = rects[i].y+rects[i].h;
343 minx = rects[i].x
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/photon/
SDL_ph_image_c.h 54 extern void ph_NormalUpdate(_THIS, int numrects, SDL_Rect* rects);
55 extern void ph_OCUpdate(_THIS, int numrects, SDL_Rect* rects);
56 extern void ph_OCDCUpdate(_THIS, int numrects, SDL_Rect* rects);
57 extern void ph_OpenGLUpdate(_THIS, int numrects, SDL_Rect* rects);
  /external/webkit/Source/WebKit/win/Interfaces/
DOMExtensions.idl 47 HRESULT lineBoxRects([in, size_is(cRects)] RECT* rects, [in] int cRects);
  /external/skia/tests/
RegionTest.cpp 41 const SkIRect rects[] = { local
47 REPORTER_ASSERT(reporter, test_rects(rects, SK_ARRAY_COUNT(rects)));
  /external/quake/quake/src/WinQuake/
vid_sunx.cpp 1012 void VID_Update (vrect_t *rects)
1059 while (rects)
1061 printf("update: %d,%d (%d,%d)\n", rects->x, rects->y, rects->width, rects->height);
1064 rects->x, rects->y, rects->width,
1065 rects->height)
    [all...]
vid_vga.cpp 431 vrect_t *rects)
448 while (rects)
451 lvid->buffer + rects->x + (rects->y * lvid->rowbytes),
452 VGA_pagebase + rects->x + (rects->y * VGA_rowbytes),
453 rects->width,
454 rects->height,
458 rects = rects->pnext;
    [all...]
vid_x.cpp 957 void VID_Update (vrect_t *rects)
996 while (rects)
1000 rects->x, rects->y, rects->width,
1001 rects->height);
1004 rects->x, rects->y, rects->width,
1005 rects->height)
    [all...]
vid.h 76 void VID_Update (vrect_t *rects);
vid_null.cpp 64 void VID_Update (vrect_t *rects)
vid_dos.h 35 vrect_t *rects);
73 vrect_t *rects);
  /external/qemu/distrib/sdl-1.2.12/src/video/picogui/
SDL_pgvideo.c 52 static void PG_UpdateRects(_THIS, int numrects, SDL_Rect *rects);
290 static void PG_UpdateRects(_THIS, int numrects, SDL_Rect *rects)
295 if (rects[i].w <= 0 || rects[i].h <= 0)
303 rects[i].x, rects[i].y,
304 rects[i].w, rects[i].h);
307 rects[i].x, rects[i].y
    [all...]
  /external/webkit/Source/WebCore/wml/
WMLAElement.cpp 111 Vector<IntRect> rects;
113 renderer()->absoluteRects(rects, absPos.x(), absPos.y());
114 size_t n = rects.size();
116 if (!rects[i].isEmpty())
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
DrawingAreaImpl.cpp 528 static bool shouldPaintBoundsRect(const IntRect& bounds, const Vector<IntRect>& rects)
533 if (rects.size() <= 1 || rects.size() > rectThreshold)
536 // Attempt to guess whether or not we should use the region bounds rect or the individual rects.
541 for (size_t i = 0; i < rects.size(); ++i)
542 rectsArea += rects[i].width() * rects[i].height();
581 Vector<IntRect> rects = m_dirtyRegion.rects();
583 if (shouldPaintBoundsRect(bounds, rects)) {
    [all...]
FindController.cpp 200 // We want the text rects in selection rect coordinates.
228 Vector<IntRect> rects; local
243 rects.append(*it);
247 return rects;
297 Vector<IntRect> rects = rectsForTextMatches(); local
308 for (size_t i = 0; i < rects.size(); ++i) {
309 IntRect whiteFrameRect = rects[i];
320 for (size_t i = 0; i < rects.size(); ++i)
321 graphicsContext.fillRect(rects[i]);
  /external/webkit/Source/WebCore/dom/
DocumentMarkerController.cpp 105 Vector<IntRect>& rects = vectorPair->second; local
107 ASSERT(numMarkers == rects.size());
119 rects.remove(i);
134 rects.remove(j);
145 rects.insert(i, placeholderRectForMarker());
215 Vector<IntRect>& rects = vectorPair->second; local
216 ASSERT(markers.size() == rects.size());
237 rects.remove(i);
248 rects.insert(i, placeholderRectForMarker());
256 rects.insert(i, placeholderRectForMarker())
288 Vector<IntRect>& rects = vectorPair->second; local
363 Vector<IntRect>& rects = vectorPair->second; local
425 Vector<IntRect>& rects = vectorPair->second; local
526 Vector<IntRect>& rects = vectorPair->second; local
546 Vector<IntRect>& rects = vectorPair->second; local
    [all...]
  /external/skia/samplecode/
SampleMeasure.cpp 44 SkRect* rects = autoRects.get(); local
53 int n = p.getTextWidths(text, len, widths, rects);
67 SkRect r = rects[j];
  /external/quake/quake/src/QW/client/
vid_x.c 882 void VID_Update (vrect_t *rects)
912 while (rects)
916 rects->x, rects->y, rects->width,
917 rects->height);
919 x_framebuffer[current_framebuffer], rects->x, rects->y,
920 rects->x, rects->y, rects->width, rects->height, True))
    [all...]
vid.h 76 void VID_Update (vrect_t *rects);
vid_null.c 45 void VID_Update (vrect_t *rects)
  /external/qemu/distrib/sdl-1.2.12/src/video/gapi/
SDL_gapivideo.c 98 static void GAPI_UpdateRects(_THIS, int numrects, SDL_Rect *rects);
1026 static void GAPI_UpdateRectsMono(_THIS, int numrects, SDL_Rect *rects)
1038 destPointer = (unsigned char*) gapi->videoMem + gapi->startOffset - rects[i].y * gapi->gxProperties.cBPP / 8 + rects[i].x * gapi->dstPixelStep;
1040 destPointer = (unsigned char*) gapi->videoMem + gapi->startOffset + rects[i].x * gapi->gxProperties.cBPP / 8 + rects[i].y * gapi->dstLineStep;
1042 srcPointer = ((unsigned char*) SDL_VideoSurface->pixels) + rects[i].y * SDL_VideoSurface->pitch + rects[i].x * 2;
1043 yNibble = rects[i].y & 1; // TODO: only for 4 bpp
1044 xNibble = rects[i].x & 1
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Path.java 41 public Region rects; field in class:Path
75 if (rects != null) rects.setEmpty();
88 if (rects != null) rects.setEmpty();
369 * Specifies how closed shapes (e.g. rects, ovals) are oriented when they
392 if (rects == null) rects = new Region();
393 rects.op((int) left, (int) top, (int) right, (int) bottom, Region.Op.UNION);

Completed in 376 milliseconds

1 2 3 4 5 6