HomeSort by relevance Sort by last modified time
    Searched refs:hitTest (Results 1 - 25 of 50) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/qt/
ScrollbarThemeQt.h 46 virtual ScrollbarPart hitTest(Scrollbar*, const PlatformMouseEvent&);
ScrollbarThemeQt.cpp 174 ScrollbarPart ScrollbarThemeQt::hitTest(Scrollbar* scrollbar, const PlatformMouseEvent& evt)
  /external/webkit/Source/WebCore/rendering/
RenderLineBoxList.h 67 bool hitTest(RenderBoxModelObject*, const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction) const;
InlineBox.cpp 195 return renderer()->hitTest(request, result, IntPoint(x, y), tx, ty);
RenderLineBoxList.cpp 277 bool RenderLineBoxList::hitTest(RenderBoxModelObject* renderer, const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, HitTestAction hitTestAction) const
  /external/webkit/Source/WebKit/android/jni/
AndroidHitTestResult.cpp 197 // Some helper macros specific to setting hitTest fields
198 #define _SET(jtype, jfield, value) env->Set ## jtype ## Field(hitTest, gHitTestGlue.m_ ## jfield, value)
200 #define SET_STRING(jfield, value) setStringField(env, hitTest, gHitTestGlue.m_ ## jfield, value)
209 jobject hitTest = env->NewObject(hitTestClass, gHitTestGlue.m_Init);
210 setRectArray(env, hitTest, gHitTestGlue.m_TouchRects, m_highlightRects);
213 setRectArray(env, hitTest, gHitTestGlue.m_EnclosingParentRects, rects);
239 return hitTest;
  /external/webkit/Source/WebCore/platform/
ScrollbarTheme.h 46 virtual ScrollbarPart hitTest(Scrollbar*, const PlatformMouseEvent&) { return NoPart; }
ScrollbarThemeComposite.h 37 virtual ScrollbarPart hitTest(Scrollbar*, const PlatformMouseEvent&);
Scrollbar.cpp 318 ScrollbarPart part = theme()->hitTest(this, evt);
364 setPressedPart(theme()->hitTest(this, evt));
ScrollbarThemeComposite.cpp 162 ScrollbarPart ScrollbarThemeComposite::hitTest(Scrollbar* scrollbar, const PlatformMouseEvent& evt)
  /external/webkit/Source/WebKit/win/
FullscreenVideoController.cpp 622 if (m_playPauseButton.hitTest(convertedPoint))
624 else if (m_exitFullscreenButton.hitTest(convertedPoint))
626 else if (m_volumeUpButton.hitTest(convertedPoint))
628 else if (m_volumeDownButton.hitTest(convertedPoint))
630 else if (m_volumeSlider.hitTest(convertedPoint)) {
634 } else if (m_timeSlider.hitTest(convertedPoint)) {
671 if (m_hitWidget == &m_playPauseButton && m_playPauseButton.hitTest(convertedPoint))
673 else if (m_hitWidget == &m_volumeUpButton && m_volumeUpButton.hitTest(convertedPoint)) {
676 } else if (m_hitWidget == &m_volumeDownButton && m_volumeDownButton.hitTest(convertedPoint)) {
681 else if (m_hitWidget == &m_exitFullscreenButton && m_exitFullscreenButton.hitTest(convertedPoint))
    [all...]
FullscreenVideoController.h 54 bool hitTest(const WebCore::IntPoint& point) const { return m_rect.contains(point); }
  /external/webkit/Source/WebKit/qt/Api/
qwebframe.cpp     [all...]
qwebframe_p.h 135 QWebHitTestResultPrivate(const WebCore::HitTestResult &hitTest);
  /external/webkit/Source/WebKit/chromium/public/
WebAccessibilityObject.h 108 WEBKIT_API WebAccessibilityObject hitTest(const WebPoint&) const;
  /external/webkit/Source/WebKit/chromium/src/
ChromeClientImpl.cpp 253 HitTestResult hitTest(IntPoint(0, 0));
255 hitTest.setURLElement(static_cast<Element*>(node));
256 if (hitTest.isLiveLink())
257 focusURL = hitTest.absoluteLinkURL();
WebAccessibilityObject.cpp 382 WebAccessibilityObject WebAccessibilityObject::hitTest(const WebPoint& point) const
  /external/skia/samplecode/
SampleDraw.cpp 126 bool hitTest(SkScalar x, SkScalar y) {
288 if ((*iter)->hitTest(x, y)) {
  /external/webkit/Source/WebKit/mac/WebView/
WebViewEventHandling.mm 164 for (NSView *hitView = [contentView hitTest:locationForHitTest]; hitView; hitView = [hitView superview]) {
  /external/webkit/Tools/DumpRenderTree/mac/
EventSendingController.mm 334 NSView *subView = [[mainFrame webView] hitTest:[event locationInWindow]];
399 NSView *targetView = [[mainFrame webView] hitTest:[event locationInWindow]];
457 NSView *subView = [[mainFrame webView] hitTest:[event locationInWindow]];
489 NSView *subView = [[mainFrame webView] hitTest:[scrollEvent locationInWindow]];
520 NSView *subView = [[mainFrame webView] hitTest:[event locationInWindow]];
    [all...]
  /frameworks/base/core/java/android/webkit/
ViewManager.java 282 ChildView hitTest(int contentX, int contentY) {
  /external/webkit/Source/WebCore/page/mac/
EventHandlerMac.mm 226 NSView *view = [nodeView hitTest:[[nodeView superview] convertPoint:[currentNSEvent() locationInWindow] fromView:nil]];
470 NSView *view = [nodeView hitTest:[[nodeView superview] convertPoint:[currentNSEvent() locationInWindow] fromView:nil]];
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebinspector.cpp 555 frame->contentRenderer()->layer()->hitTest(request, result);
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
PDFViewController.mm 288 - (NSView *)hitTest:(NSPoint)point
290 // Override hitTest so we can override menuForEvent.
296 return [super hitTest:point];
  /external/webkit/Source/WebCore/page/
EventHandler.cpp 578 m_frame->document()->renderView()->layer()->hitTest(request, result);
610 m_frame->contentRenderer()->layer()->hitTest(request, result);
631 layer->hitTest(request, result);
884 HitTestResult hitTest = hitTestResultAtPoint(m_panScrollStartPos, true);
886 if (Node* nodeAtPoint = hitTest.innerNode())
928 m_frame->contentRenderer()->layer()->hitTest(HitTestRequest(hitType), result);
945 frame->contentRenderer()->layer()->hitTest(HitTestRequest(hitType), widgetHitTestResult);
    [all...]

Completed in 280 milliseconds

1 2