Home | History | Annotate | Download | only in browser

Lines Matching defs:child

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