HomeSort by relevance Sort by last modified time
    Searched defs:windowRect (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/page/
CreateWindow.cpp 96 FloatRect windowRect = host->chrome().windowRect();
100 windowRect.setX(features.x);
102 windowRect.setY(features.y);
104 windowRect.setWidth(features.width + (windowRect.width() - viewportSize.width()));
106 windowRect.setHeight(features.height + (windowRect.height() - viewportSize.height()));
109 FloatRect newWindowRect = LocalDOMWindow::adjustWindowRect(frame, windowRect);
Chrome.cpp 97 FloatRect Chrome::windowRect() const
99 return m_client->windowRect();
  /external/chromium_org/third_party/WebKit/Source/web/
WebPagePopupImpl.cpp 78 virtual FloatRect windowRect() OVERRIDE
437 WebRect windowRect = m_webView->client()->rootWindowRect();
438 return WebPoint(m_windowRectInScreen.x - windowRect.x, m_windowRectInScreen.y - windowRect.y);
PopupContainer.cpp 105 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)
108 if (windowRect.x() >= screen.x() && windowRect.maxX() <= screen.maxX() && (widgetRectInScreen.x() < screen.x() || widgetRectInScreen.maxX() > screen.maxX())) {
202 FloatRect windowRect = chromeClient().windowRect();
205 widgetRectInScreen = layoutAndCalculateWidgetRectInternal(widgetRectInScreen, targetControlHeight, windowRect, screen, isRTL, rtlOffset, verticalOffset, transformOffset, m_listBox.get(), needToResizeView);
WebPluginContainerImpl.cpp 128 IntRect windowRect = view->contentsToWindow(damageRect);
129 m_webPlugin->paint(canvas, windowRect);
400 IntRect windowRect, clipRect;
402 calculateGeometry(frameRect(), windowRect, clipRect, cutOutRects);
404 m_webPlugin->updateGeometry(windowRect, clipRect, cutOutRects, isVisible());
931 IntRect& windowRect,
935 windowRect = toScrollView(parent())->contentsToWindow(frameRect);
939 clipRect.move(-windowRect.x(), -windowRect.y());
ChromeClientImpl.cpp 165 FloatRect ChromeClientImpl::windowRect()
185 return windowRect();
507 WebRect windowRect = m_webView->client()->windowRect();
508 screenRect.move(windowRect.x, windowRect.y);
  /external/chromium_org/third_party/angle/util/win32/
Win32Window.cpp 509 RECT windowRect;
510 if (!GetWindowRect(mParentWindow, &windowRect))
521 LONG diffX = (windowRect.right - windowRect.left) - clientRect.right;
522 LONG diffY = (windowRect.bottom - windowRect.top) - clientRect.bottom;
523 if (!MoveWindow(mParentWindow, windowRect.left, windowRect.top, width + diffX, height + diffY, FALSE))
  /external/chromium_org/third_party/WebKit/public/web/
WebWidgetClient.h 123 virtual WebRect windowRect() { return WebRect(); }
  /external/chromium_org/third_party/angle/src/libEGL/
Surface.cpp 104 RECT windowRect;
105 if (!GetClientRect(getWindowHandle(), &windowRect))
113 width = windowRect.right - windowRect.left;
114 height = windowRect.bottom - windowRect.top;
  /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/skia/src/utils/win/
SkWGL_win.cpp 173 RECT windowRect;
174 windowRect.left = 0;
175 windowRect.right = 8;
176 windowRect.top = 0;
177 windowRect.bottom = 8;
200 AdjustWindowRectEx(&windowRect, style, false, exStyle);
206 windowRect.right-windowRect.left,
207 windowRect.bottom-windowRect.top
    [all...]
  /external/chromium_org/ui/gl/
gl_surface_egl.cc 296 RECT windowRect;
297 if (GetClientRect(window_, &windowRect))
298 size_ = gfx::Rect(windowRect).size();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
SystemServicesProxy.java 530 Rect windowRect = new Rect();
531 if (mWm == null) return windowRect;
535 windowRect.set(0, 0, p.x, p.y);
536 return windowRect;
  /external/chromium_org/content/renderer/
render_widget.cc     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 

Completed in 314 milliseconds