HomeSort by relevance Sort by last modified time
    Searched defs:mTargetVector (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/java/com/android/internal/widget/
LinearSmoothScroller.java 87 protected PointF mTargetVector;
131 if (DEBUG && mTargetVector != null
132 && ((mTargetVector.x * dx < 0 || mTargetVector.y * dy < 0))) {
151 mTargetVector = null;
206 return mTargetVector == null || mTargetVector.x == 0 ? SNAP_TO_ANY :
207 mTargetVector.x > 0 ? SNAP_TO_END : SNAP_TO_START;
220 return mTargetVector == null || mTargetVector.y == 0 ? SNAP_TO_ANY
    [all...]
  /frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
LinearSmoothScroller.java 85 protected PointF mTargetVector;
132 if (DEBUG && mTargetVector != null
133 && ((mTargetVector.x * dx < 0 || mTargetVector.y * dy < 0))) {
152 mTargetVector = null;
207 return mTargetVector == null || mTargetVector.x == 0 ? SNAP_TO_ANY :
208 mTargetVector.x > 0 ? SNAP_TO_END : SNAP_TO_START;
221 return mTargetVector == null || mTargetVector.y == 0 ? SNAP_TO_ANY
    [all...]

Completed in 52 milliseconds