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

1 2

  /external/chromium_org/third_party/WebKit/Source/web/resources/
pickerCommon.js 112 var windowRect = new Rectangle(0, 0, width, height);
115 return windowRect;
120 _adjustWindowRectVertically(windowRect, availRect, anchorRect, minHeight);
121 _adjustWindowRectHorizontally(windowRect, availRect, anchorRect, minWidth);
123 return windowRect;
126 function _adjustWindowRectVertically(windowRect, availRect, anchorRect, minHeight) {
133 if (windowRect.height > availableSpaceBelow && availableSpaceBelow < availableSpaceAbove) {
134 windowRect.height = Math.min(windowRect.height, availableSpaceAbove);
135 windowRect.height = Math.max(windowRect.height, minHeight)
    [all...]
suggestionPicker.js 162 var windowRect = adjustWindowRect(desiredWindowWidth, desiredWindowHeight, desiredWindowWidth, 0);
163 this._containerElement.style.height = (windowRect.height - ListBorder) + "px";
164 setWindowRect(windowRect);
  /external/chromium_org/third_party/angle/samples/gles2_book/Common/Win32/
esUtil_win32.c 105 RECT windowRect;
121 windowRect.left = 0;
122 windowRect.top = 0;
123 windowRect.right = esContext->width;
124 windowRect.bottom = esContext->height;
126 AdjustWindowRect ( &windowRect, wStyle, FALSE );
134 windowRect.right - windowRect.left,
135 windowRect.bottom - windowRect.top
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
CreateWindow.cpp 92 FloatRect windowRect = page->chrome().windowRect();
96 windowRect.setX(features.x);
98 windowRect.setY(features.y);
100 windowRect.setWidth(features.width + (windowRect.width() - viewportSize.width()));
102 windowRect.setHeight(features.height + (windowRect.height() - viewportSize.height()));
105 FloatRect newWindowRect = DOMWindow::adjustWindowRect(page, windowRect);
Chrome.h 80 FloatRect windowRect() const;
ChromeClient.h 88 virtual FloatRect windowRect() = 0;
Chrome.cpp 114 FloatRect Chrome::windowRect() const
116 return m_client->windowRect();
  /external/chromium_org/third_party/skia/src/utils/win/
SkWGL_win.cpp 149 RECT windowRect;
150 windowRect.left = 0;
151 windowRect.right = 8;
152 windowRect.top = 0;
153 windowRect.bottom = 8;
176 AdjustWindowRectEx(&windowRect, style, false, exStyle);
182 windowRect.right-windowRect.left,
183 windowRect.bottom-windowRect.top
    [all...]
  /external/skia/src/utils/win/
SkWGL_win.cpp 149 RECT windowRect;
150 windowRect.left = 0;
151 windowRect.right = 8;
152 windowRect.top = 0;
153 windowRect.bottom = 8;
176 AdjustWindowRectEx(&windowRect, style, false, exStyle);
182 windowRect.right-windowRect.left,
183 windowRect.bottom-windowRect.top
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebWidgetClient.h 136 virtual WebRect windowRect() { return WebRect(); }
  /external/chromium_org/third_party/angle/src/libEGL/
Surface.cpp 101 RECT windowRect;
102 if (!GetClientRect(getWindowHandle(), &windowRect))
110 width = windowRect.right - windowRect.left;
111 height = windowRect.bottom - windowRect.top;
  /external/chromium_org/third_party/WebKit/Source/platform/
Widget.cpp 103 IntRect Widget::convertFromContainingWindow(const IntRect& windowRect) const
106 IntRect parentRect = parentWidget->convertFromContainingWindow(windowRect);
109 return windowRect;
  /external/chromium_org/third_party/WebKit/Source/web/tests/
PopupContainerTest.cpp 80 const FloatRect windowRect(0, 0, 512, 512);
83 return PopupContainer::layoutAndCalculateWidgetRectInternal(initialRect, targetControlHeight, windowRect, screenRect, !isRTL, rtlOffset, verticalOffset, transformOffset, content, needToResizeView);
86 static IntRect calculatePosition(const IntRect& initialRect, PopupContent* content, FloatRect windowRect = FloatRect(0, 0, 512, 512), bool isRTL = true)
92 return PopupContainer::layoutAndCalculateWidgetRectInternal(initialRect, targetControlHeight, windowRect, screenRect, !isRTL, rtlOffset, 0, IntSize(), content, needToResizeView);
  /external/chromium_org/third_party/WebKit/Source/web/
PopupContainer.cpp 102 IntRect PopupContainer::layoutAndCalculateWidgetRectInternal(IntRect widgetRectInScreen, int targetControlHeight, const FloatRect& windowRect, const FloatRect& screen, bool isRTL, const int rtlOffset, const int verticalOffset, const IntSize& transformOffset, PopupContent* listBox, bool& needToResizeView)
105 if (windowRect.x() >= screen.x() && windowRect.maxX() <= screen.maxX() && (widgetRectInScreen.x() < screen.x() || widgetRectInScreen.maxX() > screen.maxX())) {
199 FloatRect windowRect = chromeClient().windowRect();
202 widgetRectInScreen = layoutAndCalculateWidgetRectInternal(widgetRectInScreen, targetControlHeight, windowRect, screen, isRTL, rtlOffset, verticalOffset, transformOffset, m_listBox.get(), needToResizeView);
PopupContainer.h 115 static IntRect layoutAndCalculateWidgetRectInternal(IntRect widgetRectInScreen, int targetControlHeight, const FloatRect& windowRect, const FloatRect& screen, bool isRTL, const int rtlOffset, const int verticalOffset, const IntSize& transformOffset, PopupContent*, bool& needToResizeView);
ChromeClientImpl.cpp 166 FloatRect ChromeClientImpl::windowRect()
186 return windowRect();
525 WebRect windowRect = m_webView->client()->windowRect();
526 windowPoint.move(-windowRect.x, -windowRect.y);
537 WebRect windowRect = m_webView->client()->windowRect();
538 screenRect.move(windowRect.x, windowRect.y)
    [all...]
WebPluginContainerImpl.cpp 136 IntRect windowRect = view->contentsToWindow(damageRect);
137 m_webPlugin->paint(canvas, windowRect);
403 IntRect windowRect, clipRect;
405 calculateGeometry(frameRect(), windowRect, clipRect, cutOutRects);
407 m_webPlugin->updateGeometry(windowRect, clipRect, cutOutRects, isVisible());
870 IntRect& windowRect,
874 windowRect = toScrollView(parent())->contentsToWindow(frameRect);
878 clipRect.move(-windowRect.x(), -windowRect.y());
WebPluginContainerImpl.h 181 WebCore::IntRect& windowRect,
ChromeClientImpl.h 78 virtual WebCore::FloatRect windowRect();
WebPagePopupImpl.cpp 75 virtual FloatRect windowRect() OVERRIDE
  /external/chromium_org/third_party/WebKit/Source/core/frame/
DOMWindow.cpp 259 FloatRect window = page->chrome().windowRect();
    [all...]
  /external/chromium_org/content/renderer/pepper/
renderer_ppapi_host_impl.cc 213 blink::WebRect window_rect = render_frame->GetRenderWidget()->windowRect();
  /external/chromium_org/third_party/WebKit/Source/core/loader/
EmptyClients.h 77 virtual FloatRect windowRect() OVERRIDE { return FloatRect(); }
  /external/chromium_org/content/renderer/
render_widget.h 144 virtual blink::WebRect windowRect();
499 // size. If JS code sets the WindowRect, and then immediately calls
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollView.cpp 613 IntRect ScrollView::windowToContents(const IntRect& windowRect) const
615 IntRect viewRect = convertFromContainingWindow(windowRect);
    [all...]

Completed in 2924 milliseconds

1 2