Home
last modified time | relevance | path

Searched refs:hitTest (Results 1 – 25 of 73) sorted by relevance

123

/external/chromium/chrome/browser/ui/cocoa/
Dprofile_menu_button_unittest.mm83 EXPECT_NSEQ([button_ hitTest:topRight], button_);
84 EXPECT_NSEQ([button_ hitTest:bottomRight], NULL);
85 EXPECT_NSEQ([button_ hitTest:outsidePoint], NULL);
90 EXPECT_NSEQ([button_ hitTest:topRight], button_);
91 EXPECT_NSEQ([button_ hitTest:bottomRight], NULL);
92 EXPECT_NSEQ([button_ hitTest:outsidePoint], NULL);
Dnew_tab_button.mm36 - (NSView*)hitTest:(NSPoint)aPoint {
38 return [super hitTest:aPoint];
Dprofile_menu_button.mm152 - (NSView*)hitTest:(NSPoint)aPoint {
153 NSView* probe = [super hitTest:aPoint];
347 if (![[self hitTest:point] isEqual:self])
/external/webkit/Source/WebKit/win/
DFullscreenVideoController.cpp622 if (m_playPauseButton.hitTest(convertedPoint)) in onMouseDown()
624 else if (m_exitFullscreenButton.hitTest(convertedPoint)) in onMouseDown()
626 else if (m_volumeUpButton.hitTest(convertedPoint)) in onMouseDown()
628 else if (m_volumeDownButton.hitTest(convertedPoint)) in onMouseDown()
630 else if (m_volumeSlider.hitTest(convertedPoint)) { in onMouseDown()
634 } else if (m_timeSlider.hitTest(convertedPoint)) { in onMouseDown()
671 if (m_hitWidget == &m_playPauseButton && m_playPauseButton.hitTest(convertedPoint)) in onMouseUp()
673 else if (m_hitWidget == &m_volumeUpButton && m_volumeUpButton.hitTest(convertedPoint)) { in onMouseUp()
676 … } else if (m_hitWidget == &m_volumeDownButton && m_volumeDownButton.hitTest(convertedPoint)) { in onMouseUp()
681 …else if (m_hitWidget == &m_exitFullscreenButton && m_exitFullscreenButton.hitTest(convertedPoint))… in onMouseUp()
DFullscreenVideoController.h54 bool hitTest(const WebCore::IntPoint& point) const { return m_rect.contains(point); } in hitTest() function
/external/webkit/Source/WebKit/qt/Api/
Dqwebframe.cpp1684 QWebHitTestResultPrivate::QWebHitTestResultPrivate(const WebCore::HitTestResult &hitTest) in QWebHitTestResultPrivate() argument
1689 if (!hitTest.innerNode()) in QWebHitTestResultPrivate()
1691 pos = hitTest.point(); in QWebHitTestResultPrivate()
1693 title = hitTest.title(dir); in QWebHitTestResultPrivate()
1694 linkText = hitTest.textContent(); in QWebHitTestResultPrivate()
1695 linkUrl = hitTest.absoluteLinkURL(); in QWebHitTestResultPrivate()
1696 linkTitle = hitTest.titleDisplayString(); in QWebHitTestResultPrivate()
1697 alternateText = hitTest.altDisplayString(); in QWebHitTestResultPrivate()
1698 imageUrl = hitTest.absoluteImageURL(); in QWebHitTestResultPrivate()
1699 innerNode = hitTest.innerNode(); in QWebHitTestResultPrivate()
[all …]
Dqwebframe_p.h135 QWebHitTestResultPrivate(const WebCore::HitTestResult &hitTest);
/external/chromium/chrome/browser/ui/cocoa/find_bar/
Dfind_bar_view.mm82 // drawn. We override hitTest to return nil for points in this transparent
84 - (NSView*)hitTest:(NSPoint)point {
85 NSView* hitView = [super hitTest:point];
/external/webkit/Source/WebCore/platform/qt/
DScrollbarThemeQt.h46 virtual ScrollbarPart hitTest(Scrollbar*, const PlatformMouseEvent&);
DScrollbarThemeQt.cpp174 ScrollbarPart ScrollbarThemeQt::hitTest(Scrollbar* scrollbar, const PlatformMouseEvent& evt) in hitTest() function in WebCore::ScrollbarThemeQt
/external/webkit/Source/WebCore/rendering/
DRenderLineBoxList.h67 …bool hitTest(RenderBoxModelObject*, const HitTestRequest&, HitTestResult&, int x, int y, int tx, i…
DInlineBox.cpp195 return renderer()->hitTest(request, result, IntPoint(x, y), tx, ty); in nodeAtPoint()
/external/webkit/Source/WebCore/platform/
DScrollbarThemeComposite.h37 virtual ScrollbarPart hitTest(Scrollbar*, const PlatformMouseEvent&);
DScrollbarTheme.h46 virtual ScrollbarPart hitTest(Scrollbar*, const PlatformMouseEvent&) { return NoPart; } in hitTest() function
DScrollbar.cpp318 ScrollbarPart part = theme()->hitTest(this, evt); in mouseMoved()
364 setPressedPart(theme()->hitTest(this, evt)); in mouseDown()
/external/webkit/Source/WebKit/chromium/src/
DChromeClientImpl.cpp253 HitTestResult hitTest(IntPoint(0, 0)); in focusedNodeChanged() local
255 hitTest.setURLElement(static_cast<Element*>(node)); in focusedNodeChanged()
256 if (hitTest.isLiveLink()) in focusedNodeChanged()
257 focusURL = hitTest.absoluteLinkURL(); in focusedNodeChanged()
DWebAccessibilityObject.cpp382 WebAccessibilityObject WebAccessibilityObject::hitTest(const WebPoint& point) const in hitTest() function in WebKit::WebAccessibilityObject
/external/webkit/Source/WebKit/chromium/public/
DWebAccessibilityObject.h108 WEBKIT_API WebAccessibilityObject hitTest(const WebPoint&) const;
/external/skia/samplecode/
DSampleDraw.cpp119 bool hitTest(SkScalar x, SkScalar y) { in hitTest() function in Draw
281 if ((*iter)->hitTest(x, y)) { in hitTestList()
/external/webkit/Source/WebCore/page/
DEventHandler.cpp578 m_frame->document()->renderView()->layer()->hitTest(request, result); in handleMouseDraggedEvent()
610 m_frame->contentRenderer()->layer()->hitTest(request, result); in eventMayStartDrag()
631 layer->hitTest(request, result); in updateSelectionForMouseDrag()
884 HitTestResult hitTest = hitTestResultAtPoint(m_panScrollStartPos, true); in updateAutoscrollRenderer() local
886 if (Node* nodeAtPoint = hitTest.innerNode()) in updateAutoscrollRenderer()
928 m_frame->contentRenderer()->layer()->hitTest(HitTestRequest(hitType), result); in hitTestResultAtPoint()
945 frame->contentRenderer()->layer()->hitTest(HitTestRequest(hitType), widgetHitTestResult); in hitTestResultAtPoint()
2116 doc->renderView()->layer()->hitTest(request, result); in handleWheelEvent()
2407 renderer->layer()->hitTest(request, result); in hoverTimerFired()
2733 m_frame->contentRenderer()->layer()->hitTest(request, result); in handleDrag()
/external/chromium/chrome/browser/ui/cocoa/toolbar/
Dtoolbar_controller_unittest.mm19 // An NSView that fakes out hitTest:.
31 - (NSView *)hitTest:(NSPoint)aPoint {
/external/webkit/Tools/DumpRenderTree/mac/
DEventSendingController.mm334 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]];
/external/webkit/Source/WebKit2/UIProcess/API/mac/
DPDFViewController.mm288 - (NSView *)hitTest:(NSPoint)point
290 // Override hitTest so we can override menuForEvent.
296 return [super hitTest:point];
/external/webkit/Source/WebKit/gtk/webkit/
Dwebkitwebinspector.cpp555 frame->contentRenderer()->layer()->hitTest(request, result); in webkit_web_inspector_inspect_coordinates()
/external/chromium/chrome/browser/ui/cocoa/tabs/
Dtab_view.mm136 - (NSView*)hitTest:(NSPoint)aPoint {
255 if ([self hitTest:hitLocation] == closeButton_) {
354 if ([self hitTest:hitLocation] == closeButton_) {
639 // |-hitTest:| takes a location in the superview's coordinates.
645 if ([self hitTest:upLocation])

123