Home | History | Annotate | Download | only in utils

Lines Matching refs:currentView

54         View currentView = view;
56 while (currentView != null) {
57 if (currentView != view) {
59 position[0] -= currentView.getScrollX();
60 position[1] -= currentView.getScrollY();
64 position[0] > currentView.getWidth() || position[1] > currentView.getHeight()) {
68 if (!currentView.getMatrix().isIdentity()) {
69 currentView.getMatrix().mapPoints(position);
72 position[0] += currentView.getLeft();
73 position[1] += currentView.getTop();
75 final ViewParent parent = currentView.getParent();
77 currentView = (View) parent;
80 currentView = null;