HomeSort by relevance Sort by last modified time
    Searched refs:screenRect (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/
PlatformScreen.h 43 PLATFORM_EXPORT FloatRect screenRect(Widget*);
PlatformScreen.cpp 75 FloatRect screenRect(Widget* widget)
  /external/chromium_org/third_party/webrtc/modules/video_render/mac/
cocoa_render_view.mm 40 NSRect screenRect = [[NSScreen mainScreen]frame];
41 // [_windowRef setFrame:screenRect];
42 // [_windowRef setBounds:screenRect];
43 self = [super initWithFrame:screenRect pixelFormat:fmt];
cocoa_full_screen_window.mm 46 NSRect screenRect = [[NSScreen mainScreen]frame];
48 _window = [[NSWindow alloc]initWithContentRect:screenRect
video_render_nsopengl.mm 608 NSRect screenRect = [[NSScreen mainScreen]frame];
609 [_windowRef setFrame:screenRect];
610 [_windowRef setBounds:screenRect];
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
ResourceLoadPriorityOptimizer.cpp 111 void ResourceLoadPriorityOptimizer::notifyImageResourceVisibility(ImageResource* img, VisibilityStatus status, const LayoutRect& screenRect)
117 if (!screenRect.isEmpty() && status == Visible)
118 screenArea += static_cast<uint32_t>(screenRect.width() * screenRect.height());
  /external/chromium_org/third_party/WebKit/Source/core/frame/
Screen.cpp 54 return lroundf(screenRect(m_frame->view()).height() * host->deviceScaleFactor());
55 return static_cast<unsigned>(screenRect(m_frame->view()).height());
64 return lroundf(screenRect(m_frame->view()).width() * host->deviceScaleFactor());
65 return static_cast<unsigned>(screenRect(m_frame->view()).width());
  /cts/tests/uiautomator/src/com/android/cts/uiautomatortest/
CtsUiAutomatorTest.java 804 Rect screenRect = screen.getBounds();
827 assertTrue("Pinch must be in center of target view", p2s.y == screenRect.centerY())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
PopupContainerTest.cpp 79 const FloatRect screenRect(0, 0, screenMaxX, screenMaxY);
83 return PopupContainer::layoutAndCalculateWidgetRectInternal(initialRect, targetControlHeight, windowRect, screenRect, !isRTL, rtlOffset, verticalOffset, transformOffset, content, needToResizeView);
89 const FloatRect screenRect(0, 0, screenMaxX, screenMaxY);
92 return PopupContainer::layoutAndCalculateWidgetRectInternal(initialRect, targetControlHeight, windowRect, screenRect, !isRTL, rtlOffset, 0, IntSize(), content, needToResizeView);
ChromeClientImpl.cpp 504 IntRect screenRect(rect);
508 screenRect.move(windowRect.x, windowRect.y);
511 return screenRect;
  /external/chromium_org/ui/file_manager/gallery/js/image_editor/
viewport.js 542 * @param {Rect} screenRect Screen rectangle.
545 Viewport.prototype.getScreenRectTransformForImage = function(screenRect) {
547 var scaleX = screenRect.width / imageBounds.width;
548 var scaleY = screenRect.height / imageBounds.height;
551 var dx = screenRect.left + screenRect.width / 2 - screenWidth / 2;
552 var dy = screenRect.top + screenRect.height / 2 - screenHeight / 2;
image_view.js 576 * @param {Rect} screenRect Target rectangle in screen coordinates.
579 ImageView.prototype.createZoomEffect = function(screenRect) {
581 screenRect,
799 * @param {Rect} screenRect Rectangle in the application window's coordinate.
804 ImageView.Effect.ZoomToScreen = function(screenRect, opt_duration) {
806 this.screenRect_ = screenRect;
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaValues.cpp 51 int deviceWidth = static_cast<int>(screenRect(frame->view()).width());
60 int deviceHeight = static_cast<int>(screenRect(frame->view()).height());
  /external/chromium_org/chrome/browser/resources/inspect/
inspect.js 478 var screenRect = document.createElement('div');
479 screenRect.className = 'screen-rect';
480 screenRect.style.left = screenRectWidth + 'px';
481 screenRect.style.top = (thumbnailHeight - screenRectHeight) / 2 + 'px';
482 screenRect.style.width = screenRectWidth + 'px';
483 screenRect.style.height = screenRectHeight + 'px';
484 thumbnail.appendChild(screenRect);
498 screenRect.appendChild(viewRect);
  /external/chromium_org/third_party/WebKit/Source/modules/screen_orientation/
ScreenOrientationController.cpp 59 FloatRect rect = screenRect(view);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Element.h 196 IntRect screenRect() const;
    [all...]
Element.cpp 847 IntRect Element::screenRect() const
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebViewTest.cpp     [all...]

Completed in 2892 milliseconds