Searched refs:nodesFromRect (Results 1 - 16 of 16) sorted by path

/external/webkit/Source/WebCore/dom/
H A DDocument.cpp1096 // * making it receive a rect as parameter, i.e. nodesFromRect(x, y, w, h);
1098 // i.e. nodesFromRect(x, y, topSize, rightSize, bottomSize, leftSize);
1099 PassRefPtr<NodeList> Document::nodesFromRect(int centerX, int centerY, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding, bool ignoreClipping) const function in class:WebCore::Document
1124 // Passing a zero padding will trigger a rect hit test, however for the purposes of nodesFromRect,
H A DDocument.h344 PassRefPtr<NodeList> nodesFromRect(int centerX, int centerY, unsigned topPadding, unsigned rightPadding,
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
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) function in class:DumpRenderTreeSupportGtk
128 RefPtr<NodeList> nodes = document->nodesFromRect(x, y, top, right, bottom, left, ignoreClipping);
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);
/external/webkit/Source/WebKit/mac/WebView/
H A DWebView.mm6358 RefPtr<NodeList> nodes = document->nodesFromRect(x, y, top, right, bottom, left, ignoreClipping);
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebpage.cpp1581 RefPtr<NodeList> intersectedNodes = document->nodesFromRect(x, y, m_topPadding, m_rightPadding, m_bottomPadding, m_leftPadding, false);
1620 // 1) Call nodesFromRect for the inner document in case;
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DDumpRenderTreeSupportQt.cpp944 QVariantList DumpRenderTreeSupportQt::nodesFromRect(const QWebElement& document, int x, int y, unsigned top, unsigned right, unsigned bottom, unsigned left, bool ignoreClipping) function in class:DumpRenderTreeSupportQt
954 RefPtr<NodeList> nodes = doc->nodesFromRect(x, y, top, right, bottom, left, ignoreClipping);
H A DDumpRenderTreeSupportQt.h192 static QVariantList nodesFromRect(const QWebElement& document, int x, int y, unsigned top, unsigned right, unsigned bottom, unsigned left, bool ignoreClipping);
/external/webkit/Tools/DumpRenderTree/
H A DLayoutTestController.cpp711 return controller->nodesFromRect(context, arguments[0], x, y, top, right, bottom, left, ignoreClipping);
2172 { "nodesFromRect", nodesFromRectCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
H A DLayoutTestController.h70 JSValueRef nodesFromRect(JSContextRef, JSValueRef, int x, int y, unsigned top, unsigned right, unsigned bottom, unsigned left, bool 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) function in class:LayoutTestController
129 return DumpRenderTreeSupportGtk::nodesFromRect(context, value, x, y, top, right, bottom, left, ignoreClipping);
/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)
/external/webkit/Tools/DumpRenderTree/qt/
H A DLayoutTestControllerQt.cpp859 QVariantList LayoutTestController::nodesFromRect(const QWebElement& document, int x, int y, unsigned top, unsigned right, unsigned bottom, unsigned left, bool ignoreClipping) function in class:LayoutTestController
861 return DumpRenderTreeSupportQt::nodesFromRect(document, x, y, top, right, bottom, left, ignoreClipping);
H A DLayoutTestControllerQt.h234 QVariantList nodesFromRect(const QWebElement& document, int x, int y, unsigned top, unsigned right, unsigned bottom, unsigned left, bool 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) function in class:LayoutTestController
/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) function in class:LayoutTestController

Completed in 384 milliseconds