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

/frameworks/base/core/java/com/android/internal/widget/
H A DLinearSmoothScroller.java70 * {@code SNAP_TO_ANY} is the same as using {@code SNAP_TO_START}</p>
76 public static final int SNAP_TO_ANY = 0; field in class:LinearSmoothScroller
200 * @return SNAP_TO_START, SNAP_TO_END or SNAP_TO_ANY; depending on the current target vector
203 * @see #SNAP_TO_ANY
206 return mTargetVector == null || mTargetVector.x == 0 ? SNAP_TO_ANY :
214 * @return SNAP_TO_START, SNAP_TO_END or SNAP_TO_ANY; depending on the current target vector
217 * @see #SNAP_TO_ANY
220 return mTargetVector == null || mTargetVector.y == 0 ? SNAP_TO_ANY :
273 case SNAP_TO_ANY:
297 * {@link #SNAP_TO_ANY}
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DLinearSmoothScroller.java70 * {@code SNAP_TO_ANY} is the same as using {@code SNAP_TO_START}</p>
76 public static final int SNAP_TO_ANY = 0; field in class:LinearSmoothScroller
200 * @return SNAP_TO_START, SNAP_TO_END or SNAP_TO_ANY; depending on the current target vector
203 * @see #SNAP_TO_ANY
206 return mTargetVector == null || mTargetVector.x == 0 ? SNAP_TO_ANY :
214 * @return SNAP_TO_START, SNAP_TO_END or SNAP_TO_ANY; depending on the current target vector
217 * @see #SNAP_TO_ANY
220 return mTargetVector == null || mTargetVector.y == 0 ? SNAP_TO_ANY :
273 case SNAP_TO_ANY:
297 * {@link #SNAP_TO_ANY}
[all...]

Completed in 132 milliseconds