Searched refs:SNAP_TO_ANY (Results 1 - 1 of 1) sorted by relevance

/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DLinearSmoothScroller.java65 * {@code SNAP_TO_ANY} is the same as using {@code SNAP_TO_START}</p>
71 public static final int SNAP_TO_ANY = 0; field in class:LinearSmoothScroller
194 * @return SNAP_TO_START, SNAP_TO_END or SNAP_TO_ANY; depending on the current target vector
197 * @see #SNAP_TO_ANY
200 return mTargetVector == null || mTargetVector.x == 0 ? SNAP_TO_ANY :
208 * @return SNAP_TO_START, SNAP_TO_END or SNAP_TO_ANY; depending on the current target vector
211 * @see #SNAP_TO_ANY
214 return mTargetVector == null || mTargetVector.y == 0 ? SNAP_TO_ANY :
270 case SNAP_TO_ANY:

Completed in 525 milliseconds