/external/chromium_org/third_party/WebKit/Source/core/frame/ |
Screen.cpp | 55 return lroundf(screenRect(m_frame->view()).height() * page->deviceScaleFactor()); 56 return static_cast<unsigned>(screenRect(m_frame->view()).height()); 65 return lroundf(screenRect(m_frame->view()).width() * page->deviceScaleFactor()); 66 return static_cast<unsigned>(screenRect(m_frame->view()).width());
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
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);
|
WebViewTest.cpp | [all...] |
/external/chromium_org/third_party/WebKit/public/web/ |
WebDevToolsAgentClient.h | 93 // x-coordinate of |screenRect| defines the left and right gutters' width, 98 const WebRect& screenRect, const WebRect& viewRect,
|
/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/platform/ |
PlatformScreen.h | 46 PLATFORM_EXPORT FloatRect screenRect(Widget*);
|
PlatformScreen.cpp | 75 FloatRect screenRect(Widget* widget)
|
/external/chromium/chrome/browser/ui/cocoa/ |
status_bubble_mac.mm | 661 NSRect screenRect; 663 screenRect = [delegate_ statusBubbleBaseFrame]; 664 screenRect.origin = [parent_ convertBaseToScreen:screenRect.origin]; 666 screenRect = [parent_ frame]; 673 size.width = screenRect.size.width; 675 size.width = kWindowWidthPercent * screenRect.size.width; 678 screenRect.size = size; 679 return screenRect;
|
/external/chromium_org/chrome/browser/ui/cocoa/ |
status_bubble_mac.mm | 704 NSRect screenRect; 706 screenRect = [delegate_ statusBubbleBaseFrame]; 707 screenRect.origin = [parent_ convertBaseToScreen:screenRect.origin]; 709 screenRect = [parent_ frame]; 716 size.width = screenRect.size.width; 718 size.width = kWindowWidthPercent * screenRect.size.width; 721 screenRect.size = size; 722 return screenRect;
|
fullscreen_mode_controller.mm | 130 NSRect screenRect = [[[controller_ window] screen] frame]; 131 if (mousePoint.y >= NSMaxY(screenRect) - kTrackingAreaMaxYEpsilon)
|
/external/chromium_org/chrome/browser/resources/inspect/ |
inspect.js | 430 var screenRect = document.createElement('div'); 431 screenRect.className = 'screen-rect'; 432 screenRect.style.left = screenRectWidth + 'px'; 433 screenRect.style.top = (thumbnailHeight - screenRectHeight) / 2 + 'px'; 434 screenRect.style.width = screenRectWidth + 'px'; 435 screenRect.style.height = screenRectHeight + 'px'; 436 thumbnail.appendChild(screenRect); 450 screenRect.appendChild(viewRect);
|
/external/chromium_org/third_party/WebKit/Source/web/ |
ChromeClientImpl.cpp | 534 IntRect screenRect(rect); 538 screenRect.move(windowRect.x, windowRect.y); 541 return screenRect; 691 IntRect screenRect = bounds; 692 screenRect.setLocation(view->screenToContents(bounds.location())); 693 if (!visibleRect.contains(screenRect)) { [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/ |
NativeImageSkia.cpp | 229 SkRect screenRect; 230 context->getTotalMatrix().mapRect(&screenRect, destRect); 231 float realScaleX = screenRect.width() / srcRect.width(); 232 float realScaleY = screenRect.height() / srcRect.height();
|
/external/libvpx/libvpx/examples/includes/geshi/geshi/ |
sdlbasic.php | 72 'screenrect', 'xscreenrect', 'yscreenrect', 'wscreenrect', 'hscreenrect',
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
MediaQueryEvaluator.cpp | 261 FloatRect sg = screenRect(frame->view()); 366 int height = static_cast<int>(screenRect(frame->view()).height()); 382 int width = static_cast<int>(screenRect(frame->view()).width());
|
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/image_editor/ |
image_view.js | 689 * @param {Rect} screenRect Target rectangle in screen coordinates. 692 ImageView.prototype.createZoomEffect = function(screenRect) { 694 this.viewport_.screenToDeviceRect(screenRect), [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
Element.h | 196 IntRect screenRect() const; [all...] |
Element.cpp | 861 IntRect Element::screenRect() const [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/ |
dsa.cpp | 314 if(rect != ScreenRect())
|