Searched refs:isHover (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/core/tests/coretests/src/android/view/ |
D | ViewGroupGetChildLocalHitRegionTest.java | 102 private void testGetChildLocalHitRegion_topViewIsNotBlockedByBottomView(boolean isHover) { in testGetChildLocalHitRegion_topViewIsNotBlockedByBottomView() argument 114 injectMotionEvent(viewBottom, x, y, isHover); in testGetChildLocalHitRegion_topViewIsNotBlockedByBottomView() 119 .getChildLocalHitRegion(viewTop, actualRegion, actualMatrix, isHover); in testGetChildLocalHitRegion_topViewIsNotBlockedByBottomView() 135 private void injectMotionEvent(View view, boolean isHover) { in injectMotionEvent() argument 138 injectMotionEvent(view, x, y, isHover); in injectMotionEvent() 145 private void injectMotionEvent(View view, float x, float y, boolean isHover) { in injectMotionEvent() argument 152 int action = isHover ? MotionEvent.ACTION_HOVER_ENTER : MotionEvent.ACTION_DOWN; in injectMotionEvent() 171 private void assertGetChildLocalHitRegion(int viewId, boolean isHover) { in assertGetChildLocalHitRegion() argument 178 .getChildLocalHitRegion(view, actualRegion, actualMatrix, isHover); in assertGetChildLocalHitRegion() 209 private void assertGetChildLocalHitRegion(int viewIdTop, int viewIdBottom, boolean isHover) { in assertGetChildLocalHitRegion() argument [all …]
|
/frameworks/base/core/java/android/view/ |
D | HandwritingInitiator.java | 672 private View findBestCandidateView(float x, float y, boolean isHover) { in findBestCandidateView() argument 681 && isInHandwritingArea(handwritingArea, x, y, connectedOrFocusedView, isHover) in findBestCandidateView() 684 if (!isHover && mState != null) { in findBestCandidateView() 700 if (!isInHandwritingArea(handwritingArea, x, y, view, isHover) in findBestCandidateView() 707 if (!isHover && mState != null) { in findBestCandidateView() 804 float x, float y, View view, boolean isHover) { in isInHandwritingArea() argument 828 if (!parent.getChildLocalHitRegion(view, region, matrix, isHover)) { in isInHandwritingArea()
|
D | ViewParent.java | 714 @NonNull Matrix matrix, boolean isHover) { in getChildLocalHitRegion() argument
|
D | ViewGroup.java | 7347 @NonNull Matrix matrix, boolean isHover) { in getChildLocalHitRegion() argument 7367 if (isHover) { in getChildLocalHitRegion() 7434 notEmpty = mParent.getChildLocalHitRegion(this, region, matrix, isHover); in getChildLocalHitRegion()
|
D | ViewRootImpl.java | 2803 @NonNull Matrix matrix, boolean isHover) { in getChildLocalHitRegion() argument
|
/frameworks/base/core/tests/coretests/src/android/view/stylus/ |
D | HandwritingTestUtil.java | 105 boolean isHover) { in mockSpy()
|