/external/chromium/chrome/browser/ui/cocoa/content_settings/ |
D | content_setting_bubble_cocoa.mm | 159 NSRect windowFrame = [[self window] frame]; 160 windowFrame.size.height += deltaY; 161 [[self window] setFrame:windowFrame display:NO]; 192 NSRect windowFrame = [[self window] frame]; 193 windowFrame.size.height += radioDeltaY; 194 [[self window] setFrame:windowFrame display:NO]; 275 NSRect windowFrame = [[self window] frame]; 276 windowFrame.size.height += deltaSize.height; 277 [[self window] setFrame:windowFrame display:NO]; 342 NSRect windowFrame = [[self window] frame]; [all …]
|
/external/chromium/chrome/browser/ui/cocoa/ |
D | first_run_dialog.mm | 220 NSRect windowFrame = [contentView convertRect:[win frame] fromView:nil]; 221 windowFrame.size.width += largestWidthChange; 222 windowFrame = [contentView convertRect:windowFrame toView:nil]; 223 [win setFrame:windowFrame display:NO]; 270 NSRect windowFrame = [contentView convertRect:[win frame] fromView:nil]; 271 windowFrame.size.height -= moveDown; 272 windowFrame = [contentView convertRect:windowFrame toView:nil]; 273 [win setFrame:windowFrame display:NO];
|
D | page_info_bubble_controller.mm | 278 NSRect windowFrame = NSMakeRect(0, 0, kWindowWidth, offset); 279 windowFrame.size = [[[self window] contentView] convertSize:windowFrame.size 282 windowFrame.origin = [[self window] frame].origin; 283 windowFrame.origin.y -= NSHeight(windowFrame) - 288 [[self window] setFrame:windowFrame 297 [self anchorPointForWindowWithHeight:NSHeight(windowFrame)
|
D | search_engine_dialog_controller.mm | 181 NSRect windowFrame = [[self window] frame]; 182 windowFrame.size.width += windowDeltaSize.width; 183 windowFrame.size.height += windowDeltaSize.height; 184 [[self window] setFrame:windowFrame display:NO];
|
D | browser_window_controller.mm | 769 NSRect windowFrame = [window frame]; 774 if (!NSContainsRect(workarea, windowFrame)) 779 CGFloat oldWindowMaxY = NSMaxY(windowFrame); 780 CGFloat oldWindowMinY = NSMinY(windowFrame); 783 bool isZoomed = (windowFrame.origin.y == workarea.origin.y && 784 windowFrame.size.height == workarea.size.height); 799 windowFrame.size.height -= shrinkAtTopBy; // Shrink the window. 810 windowFrame.origin.y += shrinkAtBottomBy; // Move the window up. 811 windowFrame.size.height -= shrinkAtBottomBy; // Shrink the window. 838 windowFrame.origin.y -= deltaH; [all …]
|
D | browser_window_controller_private.mm | 198 NSRect windowFrame = [contentView convertRect:[window frame] fromView:nil]; 199 startMaxY = maxY = NSHeight(windowFrame) + yOffset;
|
/external/webkit/Source/WebKit/mac/WebView/ |
D | WebTextCompletionController.mm | 130 NSRect windowFrame; 132 …windowFrame.origin = [[_view window] convertBaseToScreen:[_htmlView convertPoint:wordStart toView:… 133 …windowFrame.size.height = numberToShow * [_tableView rowHeight] + (numberToShow + 1) * [_tableView… 134 windowFrame.origin.y -= windowFrame.size.height; 146 windowFrame.size.width = 100; 151 windowFrame.size.width = max(maxWidth, windowFrame.size.width); 152 maxWidth = min<CGFloat>(400, windowFrame.size.width); 154 [_popupWindow setFrame:windowFrame display:NO];
|
D | WebFullScreenController.mm | 389 NSRect windowFrame = NSUnionRect(screenFrame, elementFrame); 390 [[self window] setFrame:windowFrame display:YES]; 404 backgroundBounds.origin.y = windowFrame.size.height - NSMaxY(backgroundBounds);
|
/external/webkit/Source/WebKit/mac/Misc/ |
D | WebNSControlExtras.m | 46 NSRect windowFrame = [window frame]; 55 windowFrame.size.height += heightDelta * userSpaceScaleFactor; 56 [window setFrame:windowFrame display:NO];
|
/external/webkit/Tools/WebKitTestRunner/ |
D | PlatformWebView.h | 63 WKRect windowFrame();
|
D | TestController.cpp | 83 return view->windowFrame(); in getWindowFrameMainPage() 95 return view->windowFrame(); in getWindowFrameOtherPage()
|
/external/webkit/Tools/WebKitTestRunner/qt/ |
D | PlatformWebViewQt.cpp | 85 WKRect PlatformWebView::windowFrame() in windowFrame() function in WTR::PlatformWebView
|
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
D | bookmark_bar_folder_controller.mm | 52 NSRect windowFrame; 282 NSRect windowFrame = [[self window] frame]; 284 padding_ = NSWidth(windowFrame) - NSWidth(scrollViewFrame); 305 NSRect windowFrame = [window frame]; 306 windowFrame.origin.x -= offset.width; 307 windowFrame.origin.y += offset.height; // Yes, in the opposite direction! 308 [window setFrame:windowFrame display:YES]; 551 metrics.windowFrame = [window frame]; 568 metrics.oldWindowY = NSMinY(metrics.windowFrame); 598 metrics.windowFrame.origin.y += metrics.deltaWindowY; [all …]
|
D | bookmark_bar_folder_controller_unittest.mm | 1185 NSRect windowFrame = [folderWindow frame]; 1186 CGFloat windowHeight = NSHeight(windowFrame);
|
/external/webkit/Tools/WebKitTestRunner/win/ |
D | PlatformWebViewWin.cpp | 83 WKRect PlatformWebView::windowFrame() in windowFrame() function in WTR::PlatformWebView
|
/external/webkit/Source/WebKit2/UIProcess/ |
D | WebUIClient.h | 84 WebCore::FloatRect windowFrame(WebPageProxy*);
|
D | WebPageProxy.messages.in | 50 SetWindowFrame(WebCore::FloatRect windowFrame) 51 GetWindowFrame() -> (WebCore::FloatRect windowFrame)
|
D | WebUIClient.cpp | 242 FloatRect WebUIClient::windowFrame(WebPageProxy* page) in windowFrame() function in WebKit::WebUIClient
|
D | WebPageProxy.cpp | 2006 newWindowFrame = m_pageClient->convertToUserSpace(m_uiClient.windowFrame(this)); in getWindowFrame()
|
/external/webkit/Source/WebKit/mac/Panels/ |
D | WebAuthenticationPanel.m | 190 NSRect windowFrame = [panel frame]; 191 windowFrame.size.height -= deltaMargin; 192 [panel setFrame:windowFrame display:NO];
|
/external/webkit/Tools/WebKitTestRunner/mac/ |
D | PlatformWebViewMac.mm | 66 WKRect PlatformWebView::windowFrame()
|
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/ |
D | WebChromeClient.cpp | 97 void WebChromeClient::setWindowRect(const FloatRect& windowFrame) in setWindowRect() argument 99 m_page->send(Messages::WebPageProxy::SetWindowFrame(windowFrame)); in setWindowRect()
|
/external/webkit/Source/WebKit2/UIProcess/mac/ |
D | WKFullScreenWindowController.mm | 193 NSRect windowFrame = NSUnionRect(screenFrame, webViewFrame); 194 [[self window] setFrame:windowFrame display:YES];
|
/external/chromium/chrome/browser/ui/cocoa/tabs/ |
D | tab_view.mm | 430 NSRect windowFrame = [[target window] frame]; 431 if (NSPointInRect(thisPoint, windowFrame)) {
|
/external/webkit/Source/WebKit/mac/ |
D | ChangeLog-2007-10-14 | 23775 - move setWindowFrame / windowFrame to WebPageBridge to fix build 23780 (-[WebPageBridge windowFrame]): 24370 (-[WebFrameBridge windowFrame]):
|