Searched refs:currentRect (Results 1 – 6 of 6) sorted by relevance
/external/chromium/chrome/browser/ui/cocoa/extensions/ |
D | extension_install_dialog_controller.mm | 30 NSRect currentRect = [control frame]; 31 NSRect fitRect = currentRect; 34 CGFloat offset = desiredHeight - currentRect.size.height; 36 [control setFrameSize:NSMakeSize(currentRect.size.width, 37 currentRect.size.height + offset)]; 174 NSRect currentRect = [[self window] frame]; 175 [[self window] setFrame:NSMakeRect(currentRect.origin.x, 176 currentRect.origin.y - totalOffset, 177 currentRect.size.width, 178 currentRect.size.height + totalOffset)
|
/external/chromium_org/chrome/browser/ui/cocoa/extensions/ |
D | extension_install_view_controller.mm | 100 NSRect currentRect = [control frame]; 101 NSRect fitRect = currentRect; 104 CGFloat offset = desiredHeight - NSHeight(currentRect); 106 [control setFrameSize:NSMakeSize(NSWidth(currentRect), 107 NSHeight(currentRect) + offset)]; 338 NSRect currentRect = [[self view] bounds]; 339 currentRect.size.height += totalOffset; 340 [self updateViewFrame:currentRect]; 378 NSRect currentRect = [[self view] bounds]; 379 currentRect.size.height += totalOffset; [all …]
|
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA1/ |
D | SDL_epocvideo.cpp | 881 const SDL_Rect& currentRect = rects[i]; in DirectDraw() local 883 rect2.x = currentRect.x; in DirectDraw() 884 rect2.y = currentRect.y; in DirectDraw() 885 rect2.w = currentRect.w; in DirectDraw() 886 rect2.h = currentRect.h; in DirectDraw() 1170 const SDL_Rect& currentRect = rects[i]; in DirectDrawRotated() local 1171 rect2.x = currentRect.x; in DirectDrawRotated() 1172 rect2.y = currentRect.y; in DirectDrawRotated() 1173 rect2.w = currentRect.w; in DirectDrawRotated() 1174 rect2.h = currentRect.h; in DirectDrawRotated()
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
D | SpatialNavigation.cpp | 629 LayoutRect currentRect = current.rect; in distanceDataForNode() local 630 deflateIfOverlapped(currentRect, nodeRect); in distanceDataForNode() 632 if (!isRectInDirection(direction, currentRect, nodeRect)) in distanceDataForNode() 639 entryAndExitPointsForDirection(direction, currentRect, nodeRect, exitPoint, entryPoint); in distanceDataForNode() 674 candidate.alignment = alignmentForRects(direction, currentRect, nodeRect, viewSize); in distanceDataForNode()
|
/external/chromium/chrome/browser/renderer_host/ |
D | render_widget_host_view_win.cc | 1526 RECT currentRect; in GetCompositingSurface() local 1527 GetClientRect(¤tRect); in GetCompositingSurface() 1528 int width = currentRect.right - currentRect.left; in GetCompositingSurface() 1529 int height = currentRect.bottom - currentRect.top; in GetCompositingSurface()
|
/external/chromium_org/content/browser/renderer_host/ |
D | render_widget_host_view_win.cc | 2550 RECT currentRect; in GetCompositingSurface() local 2551 GetClientRect(¤tRect); in GetCompositingSurface() 2556 static_cast<int>(currentRect.right - currentRect.left)); in GetCompositingSurface() 2558 static_cast<int>(currentRect.bottom - currentRect.top)); in GetCompositingSurface()
|