Searched defs:screenRect (Results 1 - 13 of 13) sorted by relevance

/external/webkit/WebCore/platform/chromium/
H A DPlatformScreenChromium.cpp54 FloatRect screenRect(Widget* widget) function in namespace:WebCore
56 return ChromiumBridge::screenRect(widget);
/external/webkit/WebCore/platform/android/
H A DScreenAndroid.cpp69 FloatRect screenRect(Widget* page) function in namespace:WebCore
75 // Similar screenRect, this function is commonly used by javascripts
/external/webkit/WebCore/platform/brew/
H A DScreenBrew.cpp64 FloatRect screenRect(Widget*) function in namespace:WebCore
74 return screenRect(widget);
/external/webkit/WebCore/platform/haiku/
H A DScreenHaiku.cpp44 FloatRect screenRect(Widget*) function in namespace:WebCore
55 return screenRect(widget);
/external/webkit/WebCore/platform/qt/
H A DPlatformScreenQt.cpp78 FloatRect screenRect(Widget* w) function in namespace:WebCore
H A DScreenQt.cpp55 FloatRect screenRect(const Page* page) function in namespace:WebCore
/external/webkit/WebCore/platform/win/
H A DPlatformScreenWin.cpp92 FloatRect screenRect(Widget* widget) function in namespace:WebCore
/external/webkit/WebCore/platform/wx/
H A DScreenWx.cpp49 FloatRect screenRect(Widget* widget) function in namespace:WebCore
/external/webkit/WebCore/platform/gtk/
H A DPlatformScreenGtk.cpp95 FloatRect screenRect(Widget* widget) function in namespace:WebCore
130 return screenRect(widget);
149 rect.intersect(screenRect(widget));
151 rect = screenRect(widget);
158 return screenRect(widget);
/external/webkit/WebCore/bindings/v8/custom/
H A DV8DOMWindowCustom.cpp509 FloatRect screenRect = screenAvailableRect(frame->view()); local
513 windowFeatures.width = WindowFeatures::floatFeature(features, "dialogwidth", 100, screenRect.width(), 620);
516 windowFeatures.height = WindowFeatures::floatFeature(features, "dialogheight", 100, screenRect.height(), 450);
519 windowFeatures.x = WindowFeatures::floatFeature(features, "dialogleft", screenRect.x(), screenRect.right() - windowFeatures.width, -1);
521 windowFeatures.y = WindowFeatures::floatFeature(features, "dialogtop", screenRect.y(), screenRect.bottom() - windowFeatures.height, -1);
526 windowFeatures.x = screenRect.x() + (screenRect.width() - windowFeatures.width) / 2;
530 windowFeatures.y = screenRect
643 FloatRect screenRect = screenAvailableRect(page->mainFrame()->view()); local
[all...]
/external/webkit/WebCore/bindings/js/
H A DJSDOMWindowCustom.cpp835 FloatRect screenRect = screenAvailableRect(frame->view()); local
838 wargs.width = WindowFeatures::floatFeature(features, "dialogwidth", 100, screenRect.width(), 620); // default here came from frame size of dialog in MacIE
840 wargs.height = WindowFeatures::floatFeature(features, "dialogheight", 100, screenRect.height(), 450); // default here came from frame size of dialog in MacIE
843 wargs.x = WindowFeatures::floatFeature(features, "dialogleft", screenRect.x(), screenRect.right() - wargs.width, -1);
845 wargs.y = WindowFeatures::floatFeature(features, "dialogtop", screenRect.y(), screenRect.bottom() - wargs.height, -1);
850 wargs.x = screenRect.x() + (screenRect.width() - wargs.width) / 2;
854 wargs.y = screenRect
[all...]
/external/webkit/WebKit/chromium/src/
H A DChromiumBridge.cpp655 IntRect ChromiumBridge::screenRect(Widget* widget) function in class:WebCore::ChromiumBridge
/external/webkit/WebCore/html/
H A DHTMLMediaElement.cpp1782 const IntRect HTMLMediaElement::screenRect() function in class:WebCore::HTMLMediaElement

Completed in 606 milliseconds