/external/webkit/Source/WebCore/platform/graphics/ca/win/ |
WKCACFViewLayerTreeHost.cpp | 58 SOFT_LINK(WebKitQuartzCoreAdditions, WKCACFViewInvalidateRects, void, __cdecl, (WKCACFViewRef view, const CGRect rects[], size_t count), (view, rects, count))
|
/external/webkit/Source/WebCore/rendering/svg/ |
RenderSVGImage.cpp | 185 void RenderSVGImage::addFocusRingRects(Vector<IntRect>& rects, int, int) 190 rects.append(contentRect);
|
RenderSVGPath.cpp | 71 , m_needsBoundariesUpdate(false) // default is false, the cached rects are empty from the beginning 245 void RenderSVGPath::addFocusRingRects(Vector<IntRect>& rects, int, int) 249 rects.append(rect);
|
/external/webkit/Source/WebCore/platform/graphics/haiku/ |
GraphicsContextHaiku.cpp | 210 void GraphicsContext::drawFocusRing(const Vector<IntRect>& rects, int /* width */, int /* offset */, const Color& color) 215 unsigned rectCount = rects.size(); 219 if (rects.size() > 1) { 222 region.Include(BRect(rects[i]));
|
/external/webkit/Source/WebCore/platform/graphics/openvg/ |
GraphicsContextOpenVG.cpp | 205 void GraphicsContext::drawFocusRing(const Vector<IntRect>& rects, int width, int offset, const Color& color) 210 if (rects.isEmpty()) 213 // FIXME: We just unite all focus ring rects into one for now. 218 for (unsigned i = 0; i < rects.size(); i++) { 219 IntRect focusRect = rects[i];
|
/external/webkit/Source/WebCore/plugins/symbian/ |
PluginViewSymbian.cpp | 378 QVector<QRect> rects = region->rects(); 379 for (int i = 0; i < rects.size(); ++i) { 380 const QRect& qRect = rects.at(i);
|
/external/webkit/Source/WebKit/android/plugins/ |
PluginWidgetAndroid.h | 131 priority rectangle in location rects[0]. The browser will attempt to keep 138 void setVisibleRects(const ANPRectI rects[], int32_t count);
|
/hardware/libhardware/include/hardware/ |
hwcomposer.h | 135 hwc_rect_t const* rects; member in struct:hwc_region 278 * particular, hwc_region_t::rects data and hwc_layer_t::layer's buffer.
|
/external/webkit/Source/WebCore/platform/graphics/win/ |
GraphicsContextCGWin.cpp | 138 void GraphicsContext::drawFocusRing(const Vector<IntRect>& rects, int width, int offset, const Color& color) 148 unsigned rectCount = rects.size(); 150 CGPathAddRect(focusRingPath, 0, CGRectInset(rects[i], -offset, -offset));
|
/external/qemu/distrib/sdl-1.2.12/src/video/ |
SDL_video.c | 134 void SDL_GL_UpdateRectsLock(SDL_VideoDevice* this, int numrects, SDL_Rect* rects); 1015 void SDL_UpdateRects (SDL_Surface *screen, int numrects, SDL_Rect *rects) 1044 SDL_LowerBlit(SDL_ShadowSurface, &rects[i], 1045 SDL_VideoSurface, &rects[i]); 1051 SDL_LowerBlit(SDL_ShadowSurface, &rects[i], 1052 SDL_VideoSurface, &rects[i]); 1066 rects[i].x += video->offset_x; 1067 rects[i].y += video->offset_y; 1069 video->UpdateRects(this, numrects, rects); 1071 rects[i].x -= video->offset_x [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/directfb/ |
SDL_DirectFB_video.c | 76 static void DirectFB_DirectUpdate(_THIS, int numrects, SDL_Rect *rects); 77 static void DirectFB_WindowedUpdate(_THIS, int numrects, SDL_Rect *rects); 983 static void DirectFB_DirectUpdate(_THIS, int numrects, SDL_Rect *rects) 996 static void DirectFB_WindowedUpdate(_THIS, int numrects, SDL_Rect *rects) 1007 if ( ! rects[i].w ) /* Clipped? */ 1010 x2 = rects[i].x + rects[i].w - 1; 1011 y2 = rects[i].y + rects[i].h - 1; 1015 if (rects[i].x < region.x1 [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/svga/ |
SDL_svgavideo.c | 336 static void SVGA_DirectUpdate(_THIS, int numrects, SDL_Rect *rects); 337 static void SVGA_BankedUpdate(_THIS, int numrects, SDL_Rect *rects); 485 static void SVGA_DirectUpdate(_THIS, int numrects, SDL_Rect *rects) 490 static void SVGA_BankedUpdate(_THIS, int numrects, SDL_Rect *rects) 503 rect = &rects[i];
|
/external/opencv/ |
cvjni.cpp | 407 jobjectArray seqRectsToAndroidRects(JNIEnv* env, CvSeq *rects) {
408 if (rects == 0 || rects->total <= 0) {
425 jobjectArray ary = env->NewObjectArray(rects->total, jcls, 0);
431 for (int i = 0; i < rects->total; i++) {
433 CvRect *rect = (CvRect*)cvGetSeqElem(rects, i);
|
/external/qemu/distrib/sdl-1.2.12/src/video/bwindow/ |
SDL_sysvideo.cc | 343 static void BE_NormalUpdate(_THIS, int numrects, SDL_Rect *rects); 612 static void BE_NormalUpdate(_THIS, int numrects, SDL_Rect *rects) 620 rect.top = rects[i].y; 621 rect.left = rects[i].x; 622 rect.bottom = rect.top+rects[i].h-1; 623 rect.right = rect.left+rects[i].w-1;
|
/external/qemu/distrib/sdl-1.2.12/src/video/aalib/ |
SDL_aavideo.c | 243 static void AA_DirectUpdate(_THIS, int numrects, SDL_Rect *rects); 328 static void AA_DirectUpdate(_THIS, int numrects, SDL_Rect *rects) 338 printf("Update rects : "); 340 rect = &rects[i];
|
/external/webkit/Source/WebKit2/Platform/ |
Region.cpp | 49 Vector<IntRect> Region::rects() const function in class:WebKit::Region 51 Vector<IntRect> rects; local 61 rects.append(IntRect(x, y, width, height)); 65 return rects;
|
Region.h | 44 Vector<WebCore::IntRect> rects() const;
|
/external/webkit/Source/WebKit/android/jni/ |
WebViewCore.cpp | 694 // Add the current inval rects to the PictureSet, and rebuild it. 1687 Vector<IntRect> rects; local [all...] |
/external/webkit/Source/WebKit/android/nav/ |
CachedNode.cpp | 139 // q: need to know when rects are for drawing and hit-testing, but not mouse down calcs? 392 const WTF::Vector<WebCore::IntRect>* rects = &b->mCursorRing; local 393 size_t size = rects->size(); 396 const WebCore::IntRect& rect = (*rects)[i];
|
/external/qemu/distrib/sdl-1.2.12/src/video/vgl/ |
SDL_vglvideo.c | 309 static void VGL_DirectUpdate(_THIS, int numrects, SDL_Rect *rects); 310 static void VGL_BankedUpdate(_THIS, int numrects, SDL_Rect *rects); 436 static void VGL_DirectUpdate(_THIS, int numrects, SDL_Rect *rects) 441 static void VGL_BankedUpdate(_THIS, int numrects, SDL_Rect *rects)
|
/external/webkit/Source/WebCore/platform/graphics/qt/ |
TileQt.cpp | 111 QVector<QRect> dirtyRects = m_dirtyRegion->rects();
|
/external/webkit/Source/WebKit2/UIProcess/API/C/ |
WKPage.cpp | 519 static void computedPagesCallback(const Vector<WebCore::IntRect>& rects, double scaleFactor, WKErrorRef error, void* untypedContext) 522 Vector<WKRect> wkRects(rects.size()); 523 for (size_t i = 0; i < rects.size(); ++i) 524 wkRects[i] = toAPI(rects[i]);
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/ |
Xregion.h | 79 BOX *rects; member in struct:_XRegion
|
/external/qemu/distrib/sdl-1.2.12/src/video/dc/ |
SDL_dcvideo.c | 53 static void DC_UpdateRects(_THIS, int numrects, SDL_Rect *rects); 304 static void DC_UpdateRects(_THIS, int numrects, SDL_Rect *rects)
|
/external/qemu/distrib/sdl-1.2.12/src/video/windib/ |
SDL_dibvideo.c | 477 static void DIB_NormalUpdate(_THIS, int numrects, SDL_Rect *rects); 882 static void DIB_NormalUpdate(_THIS, int numrects, SDL_Rect *rects) 894 BitBlt(hdc, rects[i].x, rects[i].y, rects[i].w, rects[i].h, 895 mdc, rects[i].x, rects[i].y, SRCCOPY); [all...] |