/external/chromium/chrome/browser/ui/cocoa/ |
D | profile_menu_button_unittest.mm | 83 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);
|
D | new_tab_button.mm | 36 - (NSView*)hitTest:(NSPoint)aPoint { 38 return [super hitTest:aPoint];
|
D | profile_menu_button.mm | 152 - (NSView*)hitTest:(NSPoint)aPoint { 153 NSView* probe = [super hitTest:aPoint]; 347 if (![[self hitTest:point] isEqual:self])
|
/external/chromium_org/chrome/browser/ui/cocoa/tabs/ |
D | tab_view_unittest.mm | 66 EXPECT_TRUE([view_ hitTest:bottomLeftCorner]); 69 EXPECT_FALSE([view_ hitTest:topLeftCorner]); 72 EXPECT_TRUE([view_ hitTest:middle]);
|
D | tab_view.mm | 141 - (NSView*)hitTest:(NSPoint)aPoint { 202 if ([self hitTest:hitLocation] == closeButton_) { 238 if ([self hitTest:hitLocation] == closeButton_) { 262 // |-hitTest:| takes a location in the superview's coordinates. 268 if ([self hitTest:upLocation])
|
/external/chromium_org/third_party/WebKit/Source/platform/scroll/ |
D | ScrollbarThemeOverlay.cpp | 125 ScrollbarPart ScrollbarThemeOverlay::hitTest(ScrollbarThemeClient* scrollbar, const IntPoint& posit… in hitTest() function in WebCore::ScrollbarThemeOverlay 130 return ScrollbarTheme::hitTest(scrollbar, position); in hitTest()
|
D | Scrollbar.cpp | 351 setPressedPart(theme()->hitTest(this, evt.position())); in gestureEvent() 407 ScrollbarPart part = theme()->hitTest(this, evt.position()); in mouseMoved() 452 ScrollbarPart part = theme()->hitTest(this, mouseEvent.position()); in mouseUp() 464 setPressedPart(theme()->hitTest(this, evt.position())); in mouseDown()
|
D | ScrollbarThemeOverlay.h | 57 virtual ScrollbarPart hitTest(ScrollbarThemeClient*, const IntPoint&) OVERRIDE;
|
D | ScrollbarTheme.h | 49 virtual ScrollbarPart hitTest(ScrollbarThemeClient*, const IntPoint&);
|
/external/chromium_org/chrome/browser/ui/cocoa/ |
D | new_tab_button.mm | 52 - (NSView*)hitTest:(NSPoint)aPoint { 54 return [super hitTest:aPoint];
|
D | nsview_additions.mm | 30 return [self hitTest:mouseLoc] == self;
|
/external/chromium/chrome/browser/ui/cocoa/find_bar/ |
D | find_bar_view.mm | 82 // drawn. We override hitTest to return nil for points in this transparent 84 - (NSView*)hitTest:(NSPoint)point { 85 NSView* hitView = [super hitTest:point];
|
/external/chromium_org/chrome/browser/ui/cocoa/find_bar/ |
D | find_bar_view.mm | 87 // drawn. We override hitTest to return nil for points in this transparent 89 - (NSView*)hitTest:(NSPoint)point { 90 NSView* hitView = [super hitTest:point];
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
D | AutoscrollController.cpp | 119 …HitTestResult hitTest = renderer->frame()->eventHandler().hitTestResultAtPoint(m_panScrollStartPos… in updateAutoscrollRenderer() local 121 if (Node* nodeAtPoint = hitTest.innerNode()) in updateAutoscrollRenderer()
|
D | EventHandler.cpp | 753 m_frame->document()->renderView()->hitTest(request, result); in handleMouseDraggedEvent() 772 renderer->hitTest(request, result); in updateSelectionForMouseDrag() 946 m_frame->contentRenderer()->hitTest(request, result); in hitTestResultAtPoint() 1110 renderView->hitTest(request, result); in updateCursor() 2115 renderView->hitTest(request, result); in isInsideScrollbar() 2160 doc->renderView()->hitTest(request, result); in handleWheelEvent() 2574 document->renderView()->hitTest(request, result); in handleGestureScrollBegin() 3013 renderer->hitTest(request, result); in hoverTimerFired() 3307 m_frame->contentRenderer()->hitTest(request, result); in handleDrag() 3589 frame->contentRenderer()->hitTest(HitTestRequest(hitType), result); in hitTestResultInFrame()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderLineBoxList.h | 67 …bool hitTest(RenderBoxModelObject*, const HitTestRequest&, HitTestResult&, const HitTestLocation& …
|
D | RenderPart.cpp | 129 …bool isInsideChildFrame = childRoot->hitTest(newHitTestRequest, newHitTestLocation, childFrameResu… in nodeAtPoint()
|
D | RenderView.h | 50 bool hitTest(const HitTestRequest&, HitTestResult&); 51 bool hitTest(const HitTestRequest&, const HitTestLocation&, HitTestResult&);
|
D | RenderView.cpp | 82 bool RenderView::hitTest(const HitTestRequest& request, HitTestResult& result) in hitTest() function in WebCore::RenderView 84 return hitTest(request, result.hitTestLocation(), result); in hitTest() 87 bool RenderView::hitTest(const HitTestRequest& request, const HitTestLocation& location, HitTestRes… in hitTest() function in WebCore::RenderView 95 return layer()->hitTest(request, location, result); in hitTest()
|
D | RenderLayer.h | 262 bool hitTest(const HitTestRequest&, HitTestResult&); 263 bool hitTest(const HitTestRequest&, const HitTestLocation&, HitTestResult&);
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowItemizedOverlay.java | 44 …public boolean hitTest(OverlayItem item, android.graphics.drawable.Drawable drawable, int i, int i… in hitTest() method in ShadowItemizedOverlay
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | ChromeClientImpl.cpp | 226 HitTestResult hitTest(IntPoint(0, 0)); in focusedNodeChanged() local 228 hitTest.setURLElement(toElement(node)); in focusedNodeChanged() 229 if (hitTest.isLiveLink()) in focusedNodeChanged() 230 focusURL = hitTest.absoluteLinkURL(); in focusedNodeChanged()
|
/external/chromium_org/third_party/WebKit/public/web/ |
D | WebAXObject.h | 139 BLINK_EXPORT WebAXObject hitTest(const WebPoint&) const;
|
/external/chromium/chrome/browser/ui/cocoa/toolbar/ |
D | toolbar_controller_unittest.mm | 19 // An NSView that fakes out hitTest:. 31 - (NSView *)hitTest:(NSPoint)aPoint {
|
/external/chromium_org/chrome/browser/ui/cocoa/toolbar/ |
D | toolbar_controller_unittest.mm | 23 // An NSView that fakes out hitTest:. 35 - (NSView *)hitTest:(NSPoint)aPoint {
|