/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/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/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/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);
|
SDL_ph_image.c | 959 void ph_OpenGLUpdate(_THIS, int numrects, SDL_Rect* rects) 967 void ph_NormalUpdate(_THIS, int numrects, SDL_Rect *rects) 975 if (rects[i].w==0) /* Clipped? dunno why but this occurs sometime. */ 980 if (rects[i].h==0) /* Clipped? dunno why but this occurs sometime. */ 985 ph_pos.x = rects[i].x; 986 ph_pos.y = rects[i].y; 987 ph_rect.ul.x = rects[i].x; 988 ph_rect.ul.y = rects[i].y; 989 ph_rect.lr.x = rects[i].x + rects[i].w [all...] |
/external/skia/tests/ |
RegionTest.cpp | 41 const SkIRect rects[] = { local 47 REPORTER_ASSERT(reporter, test_rects(rects, SK_ARRAY_COUNT(rects)));
|
/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/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_dos.h | 35 vrect_t *rects);
73 vrect_t *rects);
|
/external/skia/src/core/ |
SkRegion_rects.cpp | 190 // fillout edge[] from rects[], sorted. Return the head, and set the tail 192 static VEdge* sort_edges(VEdge** edgePtr, VEdge edge[], const SkIRect rects[], 197 if (!rects[i].isEmpty()) { 198 VEdge::SetFromRect(edge, rects[i]); 206 // all the rects[] were empty 219 bool SkRegion::setRects(const SkIRect rects[], int rectCount) { 224 return this->setRect(rects[0]); 231 head = sort_edges(edgePtr, head, rects, rectCount, &tail); 239 // empty rects[]). rectCount now is just used for worst-case allocations
|
/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/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/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/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...] |
/external/qemu/distrib/sdl-1.2.12/src/video/nanox/ |
SDL_nximage.c | 31 void NX_NormalUpdate (_THIS, int numrects, SDL_Rect * rects) 44 x = rects [i].x, y = rects [i].y ; 45 w = rects [i].w, h = rects [i].h ;
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
InternalSelectionFocus.java | 33 * that report interesting rects when giving up focus, and use interesting rects
|
/external/skia/gpu/include/ |
GrClipIterator.h | 25 * A clip is a list of paths and/or rects with set operations to combine them. 32 * Returns true if there are no more rects to process
|
/external/webkit/Source/WebKit2/Shared/ |
UpdateInfo.h | 56 // The bounds of the update rects. 59 // All the update rects, in view coordinates.
|
/frameworks/base/core/tests/coretests/src/android/widget/focus/ |
AdjacentVerticalRectLists.java | 35 * that report interesting rects when giving up focus, and use interesting rects
|
/frameworks/base/libs/hwui/ |
ShapeCache.cpp | 25 // Rounded rects 96 // Rects
|