Searched refs:ignoreClipping (Results 1 - 20 of 20) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DHitTestRequest.h49 bool ignoreClipping() const { return m_requestType & IgnoreClipping; } function in class:WebCore::HitTestRequest
H A DRenderLayer.cpp2908 if (!request.ignoreClipping())
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DDumpRenderTreeSupportGtk.h57 static JSValueRef nodesFromRect(JSContextRef context, JSValueRef value, int x, int y, unsigned top, unsigned right, unsigned bottom, unsigned left, bool ignoreClipping);
H A DDumpRenderTreeSupportGtk.cpp116 JSValueRef DumpRenderTreeSupportGtk::nodesFromRect(JSContextRef context, JSValueRef value, int x, int y, unsigned top, unsigned right, unsigned bottom, unsigned left, bool ignoreClipping) argument
128 RefPtr<NodeList> nodes = document->nodesFromRect(x, y, top, right, bottom, left, ignoreClipping);
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DDumpRenderTreeSupportQt.h192 static QVariantList nodesFromRect(const QWebElement& document, int x, int y, unsigned top, unsigned right, unsigned bottom, unsigned left, bool ignoreClipping);
H A DDumpRenderTreeSupportQt.cpp944 QVariantList DumpRenderTreeSupportQt::nodesFromRect(const QWebElement& document, int x, int y, unsigned top, unsigned right, unsigned bottom, unsigned left, bool ignoreClipping) argument
954 RefPtr<NodeList> nodes = doc->nodesFromRect(x, y, top, right, bottom, left, ignoreClipping);
/external/webkit/Tools/DumpRenderTree/qt/
H A DLayoutTestControllerQt.h234 QVariantList nodesFromRect(const QWebElement& document, int x, int y, unsigned top, unsigned right, unsigned bottom, unsigned left, bool ignoreClipping);
H A DLayoutTestControllerQt.cpp859 QVariantList LayoutTestController::nodesFromRect(const QWebElement& document, int x, int y, unsigned top, unsigned right, unsigned bottom, unsigned left, bool ignoreClipping) argument
861 return DumpRenderTreeSupportQt::nodesFromRect(document, x, y, top, right, bottom, left, ignoreClipping);
/external/webkit/Tools/DumpRenderTree/wx/
H A DLayoutTestControllerWx.cpp516 JSValueRef LayoutTestController::nodesFromRect(JSContextRef context, JSValueRef value, int x, int y, unsigned top, unsigned right, unsigned bottom, unsigned left, bool ignoreClipping) argument
/external/webkit/Source/WebKit/mac/WebView/
H A DWebViewPrivate.h705 - (JSValueRef)_nodesFromRect:(JSContextRef)context forDocument:(JSValueRef)value x:(int)x y:(int)y top:(unsigned)top right:(unsigned)right bottom:(unsigned)bottom left:(unsigned)left ignoreClipping:(BOOL)ignoreClipping;
H A DWebView.mm6347 - (JSValueRef)_nodesFromRect:(JSContextRef)context forDocument:(JSValueRef)value x:(int)x y:(int)y top:(unsigned)top right:(unsigned)right bottom:(unsigned)bottom left:(unsigned)left ignoreClipping:(BOOL)ignoreClipping
6358 RefPtr<NodeList> nodes = document->nodesFromRect(x, y, top, right, bottom, left, ignoreClipping);
/external/webkit/Source/WebCore/page/
H A DEventHandler.h119 HitTestResult hitTestResultAtPoint(const IntPoint&, bool allowShadowContent, bool ignoreClipping = false,
H A DEventHandler.cpp921 HitTestResult EventHandler::hitTestResultAtPoint(const IntPoint& point, bool allowShadowContent, bool ignoreClipping, HitTestScrollbars testScrollbars, HitTestRequest::HitTestRequestType hitType, const IntSize& padding) argument
926 if (ignoreClipping)
966 result = mainFrame->eventHandler()->hitTestResultAtPoint(mainFramePoint, allowShadowContent, ignoreClipping, testScrollbars, hitType, padding);
/external/webkit/Tools/DumpRenderTree/mac/
H A DLayoutTestControllerMac.mm261 JSValueRef LayoutTestController::nodesFromRect(JSContextRef context, JSValueRef value, int x, int y, unsigned top, unsigned right, unsigned bottom, unsigned left, bool ignoreClipping)
263 return [[mainFrame webView] _nodesFromRect:context forDocument:value x:x y:y top:top right:right bottom:bottom left:left ignoreClipping:ignoreClipping];
/external/webkit/Tools/DumpRenderTree/
H A DLayoutTestController.h70 JSValueRef nodesFromRect(JSContextRef, JSValueRef, int x, int y, unsigned top, unsigned right, unsigned bottom, unsigned left, bool ignoreClipping);
H A DLayoutTestController.cpp707 bool ignoreClipping = JSValueToBoolean(context, arguments[7]); local
711 return controller->nodesFromRect(context, arguments[0], x, y, top, right, bottom, left, ignoreClipping);
/external/webkit/Tools/DumpRenderTree/gtk/
H A DLayoutTestControllerGtk.cpp127 JSValueRef LayoutTestController::nodesFromRect(JSContextRef context, JSValueRef value, int x, int y, unsigned top, unsigned right, unsigned bottom, unsigned left, bool ignoreClipping) argument
129 return DumpRenderTreeSupportGtk::nodesFromRect(context, value, x, y, top, right, bottom, left, ignoreClipping);
/external/webkit/Source/WebCore/dom/
H A DDocument.h341 * @param ignoreClipping whether or not to ignore the root scroll frame when retrieving the element.
345 unsigned bottomPadding, unsigned leftPadding, bool ignoreClipping) const;
H A DDocument.cpp1102 PassRefPtr<NodeList> Document::nodesFromRect(int centerX, int centerY, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding, bool ignoreClipping) const
1119 // When ignoreClipping is false, this method returns null for coordinates outside of the viewport.
1120 if (ignoreClipping)
/external/webkit/Tools/DumpRenderTree/win/
H A DLayoutTestControllerWin.cpp182 JSValueRef LayoutTestController::nodesFromRect(JSContextRef context, JSValueRef value, int x, int y, unsigned top, unsigned right, unsigned bottom, unsigned left, bool ignoreClipping) argument

Completed in 466 milliseconds