Lines Matching refs:child
374 final View child = mContentView.getChildAt(i); in adjustGap() local
375 adjustViewGap(child, i); in adjustGap()
420 View child = mContentView.getChildAt(i); in findViewAt() local
421 if (child.getVisibility() == View.VISIBLE) { in findViewAt()
422 if ((x >= child.getLeft()) && (x < child.getRight()) in findViewAt()
423 && (y >= child.getTop()) && (y < child.getBottom())) { in findViewAt()
424 return child; in findViewAt()
490 View child = mContentView.getChildAt((mPullValue < 0) in onPull() local
493 if (child == null) break; in onPull()
494 ObjectAnimator trans = ObjectAnimator.ofFloat(child, in onPull()
498 ObjectAnimator rot = ObjectAnimator.ofFloat(child, in onPull()
518 View child = mContentView.getChildAt((mPullValue < 0) in onPull() local
521 if (child == null) break; in onPull()
528 child.setTranslationX(y); in onPull()
530 child.setTranslationY(y); in onPull()
533 child.setRotationY(-rot); in onPull()
535 child.setRotationX(rot); in onPull()